1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

fixed opencv_java build

This commit is contained in:
Vadim Pisarevsky
2014-10-16 22:52:04 +04:00
parent fa76c634ec
commit 9c9ecc22e2
4 changed files with 46 additions and 53 deletions
+1 -1
View File
@@ -673,7 +673,7 @@ static int preprocessMSER_8uC3( MSCRNode* node,
int Ne,
int edgeBlurSize )
{
int srccpt = src.step-src.cols*3;
int srccpt = (int)(src.step-src.cols*3);
const uchar* srcptr = src.ptr();
const uchar* lastptr = srcptr+3;
double* dxptr = dx.ptr<double>();
@@ -75,9 +75,6 @@ protected:
}
vector<KeyPoint> keypoints;
vector<vector<Point> > msers;
CvMat src = image;
detector->detect(image, keypoints);
if(keypoints.empty())