Extracting Sensor Position / Pose
Posted: Wed May 10, 2023 3:49 pm
Hello,
for a plugin i'm trying to figure out how to extract the sensor position (pose) of lidar point clouds.
Is it correct, that it's a member of Grid struct (ccGLMatrixd sensorPosition)? Doc: https://www.cloudcompare.org/doc/qCC_db ... 39a492038c
For my approach i'm thinking about iterating through the selected entities (point clouds in this case):
Does anyone have an idea how to get to the sensor position of the point clouds in the container?
Thank you!
for a plugin i'm trying to figure out how to extract the sensor position (pose) of lidar point clouds.
Is it correct, that it's a member of Grid struct (ccGLMatrixd sensorPosition)? Doc: https://www.cloudcompare.org/doc/qCC_db ... 39a492038c
For my approach i'm thinking about iterating through the selected entities (point clouds in this case):
Code: Select all
ccHObject::Container selPw = appInterface->getSelectedEntities(); //create an instance of selected point clouds
for (int i = 0; i < selPw.size(); i++)
{
}
Thank you!