Search found 186 matches

by WargodHernandez
Fri Jan 07, 2022 2:37 pm
Forum: Questions
Topic: Use of Spherical Targets with Best fit tool for fine registration
Replies: 1
Views: 1683

Re: Use of Spherical Targets with Best fit tool for fine registration

You do not need full sphere’s, in fact when scanning from a single PoV there is almost never more than half a sphere captured from most scanners. In the past I have used best alignment across multiple spheres from different sensors and positions with typically <40% of each sphere visible from any on...
by WargodHernandez
Fri Sep 10, 2021 1:07 pm
Forum: Questions
Topic: Sphere Drawing Precision
Replies: 6
Views: 2552

Re: Sphere Drawing Precision

Just checking, are you using the distance to primitive function? That won't have any "ripple" because it is calculated on the sphere definition rather than the drawing detail level like the distance to mesh function.
by WargodHernandez
Fri Jul 23, 2021 11:26 pm
Forum: Questions
Topic: How to extract cloud points perimeter?
Replies: 17
Views: 13043

Re: How to extract cloud points perimeter?

You would want to do it when both the cloud and the polyline vertices are flat with z=0.
So immediately after creating the contour polylines that's when you should copy the z coordinate SF from the original cloud
by WargodHernandez
Fri Jul 23, 2021 9:50 pm
Forum: Questions
Topic: How to extract cloud points perimeter?
Replies: 17
Views: 13043

Re: How to extract cloud points perimeter?

Capture1.JPG
Capture1.JPG (216.96 KiB) Viewed 4896 times
Capture4.JPG
Capture4.JPG (127.38 KiB) Viewed 4896 times
Capture3.JPG
Capture3.JPG (140.34 KiB) Viewed 4896 times
Capture2.JPG
Capture2.JPG (139.13 KiB) Viewed 4896 times
Capture6A.JPG
Capture6A.JPG (207.23 KiB) Viewed 4896 times
Capture5.JPG
Capture5.JPG (142.28 KiB) Viewed 4896 times
Capture7.JPG
Capture7.JPG (205.48 KiB) Viewed 4896 times
Capture6B.JPG
Capture6B.JPG (175.79 KiB) Viewed 4896 times
by WargodHernandez
Fri Jul 23, 2021 4:26 pm
Forum: Questions
Topic: How to extract cloud points perimeter?
Replies: 17
Views: 13043

Re: How to extract cloud points perimeter?

This may be worth adding as a standard option to contour extraction maybe "3d contour" or "in place envelope"... not sure on the name, but I can see the use of this.
by WargodHernandez
Fri Jul 23, 2021 4:21 pm
Forum: Questions
Topic: How to extract cloud points perimeter?
Replies: 17
Views: 13043

Re: How to extract cloud points perimeter?

I had good success following what I told you, zeroing out the Z value getting the contours then restoring the Z values. only extra step I didn't mention was to interpolate the original clouds SF values to the vertices of the extracted contours and restore the Z SF to the vertices as well to get the ...
by WargodHernandez
Thu Jul 22, 2021 8:42 pm
Forum: Questions
Topic: How to extract cloud points perimeter?
Replies: 17
Views: 13043

Re: How to extract cloud points perimeter?

you could extract z coord to a scalar field for storage, then set all Z values to 0, then extract envelope, then measure distance to primitive, then restore the Z coord from the scalar saved earlier
by WargodHernandez
Thu Jul 22, 2021 8:02 pm
Forum: Questions
Topic: How to extract cloud points perimeter?
Replies: 17
Views: 13043

Re: How to extract cloud points perimeter?

Also if you want the points near the envelope, you can use the Cloud to Primitive distance tool to evaluate each point to the polyline that represents the envelope
extactenvelopeDistance.JPG
extactenvelopeDistance.JPG (46.36 KiB) Viewed 8036 times
You can then filter the cloud based on that distance.
by WargodHernandez
Thu Jul 22, 2021 7:57 pm
Forum: Questions
Topic: How to extract cloud points perimeter?
Replies: 17
Views: 13043

Re: How to extract cloud points perimeter?

It should not matter if they are not on the same Z level, I think the confusion is terminology, in the cross section tool under extract contours, the thing you are asking for is called "Extract envelope" rather than extract contours.
extractEnvelope.JPG
extractEnvelope.JPG (92.59 KiB) Viewed 8037 times
by WargodHernandez
Thu Jul 22, 2021 7:32 pm
Forum: Questions
Topic: ccPointCloud addPoint
Replies: 7
Views: 3508

Re: ccPointCloud addPoint

These micro optimizations are very challenging, when trying to spread the load to multiple threads you could easily make the process slower due to the task scheduler overhead in comparison to just single threaded performance. The performance likely changes with the amount of points your trying to ad...