일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Binary
- Barcode
- wpf
- Contour
- inheritance
- flutter
- java
- length
- Pointer
- Read
- stream
- file access
- Encapusulation
- sensor
- Android
- aduino
- compare
- public
- UNO
- SERIAL
- atmega328
- parameter
- APP
- Unity
- Overloading
- digitalRead
- Class
- preprocessing
- memory
- mfc
Archives
- Today
- Total
폴크(FOLC)
머신 비전 알고리즘 - OpenCV - 이미지처리10 본문
728x90
반응형
# 디지털 이미지 처리
# 이미지의 상태 정보에서 특별한 영역의 정보를 근사화 한다.
> 추출된 정보를 근사화한다.
# 이미지 처리 - OpenCV 4.5.3 으로 테스트
# 이미지의 상태 정보에서 특별한 영역을 추출
> srcImage : 입력, dst_approxCurve : 결과
# cv::approxPolyDP
> double thresh = 128.0, max_val = 255.0;
> int type = cv::THRESH_BINARY;
> cv::threshold(srcImage, dstImage, thresh, max_val, type);
> cv::Mat hierarchy;
> int mode = cv::RETR_CCOMP, method = cv::CHAIN_APPROX_NONE;
> cv::Point offset = cv::Point();
> vector<vector<cv::Point> > contours;
> cv::findContours(dstImage, contours, hierarchy, mode, method, offset);
> cv::Mat dst_approxCurve;
> double epsilon = 0.001, bool closed = false;
> cv::approxPolyDP(hierarchy, dst_approxCurve, epsilon, closed);
728x90
반응형
사업자 정보 표시
사업자 등록번호 : -- | TEL : --
'머신 비전 > 머신 비전 알고리즘 테크닉 CPP' 카테고리의 다른 글
머신 비전 알고리즘 - OpenCV - 이미지처리12 (0) | 2021.07.27 |
---|---|
머신 비전 알고리즘 - OpenCV - 이미지처리11 (0) | 2021.07.27 |
머신 비전 알고리즘 - OpenCV - 이미지처리9 (0) | 2021.07.25 |
머신 비전 알고리즘 - OpenCV - 이미지처리8 (0) | 2021.07.25 |
머신 비전 알고리즘 - OpenCV - 이미지처리7 (0) | 2021.07.25 |