Skip to content

Commit

Permalink
Removed unused mutable scratch buffers
Browse files Browse the repository at this point in the history
The uint32_t buffers conflicted with newer release of OpenCV3, as explained here ros-perception#310
  • Loading branch information
miquelmassot authored Dec 14, 2017
1 parent 2c8a054 commit 9b91b07
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions stereo_image_proc/include/stereo_image_proc/processor.h
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,6 @@ class StereoProcessor
mutable cv::StereoSGBM sg_block_matcher_;
#endif
StereoType current_stereo_algorithm_;
// scratch buffers for speckle filtering
mutable cv::Mat_<uint32_t> labels_;
mutable cv::Mat_<uint32_t> wavefront_;
mutable cv::Mat_<uint8_t> region_types_;
// scratch buffer for dense point cloud
mutable cv::Mat_<cv::Vec3f> dense_points_;
};
Expand Down

0 comments on commit 9b91b07

Please sign in to comment.