!fixedSize() error
Hi all,
What does this error mean ? The code I am working with is multi threaded with thousands of lines with multiple files. I have no idea how to debug a multithreaded openmp code
OpenCV Error: Assertion failed (!fixedSize() || ((Mat*)obj)->size.operator()() = = Size(_cols, _rows)) in cv::_OutputArray::create, file C:\builds\master_PackSla ve-win64-vc12-shared\opencv\modules\core\src\matrix.cpp, line 2171
EDIT:
How do I find the exact line that crashed the code ? The line that stops the code from continuing ? I have an error vector subscript out of range but I am not sure which part of the code I should start looking at
some code tried to change the size of an 'fixed size' Mat, like Matx33d or Vec4f.
try to debug it, let it crash, walk up the call-stack, until you see something familiar. look out for resize(), reshape(), push_back(), anything that messes with the shape/size.