Search found 186 matches
- Fri Jan 07, 2022 2:37 pm
- Forum: Questions
- Topic: Use of Spherical Targets with Best fit tool for fine registration
- Replies: 1
- Views: 3769
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...
- Fri Sep 10, 2021 1:07 pm
- Forum: Questions
- Topic: Sphere Drawing Precision
- Replies: 6
- Views: 6213
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.
- Fri Jul 23, 2021 11:26 pm
- Forum: Questions
- Topic: How to extract cloud points perimeter?
- Replies: 17
- Views: 25667
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
So immediately after creating the contour polylines that's when you should copy the z coordinate SF from the original cloud
- Fri Jul 23, 2021 9:50 pm
- Forum: Questions
- Topic: How to extract cloud points perimeter?
- Replies: 17
- Views: 25667
- Fri Jul 23, 2021 4:26 pm
- Forum: Questions
- Topic: How to extract cloud points perimeter?
- Replies: 17
- Views: 25667
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.
- Fri Jul 23, 2021 4:21 pm
- Forum: Questions
- Topic: How to extract cloud points perimeter?
- Replies: 17
- Views: 25667
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 ...
- Thu Jul 22, 2021 8:42 pm
- Forum: Questions
- Topic: How to extract cloud points perimeter?
- Replies: 17
- Views: 25667
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
- Thu Jul 22, 2021 8:02 pm
- Forum: Questions
- Topic: How to extract cloud points perimeter?
- Replies: 17
- Views: 25667
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
You can then filter the cloud based on that distance.
You can then filter the cloud based on that distance.
- Thu Jul 22, 2021 7:57 pm
- Forum: Questions
- Topic: How to extract cloud points perimeter?
- Replies: 17
- Views: 25667
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.
- Thu Jul 22, 2021 7:32 pm
- Forum: Questions
- Topic: ccPointCloud addPoint
- Replies: 7
- Views: 8515
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...