1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

Java API: corrected names of methods in Utils class; fixed bug in DMatch (thank for Hussein Abdinoor); added new utility method loadResource

This commit is contained in:
Andrey Kamaev
2011-08-09 11:46:27 +00:00
parent 13e392763b
commit d9d74678a9
11 changed files with 125 additions and 76 deletions
@@ -56,7 +56,7 @@ class Sample4View extends SampleViewBase {
Bitmap bmp = Bitmap.createBitmap(getFrameWidth(), getFrameHeight(), Bitmap.Config.ARGB_8888);
if (Utils.MatToBitmap(mRgba, bmp))
if (Utils.matToBitmap(mRgba, bmp))
return bmp;
bmp.recycle();