point_cloud_library / 1.12.1 / classpcl_1_1visualization_1_1_point_picking_event.html /

/brief Class representing 3D point picking events. More...

#include <pcl/visualization/point_picking_event.h>

Public Member Functions

PointPickingEvent (int idx)
PointPickingEvent (int idx, float x, float y, float z)
PointPickingEvent (int idx1, int idx2, float x1, float y1, float z1, float x2, float y2, float z2)
int getPointIndex () const
Obtain the ID of a point that the user just clicked on. More...
void getPoint (float &x, float &y, float &z) const
Obtain the XYZ point coordinates of a point that the user just clicked on. More...
bool getPoints (float &x1, float &y1, float &z1, float &x2, float &y2, float &z2) const
For situations when multiple points are selected in a sequence, return the point coordinates. More...
bool getPointIndices (int &index_1, int &index_2) const
For situations where multiple points are selected in a sequence, return the points indices. More...

Detailed Description

/brief Class representing 3D point picking events.

Definition at line 83 of file point_picking_event.h.

Constructor & Destructor Documentation

PointPickingEvent() [1/3]

pcl::visualization::PointPickingEvent::PointPickingEvent ( int idx )
inline

Definition at line 86 of file point_picking_event.h.

PointPickingEvent() [2/3]

pcl::visualization::PointPickingEvent::PointPickingEvent ( int idx,
float x,
float y,
float z
)
inline

Definition at line 87 of file point_picking_event.h.

PointPickingEvent() [3/3]

pcl::visualization::PointPickingEvent::PointPickingEvent ( int idx1,
int idx2,
float x1,
float y1,
float z1,
float x2,
float y2,
float z2
)
inline

Definition at line 89 of file point_picking_event.h.

Member Function Documentation

getPoint()

void pcl::visualization::PointPickingEvent::getPoint ( float & x,
float & y,
float & z
) const
inline

Obtain the XYZ point coordinates of a point that the user just clicked on.

Parameters
[out] x the x coordinate of the point that got selected by the user
[out] y the y coordinate of the point that got selected by the user
[out] z the z coordinate of the point that got selected by the user

Definition at line 112 of file point_picking_event.h.

getPointIndex()

int pcl::visualization::PointPickingEvent::getPointIndex ( ) const
inline

Obtain the ID of a point that the user just clicked on.

Warning
If the cloud contains NaNs the index returned by this function will not correspond to the original indices. To get the correct index either sanitize the input cloud to remove NaNs or use the PointPickingEvent::getPoint function to get the x,y,z of the picked point and then search the original cloud for the correct index. An example of how to do this can be found in the pp_callback function in visualization/tools/pcd_viewer.cpp

Definition at line 101 of file point_picking_event.h.

getPointIndices()

bool pcl::visualization::PointPickingEvent::getPointIndices ( int & index_1,
int & index_2
) const
inline

For situations where multiple points are selected in a sequence, return the points indices.

Parameters
[out] index_1 index of the first point selected by user
[out] index_2 index of the second point selected by user
Returns
true, if two points are available and have been clicked by the user, false otherwise
Warning
If the cloud contains NaNs the index returned by this function will not correspond to the original indices. To get the correct index either sanitize the input cloud to remove NaNs or use the PointPickingEvent::getPoint function to get the x,y,z of the picked point and then search the original cloud for the correct index. An example of how to do this can be found in the pp_callback function in visualization/tools/pcd_viewer.cpp

Definition at line 147 of file point_picking_event.h.

getPoints()

bool pcl::visualization::PointPickingEvent::getPoints ( float & x1,
float & y1,
float & z1,
float & x2,
float & y2,
float & z2
) const
inline

For situations when multiple points are selected in a sequence, return the point coordinates.

Parameters
[out] x1 the x coordinate of the first point that got selected by the user
[out] y1 the y coordinate of the first point that got selected by the user
[out] z1 the z coordinate of the first point that got selected by the user
[out] x2 the x coordinate of the second point that got selected by the user
[out] y2 the y coordinate of the second point that got selected by the user
[out] z2 the z coordinate of the second point that got selected by the user
Returns
true, if two points are available and have been clicked by the user, false otherwise

Definition at line 127 of file point_picking_event.h.


The documentation for this class was generated from the following file:

© 2009–2012, Willow Garage, Inc.
© 2012–, Open Perception, Inc.
Licensed under the BSD License.
https://pointclouds.org/documentation/classpcl_1_1visualization_1_1_point_picking_event.html