Im currently working on Opencv 3.0 C++ in Xcode 7.2. I have and code error written
Variable length array of non-POD element type cv::Mat
The sample code was define as below
Mat symbol[opts.numofblocksX*opts.numofblocksY];
I have change the code to
Mat symbol = symbol[opts.numofblocksX * opts.numofblocksY];
and it show another error
cv::Mat doest not provide a subscript operator
Is there anyone facing the same problem before? what was the solutions I can implement here?
Thanks