You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In calib-stereo.cpp you're using Vec3d to store and then write the contents of vector T. opencv does not store metadata about the type of the container for Vec3d as it does for Mat, so users may get errors on cvRead because opencv won't be able to tell the type of the node. Ideally, you would want to specify Mat as T's type on the reader side just like the other calibration params and rely on simple fs["T"] >> T; working seamlessly on the reader side.
In
calib-stereo.cpp
you're using Vec3d to store and then write the contents of vector T. opencv does not store metadata about the type of the container for Vec3d as it does for Mat, so users may get errors on cvRead because opencv won't be able to tell the type of the node. Ideally, you would want to specify Mat as T's type on the reader side just like the other calibration params and rely on simplefs["T"] >> T;
working seamlessly on the reader side.The text was updated successfully, but these errors were encountered: