binary mask for the coordinates using MATLAB

조회 수: 9 (최근 30일)
Neda
Neda 2020년 5월 1일
편집: Ameer Hamza 2020년 5월 1일
I need to create a binary mask. I have some coordinates and I make those coordinates and inside that region equal to 1, and background equal to zero. The image size is 600*800
Here is what I have done, but the problem is ROI located not in the correct position and located on the right bottom of the image. I appreciate if someone could point me to the right direction.
X and Y coordinates are attached here, The first col is X and the second Y. Basically, [X(1) Y(1)] is refereing to the pixels on the image.
Here the left is what snippet did produce and the right image is my expectation
Here is my snippet:
function [X,Y, BW] = Create_mask(X,Y,im)
X = round(X);
Y = round(Y);
X ( X < 1 ) = 1;
Y ( Y < 1 ) = 1;
BW = im > 255;
for p = 1:length(X)
BW(Y(p),X(p)) = 1;
end
%connect the end of curve
for n = 0:(1/round(sqrt((X(end)-X(1))^2 + (Y(end)-Y(1))^2 ))):1
xn = round(X(1) +(X(end) - X(1))*n);
yn = round(Y(1) +(Y(end) - Y(1))*n);
BW(yn,xn) = 1;
end
se = strel('disk',10);
BW = imclose(BW,se);
BW = imdilate(BW,se);
BW = imfill(BW,'holes');
im( im < 255 ) = 0;
im = imclose(im,se);
BW = BW * 255;
BW = im2uint8(BW);
figure;
imshow(BW);
% close all;
end
  댓글 수: 4
KALYAN ACHARJYA
KALYAN ACHARJYA 2020년 5월 1일
Can you attach the im image here?
Neda
Neda 2020년 5월 1일
Image is 600 * 800 filled with zeros

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

답변 (1개)

Ameer Hamza
Ameer Hamza 2020년 5월 1일
편집: Ameer Hamza 2020년 5월 1일
What about just shifting the x and y coordinates
x = H_D{1}(:,1);
y = H_D{1}(:,2);
im = zeros(600, 800);
mask = Create_mask(x-300, y-300, im);
Also, I recommend that instead of creating your own function to convert x, y coordinates to mask, you can do it with built-in function in a single line
x = H_D{1}(:,1);
y = H_D{1}(:,2);
im = poly2mask(x-300, y-300, 600, 800);
  댓글 수: 2
Neda
Neda 2020년 5월 1일
Thank you for your suggestion. Why shifting by 300?
Ameer Hamza
Ameer Hamza 2020년 5월 1일
편집: Ameer Hamza 2020년 5월 1일
I just made a guess. It appeared similar to the image you have shown in the question. I think that the actual points themself cannot create the mask you want. Some sort of shifting is necessary.

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

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by