cv::Mat A(181, 181, CV_32FC(28), Scaler(0));
There are 18 rows, 181 cols and 181 dimensions.
An error occurs when reading this after saving it in xml file.
FileStorage fs2("tau.yml", FileStorage::READ); Mat AA; fs2["A"] >> AA; // error occur
I think 181, 181, and 28 do not seem to parse.
Can I use the opencv library to solve this?
Or should I write new code to read this?
Thanks for reading.