최근 포스트

[C++ OpenCV] Mat 클래스(미완성).

간략화한 Mat 클래스 정의 ```c++ class Mat { public: Mat(); Mat(int rows, int cols, int type); Mat(Size size, int type); Mat(int rows, int cols, int ty...

[C++ OpenCV] 기본 자료형 클래스.

Point_클래스 ```c++ template class Point_ { public: Point_(); // 기본 생성자 x=0, y=0 으로 초기화 됩니다. Point_(_Tp _x, _Tp _y); // (_x,_y) 좌표를 인자로 받는 생성자. ...

[C++ OpenCV] OpenCV 주요함수.

imread() Mat imread(const String& filename, int flags = IMREAD_COLOR); filename : 불러올 영상 파일 이름 flags : 영상 파일 불러오기 옵션 플래그. ImreadModes 열거형 상수를 지정합니다...