Created
December 21, 2018 00:28
-
-
Save SubhiH/fb2cd5dc0d61a5458af6035def486be8 to your computer and use it in GitHub Desktop.
ImageOperator class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ImageOperator{ | |
public: | |
ImageOperator() = default; | |
~ImageOperator() = default; | |
static void to_gray_m1(const cv::Mat& input, cv::Mat& output); | |
static void to_gray_m2(const cv::Mat& input, cv::Mat& output); | |
static void to_gray_m3(const cv::Mat& input, cv::Mat& output); | |
static void to_gray(const unsigned char* input, | |
const int width, | |
const int height, | |
const int channel, | |
unsigned char* output); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment