검색결과 리스트
글
[OpenCV #3]Threshold
OpenCV/example
2013. 2. 14. 19:09
1.Threshold
2.Project.cpp
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
using namespace cv;
int main()
{
Mat image = imread("sistar.jpg"); //Load image form disk
if(!image.data) return -1; //Check image
//Split the original image into three channels
//channels[0],channels[1],channels[2]
vector<Mat> channels;
split(image, channels);
Mat image2;
threshold(channels[0], image2, 100, 255, CV_THRESH_BINARY);
imshow("Threadholded", image2);
waitKey(0); //Wait for keystroke
return 0;
}
반응형
'OpenCV > example' 카테고리의 다른 글
[OpenCV #5]cv::Mat 클래스,복사,픽셀 접근 (0) | 2013.02.19 |
---|---|
[OpenCV #4]관심 영역 (0) | 2013.02.14 |
[OpenCV #2]이미지에서 RGB 채널 분리 (1) | 2013.02.14 |
[OpenCV #1]이미지 출력 (0) | 2013.02.14 |
[OpenCV]프로젝트 속성시트 가져오기[Tip] (0) | 2013.02.08 |