Skip to main content
Question

PointCloudFilter between 2 Values

  • February 22, 2018
  • 4 replies
  • 17 views

Forum|alt.badge.img

I simply want to create a subset of my pointcloud containing points between 2 heights. What syntax enables me to write the expression in one line?

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

4 replies

Forum|alt.badge.img
  • 97 replies
  • February 22, 2018

try PointCloudExpressionEvaluator (something like @Component(z)<100)


Forum|alt.badge.img
  • Author
  • 41 replies
  • February 22, 2018

try PointCloudExpressionEvaluator (something like @Component(z)<100)

It must be between 2 Heights - I have already tried @Component(z)>50 AND @Component(z)<100 but this is ignored.

 

 


nathanatsafe
Safer
Forum|alt.badge.img+9
  • Safer
  • 284 replies
  • February 22, 2018

Hi @robertdbuckley,

Try “&&” instead of AND and use the PointCloudFilter. I think that should do it.

Nathan


Forum|alt.badge.img
  • 97 replies
  • February 22, 2018

this one works