일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- UNO
- SERIAL
- mfc
- Barcode
- APP
- Unity
- Contour
- public
- inheritance
- Android
- java
- Read
- compare
- Pointer
- Class
- flutter
- sensor
- Encapusulation
- aduino
- length
- wpf
- parameter
- stream
- preprocessing
- digitalRead
- Binary
- atmega328
- memory
- Overloading
- file access
- Today
- Total
폴크(FOLC)
머신 비전 알고리즘 - OpenCV - 이미지처리7 본문
# 디지털 이미지 처리
# 이미지의 상태 정보에서 특별한 영역을 추출한다.
> blob 으로 처리
# 이미지 처리 - OpenCV 4.5.3 으로 테스트
# 이미지의 상태 정보에서 특별한 영역을 추출
> srcImage : 입력, dst_label : 결과, stats : 결과 정보, centroids : 중심 위치, connectivity : 검색, ltype : 자료형
# cv::connectedComponentWithStats
> 이미지의 상태 정보를 특별한 형태로 재표현 - 출력 : 32비트 이미지
> double thresh = 128.0, max_val = 255.0;
> int type = cv::THRESH_BINARY;
> cv::threshold(srcImage, dstImage, thresh, max_val, type);
> int connectivity = 8, ltype = CV_32S;
> cv::Mat dst_label, stats, centroids;
> long nCount = cv::connectedComponentsWithStats(srcImage, dst_label, stats, centroids, connectivity, ltype);
if (0 < nCount)
{
for (long i = 0; i < nCount; i++)
{
const long nL = stats.at<int>(i, cv::CC_STAT_LEFT);
const long nT = stats.at<int>(i, cv::CC_STAT_TOP);
const long nW = stats.at<int>(i, cv::CC_STAT_WIDTH);
const long nH = stats.at<int>(i, cv::CC_STAT_HEIGHT);
const long nA = stats.at<int>(i, cv::CC_STAT_AREA);
}
}
'머신 비전 > 머신 비전 알고리즘 테크닉 CPP' 카테고리의 다른 글
머신 비전 알고리즘 - OpenCV - 이미지처리9 (0) | 2021.07.25 |
---|---|
머신 비전 알고리즘 - OpenCV - 이미지처리8 (0) | 2021.07.25 |
머신 비전 알고리즘 - OpenCV - 이미지처리6 (0) | 2021.07.25 |
머신 비전 알고리즘 - OpenCV - 이미지처리5 (0) | 2021.07.24 |
머신 비전 알고리즘 - OpenCV - 이미지처리4 (0) | 2021.07.24 |