OpenCV 주요 클래스 - 2. Mat 클래스(2)
2. 행렬의 생성과 초기화 // 1. Mat 객체 생성 Mat::Mat(int rows, int cols, int type);// 세로, 가로 순서로 입력 Mat::Mat(Size size, int type);// Size 클래스 내부에 값 지정 시 가로, 세로 순서로 입력 // 2. Mat 객체 생성 - 쓰레기 값 생성 방지 Mat::Mat(int rows, int cols, int type, const Scalar& s); Mat::Mat(Size size, int type, const Scalar& s); type에는 Mat 객체의 타입을 나타내는 매크로 상수를 전달.
2020. 2. 9.