Skip to content

Instantly share code, notes, and snippets.

@wyudong
Last active August 29, 2015 14:05
Show Gist options
  • Save wyudong/4301230750e1bad43e5c to your computer and use it in GitHub Desktop.
Save wyudong/4301230750e1bad43e5c to your computer and use it in GitHub Desktop.
Example of cv::split
// 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