필터 지우기
필터 지우기

Finding Connected components to a particular pixel in binary image

조회 수: 2 (최근 30일)
RIshabh Golchha
RIshabh Golchha 2017년 12월 12일
댓글: RIshabh Golchha 2017년 12월 12일
Hi,
I have a binary image with many blobs. I want to know all the connected pixels to a particular pixel whose index I know before hand. How do i do that?

답변 (1개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2017년 12월 12일
편집: KALYAN ACHARJYA 2017년 12월 12일
% Try following
CC=bwconncomp(binary_image); % Default 8 Pixel connected you can change it by
cc=bwconncomp(binary_image,disired_connected_value);
% For detail visit following link
https://in.mathworks.com/help/images/ref/bwconncomp.html
  댓글 수: 1
RIshabh Golchha
RIshabh Golchha 2017년 12월 12일
bwconncomp gives me all the connected components. My problem statement is that I have a particular pixel index. I need all the connected components to that pixel.
If I use bwconncomp I will get all the connected pixels and then I will run a for loop and search the blob which contains my desired pixel. This will be computationally expensive. Is there a better way?

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by