Rectangle Detection
- Library/opencv
- 2012. 11. 21.
Rectangle Detection
현재 OpenCV 2.4.3 버전
기존의 Detection 방법 Reference
http://dasl.mem.drexel.edu/~noahKuntz/openCVTut7.html
http://opencv-users.1802565.n2.nabble.com/findContours-in-OpenCV-2-0-beta-td3740052.html
Mat 를 이용하는 방법
그리고 Mat 기본 사용 문법
#include#include #include using namespace cv; int main() { Mat sudoku = imread("sudoku.jpg",0); namedWindow("Lines", CV_WINDOW_AUTOSIZE); imshow("Lines", sudoku); }
'Library > opencv' 카테고리의 다른 글
using openCV2.4.3 for Detect Rectangle (0) | 2012.11.23 |
---|---|
groupRectangles (0) | 2012.11.23 |
IplImage or CvMat to Mat (0) | 2012.11.21 |
opencv2.4.3 for android (win,mac, ubuntu) (0) | 2012.11.20 |
opencv Mat 를 이용한 데이터 저장 (FileStorage) 사용. (2) | 2012.10.21 |