반응형
250x250
Notice
Recent Posts
Recent Comments
Link
«   2025/04   »
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
Archives
Today
Total
관리 메뉴

폴크(FOLC)

C# - 머신 비전 알고리즘 - OpenCV - 이미지처리9 본문

머신 비전/머신 비전 알고리즘 테크닉 C#

C# - 머신 비전 알고리즘 - OpenCV - 이미지처리9

folcjin 2021. 10. 18. 14:47
728x90
반응형

# 디지털 이미지 처리
   # 이미지의 상태 정보에서 특별한 영역을 추출한다.
      > 윤곽선을 찾한다.

# 이미지 처리 - OpenCV 4.5.3 으로 테스트
   # 이미지의 상태 정보에서 특별한 영역을 추출
   > srcImage : 입력, contours : 결과, hierarchy : 결과 요소

# Cv2.FindContours
   > double thresh = 128.0, max_val = 255.0;
   > ThresholdTypes type = ThresholdTypes.Binary;
   > Cv2.Threshold(srcImage, dstImage, thresh, max_val, type);
   > RetrievalModes mode = RetrievalModes.CComp;
   > ContourApproximationModes method = ContourApproximationModes.ApproxNone;
   > Point offset = new Point();
   > Point[][] contours;
   > HierarchyIndex[] hierarchy;
   > Cv2.FindContours(dstImage, out contours, out hierarchy, mode, method, offset);

728x90
반응형
사업자 정보 표시
사업자 등록번호 : -- | TEL : --