[OpenCV] 이진화 소스코드
Colored By Color Scripter™1234567891011121314151617#include #include using namespace std;using namespace cv; int main(void){ Mat image = imread("circuit/C.jpg",0);//CV_LOAD_IMAGE_GRAYSCALE=0, CV_LOAD_IMAGE_COLOR=1 if(!image.data) return -1; //Check image Mat binary; threshold(image,binary,100,255,THRESH_OTSU); imshow("binary",binary); waitKey(0); //Wait for keystroke return 0;}