opencv_contrib icon indicating copy to clipboard operation
opencv_contrib copied to clipboard

Dynamic fusion

Open YJonmo opened this issue 3 years ago • 2 comments

System information (version)
  • OpenCV => :Dynamic fusion:
  • Operating System / Platform => :Dynamic fusion:
  • Compiler => :Dynamic fusion:
Detailed description

running the dynafu_demo does not work with the --depth flag. We have compiled the dynafu_demo.cpp with providing the path directly inside the code:

String a = "/home/jacob/opencv_build/opencv/build/modules/rgbd/CMakeFiles/example_rgbd_dynafu_demo.dir/rgbd_dataset_freiburg1_plant/depth.txt";

//ds = makePtr<DepthSource>(parser.get<String>("depth")); ds = makePtr<DepthSource>(a);

The parser, returns a boolean value.

Regards, Yaqub

YJonmo avatar May 30 '21 23:05 YJonmo

DynamicFusion is being rewritten here; do not expect anything from it until it's done.

savuor avatar May 31 '21 13:05 savuor

That probably because you don't use the parameter properly, you have to use an "=" eg: --depth=/home/me/workspace/dataset/fusion/VolumeDeformData/minion/depth.txt By the way I don't know what their depth.txt file contains exactly; I also had to edit readDepth in io_utils.hpp to v.push_back(dir + '/' + ss.str()); to be compatible with mine ls -A1 *.depth.png > depth.txt

remmel avatar Jan 26 '24 16:01 remmel