Last active
August 29, 2015 14:05
-
-
Save wyudong/4301230750e1bad43e5c to your computer and use it in GitHub Desktop.
Example of cv::split
This file contains 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
// Example of cv::split | |
cv::Mat img = cv::imread("C:\\color wheel.jpg"); | |
std::vector<cv::Mat> rgb; | |
cv::split(img, rgb); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment