Question

PointCloudFilter between 2 Values

  • 22 February 2018
  • 4 replies
  • 4 views

Badge

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?


4 replies

Badge

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

Badge

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.

 

 

Badge +7

Hi @robertdbuckley,

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

Nathan

Badge

this one works

Reply