Indeed, this is clearly not supported by the command line mode. You would need to be able to expand the list of filenames as a string first and then insert it in the command line (I just don't know if it's possible ;).
You need something that generates the command like this:
CloudCompare -o file1 -o file2 -o file3 -merge_clouds
daniel wrote:You need something that generates the command like this:
CloudCompare -o file1 -o file2 -o file3 -merge_clouds
You're right. I finally found with something like that. I set the -o file1 -o file2 -o file3 in a variable and i call him into the command. It work fine and it avoid me to overload my memory
for /f "delims=" %%i in (%fdir%\Files_list.txt) do call :concat %%i
cloudcompare.exe %file_list% -merge_clouds -SS spatial 0.005
del %fdir%\Files_list.txt
goto :eof
:concat
set file_list=%file_list% -o %1
rem echo %file_list%