Please tell me how to convert image开发者_Go百科 into matrix of pixels and vice versa...using opencv??
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
.
精彩评论