Skip to content

Commit

Permalink
Removed unused mutable scratch buffers (ros-perception#315)
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 and vrabaud committed May 10, 2018
1 parent e61ec04 commit 673ef53
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 673ef53

Please sign in to comment.