i have passed a lot of time searching on how to convert from cv::Mat or CvMat to CvArr but with no gain ,please help me in that,thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
If I recall correctly, CvMat IS a CvArr so you can just cast it into a CvArr, and the first bytes of the now CvArr tell the function that it is actually a CvMat: http://opencv.willowgarage.com/documentation/basic_structures.html#cvarr |
|||
|
|
|
Are you sure you want to convert it? sometimes there is equivalent function that use what you have. For example |
|||
|
|
|
convert first the image using the following:
I don t remember if it only create the header for the image or it makes a copy |
|||
|
|
|
When I need to do that I just use :
With image a Mat variable. |
|||
|
|
