Search found 2 matches

by djdan7
Tue Nov 14, 2023 1:06 pm
Forum: Questions
Topic: Automatically open clouds generated in Python
Replies: 3
Views: 8750

Re: Automatically open clouds generated in Python

EDIT:
Ok, I got it. This code opens the program with given 2 point clouds
path = '"c:/Program Files/CloudCompare/CloudCompare.exe" "c:/DATA/LA010001nn_n_2000.pts" "c:/DATA/LA010002nn_n_2000.pts"'
print('opening CC')
os.system('"%s"' % path)


The problem is that with this approach I cannot use ...
by djdan7
Mon Nov 13, 2023 10:40 am
Forum: Questions
Topic: Automatically open clouds generated in Python
Replies: 3
Views: 8750

Automatically open clouds generated in Python

This is my first post, so hello everyone! :D

I generate point clouds in Python. I can save them in different formats, but generally they are a numpy matrices [x,y,z,r,g,b,intensity]. Then I would like to open them automatically in the CloudCompare window, without manually clicking open -> point to ...