Search found 28 matches

by Jälv
Fri Dec 07, 2018 11:40 am
Forum: CloudCompare
Topic: Polyline 2D display problem
Replies: 3
Views: 14408

Re: Polyline 2D display problem

Okay, I didn't know that, Thanks for the quick response
by Jälv
Fri Dec 07, 2018 11:28 am
Forum: CloudCompare
Topic: Polyline 2D display problem
Replies: 3
Views: 14408

Polyline 2D display problem

Hello, When I load a Shape file that contains 2D polylines and that I set the 2DMode to true, CloudCompare cannot zoom to the loaded polylines. Here what is looks like. https://i.ibb.co/KywMs8b/polyproblem.png On the left I set the 2DMode to false (loading the 2D polyline as 3D) and it shows properl...
by Jälv
Mon May 21, 2018 1:05 pm
Forum: Plugins
Topic: Greyhound plugin
Replies: 6
Views: 14942

Re: Greyhound plugin

I'd rather try to do the real solution, and I'd be happy to join cc's slack
by Jälv
Fri May 18, 2018 4:42 pm
Forum: Plugins
Topic: Greyhound plugin
Replies: 6
Views: 14942

Re: Greyhound plugin

Yes by using a QEventLoop the UI is responsive, the download is happening in another thread the code looks like this. QFutureWatcher<ccPointCloud*> downloader; QEventLoop loop; downloader.setFuture(QtConcurrent::run([&]()-> ccPointCloud* {return greyhound_reader.download(b, depth); })); QObject:...
by Jälv
Thu May 17, 2018 2:22 pm
Forum: Plugins
Topic: Greyhound plugin
Replies: 6
Views: 14942

Re: Greyhound plugin

Regarding the ability to let the user move the camera while more points are being downloaded, I found how to do it, I just had to replace
my ccProgressDialog with a QEventLoop :D
by Jälv
Thu May 17, 2018 8:07 am
Forum: Plugins
Topic: Greyhound plugin
Replies: 6
Views: 14942

Greyhound plugin

Hello, I started to develop a plugin to allow CloudCompare to connect to a Greyhound server and there are a few things that I would like to do but I don't know if it is possible / how to do them. For now my plugin is able to download a point cloud from a Greyhound server by providing the bounding bo...
by Jälv
Mon Jan 08, 2018 9:17 am
Forum: Other libraries
Topic: libLAS/PDAL
Replies: 30
Views: 83532

Re: libLAS/PDAL

I must admit i'm having a hard time understanding how entwine and greyhound could be integrated in CloudCompare (code wise).
Also, this would add a lot of dependencies to CloudCompare right ?
by Jälv
Thu Jan 04, 2018 7:33 pm
Forum: Other libraries
Topic: libLAS/PDAL
Replies: 30
Views: 83532

Re: libLAS/PDAL

I'm bumping the thread to know if the idea above could be interresting
by Jälv
Sat Dec 23, 2017 2:40 pm
Forum: Other libraries
Topic: libLAS/PDAL
Replies: 30
Views: 83532

Re: libLAS/PDAL

For the tiling , I can think of one solution / ugly workaround. The workaround inlvolves reading the input file as many times as there are output tiles (which is the ugly part). Each time we read the input file we filter points depending on if they belong to the current tile we are writing, We could...
by Jälv
Fri Dec 22, 2017 2:31 pm
Forum: Other libraries
Topic: libLAS/PDAL
Replies: 30
Views: 83532

Re: libLAS/PDAL

Hey, I saw that you merged my branch, Now that this is done I would like to do/add few things: - Try to fix any bug that might popup - Update the Build.md with instructions to compile with PDAL - Add the ability to save non-standard Las dimensions as extra dimensions, I think PDAL makes it rather ea...