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
When I use 1280*720 resolution pitctures to run the OpenDTAM. It give me the following error:
../rgbd-frames/frame-000199.color.png
terminate called after throwing an instance of 'cv::Exception'
what(): OpenCV(3.4.6) /home/manifold/OpenDTAM3/Cpp/CostVolume/CostVolume.cpp:63: error: (-215:Assertion failed) image.rows % 32 == 0 && image.cols % 32 == 0 && image.cols >= 64 in function 'CostVolume'
Aborted (core dumped)
My picture is 1280*720 resolution, So how to change the codes to run?
Thank you very much
The text was updated successfully, but these errors were encountered:
That's odd. Those numbers obviously are multiples of 32. Maybe see what size the image was right before reaching that line?
The requirements for multiple of 32 were a shortsighted optimization on my part, that I'm now unable to back out :-(
When I use 1280*720 resolution pitctures to run the OpenDTAM. It give me the following error:
../rgbd-frames/frame-000199.color.png
terminate called after throwing an instance of 'cv::Exception'
what(): OpenCV(3.4.6) /home/manifold/OpenDTAM3/Cpp/CostVolume/CostVolume.cpp:63: error: (-215:Assertion failed) image.rows % 32 == 0 && image.cols % 32 == 0 && image.cols >= 64 in function 'CostVolume'
Aborted (core dumped)
My picture is 1280*720 resolution, So how to change the codes to run?
Thank you very much
The text was updated successfully, but these errors were encountered: