Skip to main content

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?

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


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.

 

 


Hi @robertdbuckley,

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

Nathan


this one works


Reply