How to fill the blob cirlces of an image with a colour?
조회 수: 1 (최근 30일)
이전 댓글 표시
I am using Laplacian blob detector to detect my region of interest of the below image. Im able to plot the blobs on the required regions. But is there anyway to fill the blob circles with a solid colour, so that the region covered by the blob circles seem as if they are continuosly painted on the intended area?
댓글 수: 2
채택된 답변
Image Analyst
2020년 1월 4일
Use scatter() with the 'filled' option.
scatter(x, y,'filled') fills in the circles. Use the 'filled' option with any of the input argument combinations in the previous syntaxes.
댓글 수: 0
추가 답변 (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!