tags:

views:

497

answers:

1

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