Search found 9 matches

by rthurau
Fri Mar 27, 2015 2:49 pm
Forum: Questions
Topic: Difference in export cloud density: GUI vs. Command Line
Replies: 6
Views: 4296

Re: Difference in export cloud density: GUI vs. Command Line

Awesome, success!

Thanks Daniel

Rich
by rthurau
Thu Mar 26, 2015 10:05 pm
Forum: Questions
Topic: Difference in export cloud density: GUI vs. Command Line
Replies: 6
Views: 4296

Re: Difference in export cloud density: GUI vs. Command Line

First off, sorry for the long delays between posts, been traveling a lot. Finally back to work. So, I have a resolution and question about the version question. Turns out I downloaded the "Archive Zip" version of CloudCompare (I have to point to the .exe and can't use the installer because...
by rthurau
Mon Mar 16, 2015 8:51 pm
Forum: Questions
Topic: Difference in export cloud density: GUI vs. Command Line
Replies: 6
Views: 4296

Re: Difference in export cloud density: GUI vs. Command Line

Thanks Daniel, Spent a couple weeks in the field, just getting back to this. I'm glad there is a solution; however, it appears this elucidates a new issue in 2.6.1. It looks like -O (Open) does not run, so nothing else does of course. Running the code below: 2.6.1 beta works fine but doesn't know &q...
by rthurau
Fri Feb 27, 2015 11:16 pm
Forum: Questions
Topic: Difference in export cloud density: GUI vs. Command Line
Replies: 6
Views: 4296

Difference in export cloud density: GUI vs. Command Line

I've been having some fun with command line for processing some .ply files. The first command for which I'm using CloudCompare is to export some .ply files to las. I have some very big differences between the las file that results from saving the .ply as a las file resulting from command line. Here'...
by rthurau
Fri Feb 20, 2015 8:21 pm
Forum: Questions
Topic: Python Subprocess for Command line batch processing
Replies: 5
Views: 9367

Re: Python Subprocess for Command line batch processing

Very excited to report success using the following code: import os#, subprocess ##################################### CCPath = r"U:\Programs\CloudCompare_v2.6.0_bin_x64" filePath = r"U:\Testing\fwmm5b_v11_sub.ply" os.chdir(CCPath) openFile=os.system("CloudCompare -O " +...
by rthurau
Fri Feb 06, 2015 6:26 pm
Forum: Issues, bugs, etc.
Topic: CommandLine -AUTO_SAVE OFF -SAVE_CLOUDS ALL_AT_ONCE
Replies: 6
Views: 4054

Re: CommandLine -AUTO_SAVE OFF -SAVE_CLOUDS ALL_AT_ONCE

Evers,
Can you possibly take a look at my post and see if you can make some suggestions? I'd be very appreciative:
"Python Subprocess for Command line batch processing"

Thanks for any input you can provide.

Rich
by rthurau
Fri Feb 06, 2015 6:23 pm
Forum: Questions
Topic: Python Subprocess for Command line batch processing
Replies: 5
Views: 9367

Re: Python Subprocess for Command line batch processing

Thanks for the reply. I have two main questions that are a bit lengthy, but if I can work this stuff out this could be a very big tool for us to use in our organization. 1. Requirements for Command Line processing: Pardon my lack of experience with this question please. To run command line directly ...
by rthurau
Fri Feb 06, 2015 5:43 pm
Forum: Requests, new functionalities
Topic: Python API
Replies: 3
Views: 8158

Re: Python API

Hi, I am trying to use CC with some Python, and am no master either so hoping to just gain some understanding from this thread. My understanding is there doesn't need to be a Python API because Python is really good at communicating with other programs. Something I've done before with Saga GIS is us...
by rthurau
Thu Feb 05, 2015 11:26 pm
Forum: Questions
Topic: Python Subprocess for Command line batch processing
Replies: 5
Views: 9367

Python Subprocess for Command line batch processing

I'm trying to use Python to run batch export of .pyl to las. Here is my code: ## import os, subprocess CCPath = r"U:\Programs\CloudCompare_v2.6.0_bin_x64\CloudCompare.exe" filePath = r"U:\Testing\fwmm5b_v11.ply" openFile=subprocess.Popen([CCPath, "CloudCompare", "-...