making CV data type to be int

This commit is contained in:
Andrey Pavlenko
2011-07-22 15:11:35 +00:00
parent 8378ba7554
commit 3d9cb082c9
10 changed files with 163 additions and 192 deletions

View File

@@ -70,13 +70,13 @@ class Sample4View extends SampleViewBase {
synchronized (this) {
// Explicitly deallocate Mats
if (mYuv != null)
mYuv.dispose();
mYuv.release();
if (mRgba != null)
mRgba.dispose();
mRgba.release();
if (mGraySubmat != null)
mGraySubmat.dispose();
mGraySubmat.release();
if (mIntermediateMat != null)
mIntermediateMat.dispose();
mIntermediateMat.release();
mYuv = null;
mRgba = null;