일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- SERIAL
- Unity
- java
- Android
- stream
- atmega328
- memory
- flutter
- Class
- parameter
- Barcode
- length
- Binary
- wpf
- public
- file access
- Contour
- UNO
- preprocessing
- Read
- sensor
- Encapusulation
- aduino
- APP
- inheritance
- digitalRead
- compare
- Pointer
- mfc
- Overloading
Archives
- Today
- Total
폴크(FOLC)
머신 비전 알고리즘 - OpenCV - 이미지처리16 본문
728x90
반응형
# 디지털 이미지 처리
# 이미지의 상태 정보에서 동일한 특별한 영역를 추출한다.
> 이미지 색상의 정보를 이용해서 동일한 영역 추출
# 이미지 처리 - OpenCV 4.5.3 으로 테스트
# 이미지의 상태 정보에서 동일한 특별한 영역를 추출
> srcImage : 입력, mskImage : 마스크, thresh1 : 경계값, L2gradient : 기울기
# cv::canny
> double thresh1 = 128.0, thresh2 = 228.0;
> int L2gradient = false;
> cv::Canny(srcImage, dstImage, thresh1, thresh2, L2gradient);
# cv::LineSegmentDetector
> cv::Ptr<cv::LineSegmentDetector> det = cv::createLineSegmentDetector();
> det->detect(srcImage, dstImage, cv::noArray(), cv::noArray(), cv::noArray());
728x90
반응형
사업자 정보 표시
사업자 등록번호 : -- | TEL : --
'머신 비전 > 머신 비전 알고리즘 테크닉 CPP' 카테고리의 다른 글
머신 비전 알고리즘 - OpenCV - 이미지처리18 (0) | 2021.07.30 |
---|---|
머신 비전 알고리즘 - OpenCV - 이미지처리17 (0) | 2021.07.30 |
머신 비전 알고리즘 - OpenCV - 이미지처리15 (0) | 2021.07.30 |
머신 비전 알고리즘 - OpenCV - 이미지처리14 (0) | 2021.07.27 |
머신 비전 알고리즘 - OpenCV - 이미지처리13 (0) | 2021.07.27 |