Hey i have tried a lot search in reading xml file with type_id \"opencv-image\", all i am looking here is \"opencv-matrix\" and all help available is useless for me. Please hel
Actually there is some documentation that you could use like: http://docs.opencv.org/modules/core/doc/xml_yaml_persistence.html
In any case the answer to your problem is easy:
FileStorage fs("file.xml", FileStorage::READ);
Mat image;
fs["depthImg190"] >> image;
(...)
fs.release();
It should work!