Skip to content

Commit 54d878d

Browse files
Removed MCC detector from OpenCV Contrib for migration to OpenCV Main (#3899)
* Separated mcc and ccm modules * Removed mcc dependency * Fixed unused variables * Renamed ccm to mcc, and removed mcc * Fixed documentation
1 parent 4942f71 commit 54d878d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+204
-6004
lines changed

modules/mcc/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(the_description "Macbeth Chart Detection")
1+
set(the_description "Color Correction Module")
22
ocv_define_module(mcc
33
opencv_core
44
opencv_imgproc

modules/mcc/include/opencv2/mcc/ccm.hpp renamed to modules/mcc/include/opencv2/ccm.hpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
// Jinheng Zhang <[email protected]>
2626
// Chenqi Shan <[email protected]>
2727

28-
#ifndef __OPENCV_MCC_CCM_HPP__
29-
#define __OPENCV_MCC_CCM_HPP__
28+
#ifndef __OPENCV_CCM_HPP__
29+
#define __OPENCV_CCM_HPP__
3030

3131
#include <opencv2/core.hpp>
3232
#include <opencv2/imgproc.hpp>
@@ -35,7 +35,8 @@ namespace cv
3535
{
3636
namespace ccm
3737
{
38-
/** @addtogroup color_correction
38+
39+
/** @defgroup ccm Color Correction module
3940
@{
4041
4142
Introduction

modules/mcc/include/opencv2/mcc.hpp

-59
This file was deleted.

modules/mcc/include/opencv2/mcc/checker_detector.hpp

-222
This file was deleted.

0 commit comments

Comments
 (0)