fbergama / wass

WASS (Waves Acquisition Stereo System) is an optimized stereo processing pipeline for sea waves 3D reconstruction.
GNU General Public License v3.0
40 stars 13 forks source link

SAVE_AS_PLY=true not working? #13

Closed caiostringari closed 3 years ago

caiostringari commented 3 years ago

Hi,

I am trying to get the output to be written as a .ply file but the pipeline seems to ignore my request.

I am running with Docker and using the .yml in the README as example. The reconstruction runs fine and I get the .xyzC file but no .ply.

I logged into the container and verified that /DATA_CONF/stereo_config.txt had SAVE_AS_PLY=true.

Alternatively, is there an easy way to read the .xyzC in python?

Cheers,

Caio

fbergama commented 3 years ago

Just to check, did you removed the leading "#" before SAVE_AS_PLY?

caiostringari commented 3 years ago

Yes, I did.

See attached my stereo_config.txt file

Do I need to change anything else?

stereo_config.txt

fbergama commented 3 years ago

You also need to set

"savediskspace":false

in worksession.json, otherwise the ply file is created but then deleted to save space.

caiostringari commented 3 years ago

That did the trick. Thanks!