Please tell me how to convert image into matrix of pixels and vice versa...using opencv??
A:
You can treat a matrix or an image as a matrix(or an image) by calling cvGetMat
(or cvGetImage
).No data will be copied.
If you want to copy the data, use cvCopy
.
OwnWaterloo
2009-12-02 23:03:06