将图像存储在一个数组中

时间:2011-03-24 20:37:35

标签: c++ opencv

我需要存储图像(我在for循环中裁剪它们,在每次裁剪之后,我想存储在一个数组中)到一个图像数组中。我怎么能在OpenCV中做到这一点?

1 个答案:

答案 0 :(得分:2)

std::vector<IplImage*> vec_images;

IplImage* frame = cvQueryFrame(capture); // Acquiring a new image
// Cropping or whatever

vec_images.push_bask(frame);

当您不再需要这些框架时,不要忘记取消分配这些框架:

for (int i = 0; i < vec_images.size(); i++)
  cvReleaseImage(&vec_images[i]);