我需要存储图像(我在for循环中裁剪它们,在每次裁剪之后,我想存储在一个数组中)到一个图像数组中。我怎么能在OpenCV中做到这一点?
答案 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]);