Merge branch 'develop'

This commit is contained in:
2014-04-04 10:29:28 -04:30
3 changed files with 7 additions and 3 deletions

View File

@@ -17,8 +17,8 @@
<!-- android:screenOrientation="portrait" -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ve.ucv.ciens.ccg.nxtar"
android:versionCode="1"
android:versionName="1.0" >
android:versionCode="140404"
android:versionName="14.04.04" >
<uses-sdk android:minSdkVersion="12" android:targetSdkVersion="19" />

4
README.md Normal file
View File

@@ -0,0 +1,4 @@
NxtAR-android
=============
Modulo 2 de mi trabajo especial de grado.

View File

@@ -165,7 +165,7 @@ public class MainActivity extends AndroidApplication implements Toaster, Multica
Mat temp = new Mat();
Imgproc.cvtColor(outImg, temp, Imgproc.COLOR_BGR2RGB);
mFrame = Bitmap.createBitmap(temp.cols(), temp.rows(), Bitmap.Config.RGB_565);
Utils.matToBitmap(temp, mFrame);
mFrame.compress(CompressFormat.JPEG, 100, outputStream);