Search found 45 matches

by Charlesw
Wed Jun 24, 2020 11:59 pm
Forum: Issues, bugs, etc.
Topic: E57 Issues from CC
Replies: 1
Views: 2520

E57 Issues from CC

For years now, we have noticed there is some level irregularity to the E57 files produced by CloudCompare. Until recently, the irregularities were minor and did not affect our usage of the E57 files. We are now getting much heavier into automated processes across different programs and noticed that ...
by Charlesw
Tue May 26, 2020 11:41 pm
Forum: Issues, bugs, etc.
Topic: Bubble-View / 360 Images
Replies: 2
Views: 3973

Bubble-View / 360 Images

Good afternoon, ive spent the better part of three days now looking into how to solve a problem without posting here, but think now it is appropriate to do so. We have noticed that there is an issue with the e57 files produced by CloudCompare. The issue is with the bubble views / structure of the im...
by Charlesw
Thu Jan 23, 2020 9:44 pm
Forum: Other libraries
Topic: Using E57RefImpl library
Replies: 3
Views: 43284

Re: Using E57RefImpl library

Is there a good resource I could use to learn how to use CMAKE, with a focus on using it to link the required libraries for libE57. I did not realize that even though I compiled the .lib file, I would still need to link in all the dependencies from xerces and boost to my custom program to be able to...
by Charlesw
Thu Jan 23, 2020 1:56 am
Forum: Other libraries
Topic: Using E57RefImpl library
Replies: 3
Views: 43284

Using E57RefImpl library

I have the E57RefImpl lib compiled. I am trying to run an experiment on a custom program, linked with CloudCompare. The custom program needs to read the e57 before going to CC. I was hoping one might be able to give some pointers on linking in an external library to a custom visual studio solution/p...
by Charlesw
Wed Dec 11, 2019 11:39 pm
Forum: Questions
Topic: Progress Dialog Placements?
Replies: 1
Views: 1254

Progress Dialog Placements?

Is there a way to control where a progress dialog appears when running a command line instance in silent mode? Are my progress dialog even supposed to be appearing in silent mode? I am using code version 2.9. With a typical plugin, the progress dialog uses its parent for placement. Using the command...
by Charlesw
Mon Oct 21, 2019 11:06 pm
Forum: Plugins
Topic: CLI Help - Adding Child to ccHObject* - CommandLine Visual Studio Debugging
Replies: 11
Views: 23011

Re: CLI Help - Adding Child to ccHObject* - CommandLine Visual Studio Debugging

Thanks again. the issue was that I was looping a QStringList allSelectedFiles but at the end of the loop I was calling: allSelectedFiles.takeAt(i) to get the string being stored for that loop. This was reducing the size of my list as takeAt() physcially removes the element from the list. I have now ...
by Charlesw
Mon Oct 21, 2019 10:21 pm
Forum: Plugins
Topic: CLI Help - Adding Child to ccHObject* - CommandLine Visual Studio Debugging
Replies: 11
Views: 23011

Re: CLI Help - Adding Child to ccHObject* - CommandLine Visual Studio Debugging

Awesome. Thankyou. I'll definitely be using debug mode. Its an issue with a loop somewhere in my code as no matter how many files I process, the first half of them return correctly and the latter half return null. i.e. I processed 6 clouds in a folder. got 3 to return correctly and the last 3 return...
by Charlesw
Mon Oct 21, 2019 7:01 pm
Forum: Plugins
Topic: CLI Help - Adding Child to ccHObject* - CommandLine Visual Studio Debugging
Replies: 11
Views: 23011

Re: CLI Help - Adding Child to ccHObject* - CommandLine Visual Studio Debugging

Thank you! I tested against nullptr to confirm there was a null object. How would one properly return the type of the entities? I see the use of getClassID(), but not sure how to get this Enum in a way that is readable for me or translatable (This is a novice question and I apologize. Not super fami...
by Charlesw
Fri Oct 18, 2019 12:07 am
Forum: Plugins
Topic: CLI Help - Adding Child to ccHObject* - CommandLine Visual Studio Debugging
Replies: 11
Views: 23011

Re: CLI Help - Adding Child to ccHObject* - CommandLine Visual Studio Debugging

Yes, it crashes on the following in the main method: 1. for (int i = 0; i < selectedEntities.size(); ++i) { 2. //convert each item into a cloud and store as a child of "CCHObject* projectGroup" 3. //ccPointCloud* pc = static_cast<ccPointCloud*>(selectedEntities[i]); 4. ccGenericPointCloud*...
by Charlesw
Thu Oct 17, 2019 4:49 pm
Forum: Plugins
Topic: CLI Help - Adding Child to ccHObject* - CommandLine Visual Studio Debugging
Replies: 11
Views: 23011

Re: CLI Help - Adding Child to ccHObject* - CommandLine Visual Studio Debugging

Is there a limitation in the command line where only one cloud can be loaded at a time? If not, I have no idea why I am getting an error. Basically, I can import a single cloud, but any additional clouds give me NULL objects returned. I am using recycled code from a custom plugin for import and savi...