An array of Images
Hi there, I know how to read and process a single image using Mat variables. Recently, I´ve a nightmare about arranging multiple images. For example, suppose I want to read a 5x5 array of RGB images and another 8x8 array of RGB images. Please keep in mind that the number of horizontal and vertical images are not known in advanced and they should be set on the run time. Should I define multiple Mat variables to store 5x5 or 8x8 RGB images? How can I access/modify each image? Thank you for your help.
either you did not read the answer here, or you did not understand it.
I used this page, but it sounds like the dimensions of the array should be known in advanced and it can't be changed on the run time. This error is issued by visual C++: Severity Code Description Project File Line Suppression State Error (active) E0349 no operator "[]" matches these operands ConsoleApplication1
ever hear of
push_back()
?seriously, you have to know your c++ (and how to use dynamic containers), before doing this.
imho, your question is entirely off-topic (it's about c++ in general, not about opencv at all)