How to crop only a region that is surrounded by a boundary
조회 수: 3 (최근 30일)
이전 댓글 표시
I am working on sign boards detection.Want to crop region surrounded by red circle boundary so i can compare with standard imag.Can anybody help me with the steps or code for it
답변 (2개)
Walter Roberson
2017년 2월 3일
First you need to detect the red pixels to create a binary image whose pixels are set at the red. Next imfill() to fill the holes. Now zero the locations where the boundary was, to remove the place the red pixels themselves were. What remains is a mask of the locations inside the circle.
You can then use regionprops to find the bounding box, and then you can use that bounding box to crop using the imcrop that KSSV recommends.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!