vote up 0 vote down star

Hello everyone,

i have some problems with OpenCVs cvCanny(...) and the Image datatypes it can handle. Well, maybe you guys know a solution.

I have a 32bit float image and i want to perform cvCanny on it. The problem is cvCanny can only handle "IPL_DEPTH_8S" or U (signed / unsigned short), or at least thats what i suspect. OpenCV manual does not indicate how much it can handle and this line in cv/cvcanny.cpp didn't raise my hopes.

...
if( CV_MAT_TYPE( src->type ) != CV_8UC1 ||
CV_MAT_TYPE( dst->type ) != CV_8UC1 )
CV_ERROR( CV_StsUnsupportedFormat, "" );
...

The images i have are greyscale / single channel float32 bit and the values in the image are between 0.0 and 16.0. Casting my float32 to unsigned short wouldn't help much since the values would loose their precision and i would miss edges with OpenCVs canny.

Do you guys happen to know a solution for my problem? (besides using itk :) )

Best regards,

Zhengtonic

flag

1 Answer

vote up 1 vote down check

Sorry, since cvCanny only supports single-channel 8-bit images, the only thing I can think of is to scale each value in your image by 255/16 into a new image of type CV_8UC1 so that it ranges from 0 - 255 to minimize the precision you've lost.

link|flag
OpenCV prides itself as software that sees ... how much can u see with 8bit depth ... i don't get it. Thanks for the scaling tip. – zhengtonic Oct 21 at 9:56
Well, the Canny edge detector was supposed to be used for grayscale images so 8-bit should be enough. In any case, if you want to request a feature on OpenCV you should go here: sourceforge.net/tracker/… ... – Jacob Oct 21 at 13:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.