Search found 28 matches

by Jälv
Tue Mar 26, 2024 7:20 pm
Forum: Plugins
Topic: New plunging with pycc, cccorelib and CloudCompy
Replies: 4
Views: 122

Re: New plunging with pycc, cccorelib and CloudCompy

I don't think it makes much sense to create a python pluging with CloudComPy + pycc + cccorelib, as CloudComPy has the same functionnalities than pycc+cccorelib: it exposes data structures and functions from the libraries of CloudCompare
by Jälv
Tue Oct 04, 2022 6:35 pm
Forum: Mac OS related topics
Topic: CloudCompare on 10.14
Replies: 6
Views: 17710

Re: CloudCompare on 10.14

So the message says that you have 10.14.6 installed and that the application needs 10.12 ?
that's weird

I'll try to see If I can lower the requirements to macOS 10.14 the next time I produce theapp bundles
by Jälv
Sat Jul 02, 2022 9:55 am
Forum: Questions
Topic: Command Line Mode Using Powershell
Replies: 2
Views: 1125

Re: Command Line Mode Using Powershell

To start a process like that in PowerShell you have to add a `&` at the beginning. &"C:\Program Files\CloudCompare\CloudCompare.exe" -o $path Or you can use Start-Process Start-Process -Wait "C:\Program Files\CloudCompare\CloudCompare.exe" -ArgumentList '-o',$path
by Jälv
Thu Dec 02, 2021 1:45 pm
Forum: Questions
Topic: Global shift list - macOS
Replies: 2
Views: 777

Re: Global shift list - macOS

According to https://github.com/CloudCompare/CloudCo ... 0852e98a55
if you want to use that file it should be next to the CloudCompare.app
by Jälv
Mon Sep 20, 2021 12:28 pm
Forum: Issues, bugs, etc.
Topic: PDAL exception
Replies: 3
Views: 2120

Re: PDAL exception

Your files must likely have a `#number` like `#1` `scan#2.las` in their name, and when saving it PDAL treats
the `#number` part as a placeholder that needs to be replaced.
by Jälv
Wed Dec 09, 2020 4:32 pm
Forum: Questions
Topic: Start CloudCompare in MacOS terminal in command-line mode
Replies: 4
Views: 2262

Re: Start CloudCompare in MacOS terminal in command-line mode

I don't have acces to a mac but i recall that on macOs there is an 'open' command
that can start applications have you tried it ?

like
open -a CloudCompare -SILENT .....
by Jälv
Fri Nov 20, 2020 8:01 pm
Forum: CCLib
Topic: Compiling CCLib using CGAL
Replies: 3
Views: 7311

Re: Compiling CCLib using CGAL

Can you give the version of your OS and the version of Clang and GCC ?
by Jälv
Wed Aug 28, 2019 10:41 am
Forum: Questions
Topic: Open a pre-saved las 1.4
Replies: 4
Views: 4654

Re: Open a pre-saved las 1.4

Hello, To be more specific about what happens, PDAL knows how to read point format 6,7,8 (but not 9,10 with waveforms) it was the point of replacing the old lib that was previously used with PDAL. What happens when you save a file with the LAS 1.3 / 1.4 filter is that it saves a file with point form...
by Jälv
Tue May 14, 2019 4:28 pm
Forum: Windows related topics
Topic: Can not load Las file
Replies: 6
Views: 27168

Re: Can not load Las file

There currently a problem when you compile CloudCompare in debug mode, with PDAL support.
(PDAL throws a 'bad conversion' exception)

Have you tried compiling in Release mode ?
by Jälv
Wed Mar 20, 2019 1:47 pm
Forum: Questions
Topic: Saving file
Replies: 5
Views: 3993

Re: Saving file

This error is happening because the file you openned must be a LAS version 1.0. When a LAS file is openned, CloudCompare remembers the minor_version (here '0') and saves the file with the same minor_version, however pdal does'nt seem to be able to save LAS files with version 1.0. So when saving a LA...