Commit b0186947 authored by Hamdi Sahloul's avatar Hamdi Sahloul

Generate enum bindings automatically

parent 14be1519
......@@ -4,7 +4,4 @@
using cv::xfeatures2d::DAISY;
typedef DAISY::NormalizationType DAISY_NormalizationType;
CV_PY_FROM_ENUM(DAISY::NormalizationType);
CV_PY_TO_ENUM(DAISY::NormalizationType);
#endif
......@@ -61,7 +61,7 @@ namespace ximgproc
//! @addtogroup ximgproc_superpixel
//! @{
enum SLIC { SLIC = 100, SLICO = 101, MSLIC = 102 };
enum SLICType { SLIC = 100, SLICO = 101, MSLIC = 102 };
/** @brief Class implementing the SLIC (Simple Linear Iterative Clustering) superpixels
algorithm described in @cite Achanta2012.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment