Ask Your Question

valazom's profile - activity

2016-11-09 10:53:24 -0600 received badge  Famous Question (source)
2016-04-01 08:16:36 -0600 received badge  Notable Question (source)
2015-12-19 09:16:32 -0600 received badge  Popular Question (source)
2015-05-17 15:55:12 -0600 asked a question ACCESS MASK AMBIGUOUS SYMBOL

I am trying to upgrade my opencv 2.4.11 to opencv 3.0rc1 and i get the following error:

Error   1   error C2872: 'ACCESS_MASK' : ambiguous symbol   C:\Program Files (x86)\Windows Kits\8.1\Include\um\winnt.h  9084

Error 2 error C2872: 'ACCESS_MASK' : ambiguous symbol C:\Program Files (x86)\Windows Kits\8.1\Include\um\winnt.h 9142 Error 3 error C2872: 'ACCESS_MASK' : ambiguous symbol C:\Program Files (x86)\Windows Kits\8.1\Include\um\winnt.h 9143 Error 4 error C2872: 'ACCESS_MASK' : ambiguous symbol C:\Program Files (x86)\Windows Kits\8.1\Include\um\winnt.h 9144

Please can someone help with this.

2015-05-15 07:28:49 -0600 asked a question Iris normalization

Hello everyone,

I am trying to write a code for Iris normalization. but getting errors with cvLogpolar transformation in opencv. please i need your urgently. Below is my function`enter code here:

static Mat getpolar2CartImg(Mat& image, int rad){
Size imagsize = image.size();
IplImage img = image;
IplImage*newimage = &img;
IplImage* dst = cvCreateImage(cvSize(rad * 3, (int)360), 8, 3);
cvLogPolar(newimage, dst, cvPoint2D32f(imagsize.width / 2.0, imagsize.height / 2.0), 60.0,         CV_INTER_LINEAR+CV_WARP_FILL_OUTLIERS);
Mat rt = Mat(dst);
return dst;

}