Search found 186 matches

by WargodHernandez
Mon Jun 28, 2021 9:29 pm
Forum: Questions
Topic: Best Fit Plane Equation
Replies: 8
Views: 3804

Re: Best Fit Plane Equation

I don't think it is displayed anywhere currently... so for now you would need to copy the x,y,z translation from the transformation history and the normal values from the plane properties window planeInfo.JPG and then take those values into an online calculator like www.symbolab.com/solver/vector-do...
by WargodHernandez
Mon Jun 28, 2021 8:35 pm
Forum: Questions
Topic: Best Fit Plane Equation
Replies: 8
Views: 3804

Re: Best Fit Plane Equation

here is the code we use to get the plane equation const PointCoordinateType* ccPlane::getEquation() { CCVector3 N = getNormal(); m_PlaneEquation[0] = N.x; m_PlaneEquation[1] = N.y; m_PlaneEquation[2] = N.z; m_PlaneEquation[3] = getCenter().dot(N); //a point on the plane dot the plane normal return m...
by WargodHernandez
Mon Jun 28, 2021 4:10 pm
Forum: Questions
Topic: Calculating volume loss between new and used 3d scans
Replies: 6
Views: 1596

Re: Calculating volume loss between new and used 3d scans

Well if you know the coordinate system you could export the coordinate to SF
exportCoordToSF.JPG
exportCoordToSF.JPG (71.98 KiB) Viewed 1489 times
and then filter by SF value
FilterBySFVal.JPG
FilterBySFVal.JPG (36.07 KiB) Viewed 1489 times
by WargodHernandez
Thu Jun 24, 2021 6:06 pm
Forum: Questions
Topic: Calculating volume loss between new and used 3d scans
Replies: 6
Views: 1596

Re: Calculating volume loss between new and used 3d scans

So you will want to experiment with the research settings tab for ICP ICPResearch.JPG If you already have the tops near aligned and know what axis they are on you can restrict translation along that axis, like if the circle you want lined up is in the XY plane you could turn of the Z translation. An...
by WargodHernandez
Mon Jun 21, 2021 8:08 pm
Forum: Plugins
Topic: getPickedPoints
Replies: 11
Views: 4300

Re: getPickedPoints

we would need a lot more context to help track down the exception, what your showing has a risk that it would try to use an invalid picking hub since your valid picking hub check doesn't bail out of the function early.

but beyond that, we need information.
by WargodHernandez
Mon Jun 21, 2021 8:03 pm
Forum: Questions
Topic: Question about a result of C2C distance
Replies: 2
Views: 800

Re: Question about a result of C2C distance

This is because C2C will measure to each nearest point pair meaning the two points will both measure against the same 1 point that is near by (as opposed to the one that is 3" away)
by WargodHernandez
Mon Jun 14, 2021 5:24 pm
Forum: Questions
Topic: How to delete any color by color point ?
Replies: 1
Views: 1660

Re: How to delete any color by color point ?

You can use the Colorimetric Segmenter/Filter RGB plugin to do this have the First and second RGB values 250 and 255 respectively and then use the exclude point option.
colorPlugin.JPG
colorPlugin.JPG (66.49 KiB) Viewed 1658 times
colorimetricSegmenter.JPG
colorimetricSegmenter.JPG (80.98 KiB) Viewed 1658 times
by WargodHernandez
Fri Jun 11, 2021 10:34 pm
Forum: Plugins
Topic: E57 plugin not compiling properly
Replies: 5
Views: 12154

Re: E57 plugin not compiling properly

Set the CMAKE variable E57_BUILD_SHARED to false, to use the .Lib instead of .DLL
by WargodHernandez
Wed Jun 09, 2021 8:06 pm
Forum: Questions
Topic: error loading .bin files in MacOS version 2.11.1
Replies: 2
Views: 1239

Re: error loading .bin files in MacOS version 2.11.1

That means the file your trying to load either came from someone who compiled 2.12 on Mac, Windows, Linux, or downloaded the alpha prebuilt binary on windows. depending on how complex the file is you could possibly open the file in 2.12 and then save as another file type to open on the 2.11 Mac. I a...
by WargodHernandez
Wed Jun 09, 2021 7:27 pm
Forum: Plugins
Topic: E57 plugin not compiling properly
Replies: 5
Views: 12154

Re: E57 plugin not compiling properly

Look at the console inside of CloudCompare scroll up to where it loads plugins, if CC says that the plugin does not appear to be a valid plugin, usually that means that you are missing a dependency. Dependencies will go into the C:\myfolderpath\CloudCompare directory rather than the plugins sub folder