@@ -146,7 +146,7 @@ namespace rgbd
146
146
* @param points a rows x cols x 3 matrix of CV_32F/CV64F or a rows x cols x 1 CV_U16S
147
147
* @param normals a rows x cols x 3 matrix
148
148
*/
149
- void
149
+ CV_WRAP_AS (apply) void
150
150
operator ()(InputArray points, OutputArray normals) const ;
151
151
152
152
/* * Initializes some data that is cached for later computation
@@ -253,7 +253,7 @@ namespace rgbd
253
253
* @param points a rows x cols x 3 matrix of CV_32F/CV64F or a rows x cols x 1 CV_U16S
254
254
* @param depth a rows x cols matrix of the cleaned up depth
255
255
*/
256
- void
256
+ CV_WRAP_AS (apply) void
257
257
operator ()(InputArray points, OutputArray depth) const ;
258
258
259
259
/* * Initializes some data that is cached for later computation
@@ -387,7 +387,7 @@ namespace rgbd
387
387
* @param plane_coefficients the coefficients of the corresponding planes (a,b,c,d) such that ax+by+cz+d=0, norm(a,b,c)=1
388
388
* and c < 0 (so that the normal points towards the camera)
389
389
*/
390
- void
390
+ CV_WRAP_AS (apply) void
391
391
operator ()(InputArray points3d, InputArray normals, OutputArray mask,
392
392
OutputArray plane_coefficients);
393
393
@@ -397,7 +397,7 @@ namespace rgbd
397
397
* and 255 if it does not belong to any plane
398
398
* @param plane_coefficients the coefficients of the corresponding planes (a,b,c,d) such that ax+by+cz+d=0
399
399
*/
400
- void
400
+ CV_WRAP_AS (apply) void
401
401
operator ()(InputArray points3d, OutputArray mask, OutputArray plane_coefficients);
402
402
403
403
CV_WRAP int getBlockSize () const
0 commit comments