Skip to content

Commit de185ef

Browse files
committed
refactor(selectivesearch): 更新宏定义
1 parent 70682c1 commit de185ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cplusplus/include/selectivesearch/selectivesearchsegmentation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ namespace segmentation {
7171
/** @brief Based on all images, graph segmentations and stragies, computes all possible rects and return them
7272
@param rects The list of rects. The first ones are more relevents than the lasts ones.
7373
*/
74-
virtual void process(CV_OUT std::vector<cv::Rect> &rects) = 0;
74+
virtual void process(std::vector<cv::Rect> &rects) = 0;
7575
};
7676

7777
/** @brief Create a new SelectiveSearchSegmentation class.

cplusplus/include/selectivesearch/selectivesearchsegmentationimpl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include "region.h"
1010

1111
namespace segmentation {
12-
class SelectiveSearchSegmentationImpl CV_FINAL : public SelectiveSearchSegmentation {
12+
class SelectiveSearchSegmentationImpl final : public SelectiveSearchSegmentation {
1313
public:
1414
SelectiveSearchSegmentationImpl() {
1515
name_ = "SelectiveSearchSegmentation";

0 commit comments

Comments
 (0)