I have a question about how to use xml.
cv::Mat A(181, 181, CV_32FC(28), Scalar(0));
There are 181 rows, 181 cols and 28 channels.
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.
Fixed all typo's first, then wondered if you would be able to add the actual error and the YML file because how else can we help you further...