Bug report:
There is no any constructor and destructor of a plane-finding method named RgbdPlane in rgbd/depth.hpp and its create() function...
I think that the constructor should be similar to codes below:
RgbdNormals(int rows, int cols, int depth, InputArray K, int window_size = 5, int method =
RgbdNormals::RGBD_NORMALS_METHOD_FALS);
~RgbdNormals();
CV_WRAP static Ptr<RgbdNormals> create(int rows, int cols, int depth, InputArray K, int window_size = 5, int method =
RgbdNormals::RGBD_NORMALS_METHOD_FALS);
When I tried using RgbdPlane to find a plane on a depth image(or 3d points), but compiler told me that there was no object of RgbdPlane found.
And I coded like this, but it's not working:
rgbd_plane = cv.rgbd.RgbdPlane_create()
So, does this constructor missing in version 4.1.1?