Struct opencv::rgbd::RgbdPlane [−][src]
pub struct RgbdPlane { /* fields omitted */ }
Expand description
Object that can compute planes in an image
Implementations
C++ default parameters
- method: RgbdPlane::RGBD_PLANE_METHOD_DEFAULT
Constructor
Parameters
- block_size: The size of the blocks to look at for a stable MSE
- min_size: The minimum size of a cluster to be considered a plane
- threshold: The maximum distance of a point from a plane to belong to it (in meters)
- sensor_error_a: coefficient of the sensor error. 0 by default, 0.0075 for a Kinect
- sensor_error_b: coefficient of the sensor error. 0 by default
- sensor_error_c: coefficient of the sensor error. 0 by default
- method: The method to use to compute the planes.
C++ default parameters
- sensor_error_a: 0
- sensor_error_b: 0
- sensor_error_c: 0
Trait Implementations
Stores algorithm parameters in a file storage
simplified API for language bindings Stores algorithm parameters in a file storage Read more
Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read
Saves the algorithm to a file. In order to make this method work, the derived class must implement Algorithm::write(FileStorage& fs). Read more
Returns the algorithm string identifier. This string is used as top level xml/yml node tag when the object is saved to a file or string. Read more