최근 포스트

[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 열거형 상수를 지정합니다...

[C++ OpenCV] OpenCV C++ 기초.

소스코드 ```c++ #include <opencv2/core.hpp> // image 저장 시 사용되는 Mat class를 비롯, OpenCV에서 사용하는 기본적인 자료구조와 함수가 포함되어 있음 #include <opencv2/imgcodecs.hpp> /...

[C++ OpenCV] OpenCV C++ 기본헤더.

#include <opencv2/opencv.hpp> OpenCV에서 지원하는 모든 기능을 포함한다. 단 컴파일이 느려질 수 있어 아래처럼 사용한다.

Git Bash.

git config --global user.name "UserName" git config --global user.email "User@email.com" Path ex) cd C:/Users/yj/Desktop/Practice/flowerroot-github-blog/fl...