Back to Aurora Vision Library website
You are here: Start » Function Reference » Geometry 3D » Geometry 3D Spatial Transforms » TrimPoint3DArray
TrimPoint3DArray
| Header: | AVL.h |
|---|---|
| Namespace: | avl |
| Module: | Vision3DLite |
Removes points not contained in a box in 3D from an array.
Syntax
C++
C#
void avl::TrimPoint3DArray ( const atl::Array<avl::Point3D>& inPoints3D, const avl::Box3D& inBox3D, atl::Array<avl::Point3D>& outPoints3D )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPoints3D | const Array<Point3D>& | ||
![]() |
inBox3D | const Box3D& | ||
![]() |
outPoints3D | Array<Point3D>& |
In-place Processing
This function supports in-place data processing - you can pass the same reference to inPoints3D and outPoints3D
Read more about In-place Computation.


