How to trace the boundray of object in an image using MATLAB?
Show older comments
Hi,
I want to trace the boundary of an object in an image.(the bended black part)
I am attaching the binarised image herewith.
My questions are:
when I use dim= size(I) inin the following code, it gives different size and when I type in dim = size(BW), it gives different pixel size, so which should I follow?
I = imread('flap2.png');
imshow(I);
dim = size(I)
secondly how can I define the row and coloumn using this size information in order to continue with bwtraceboundary , because when i use this command it gives me a following error:
Error using bwtraceboundary
Expected input number 1, BW, to be two-dimensional.
waiting for a kind response.
Regards
Tayyaba

2 Comments
KALYAN ACHARJYA
on 26 Nov 2020
"I want to trace the boundary of an object in an image.(the bended black part)"
Which image? Can you attach it (Please use clip button)
Tayyaba Bano
on 26 Nov 2020
Answers (4)
KALYAN ACHARJYA
on 26 Nov 2020
se=strel('disk',2);
im=imerode(~binary_image,se);
result=bwareafilt(im,1);
result=imdilate(result,se);
imshow(result);
Please adjust the morpho operation to get more accurate results

2 Comments
Tayyaba Bano
on 27 Nov 2020
KALYAN ACHARJYA
on 27 Nov 2020
Edited: KALYAN ACHARJYA
on 27 Nov 2020
To get the indices of boundary, apply hit and miss transformation, the
[r,c]=find(resultant_image==1)
Image Analyst
on 26 Nov 2020
If you want to manually trace some boundary. Use drawfreehand().
If you have a binary image and you want an image of the perimeter only, then use bwperim().
perimImage = bwperim(binaryImage);
imshow(perimImage);
If you have a binary image and you want a list of the (x,y) coordinates, use bwboundaries().
boundaries = bwboundaries(binaryImage);
hold on; % Don't let boundaries blow away the image.
for k = 1 : length(boundaries)
thisBoundary = boundaries{k};
x = thisBoundary(:, 2);
y = thisBoundary(:, 1);
plot(x, y, 'LineWidth', 2);
end
hold off;
2 Comments
Tayyaba Bano
on 27 Nov 2020
Image Analyst
on 27 Nov 2020
You passed in your color image. You need to use the binary image, after it's been converted to gray scale and segmented.
Image Analyst
on 27 Nov 2020
Try this:
clc; % Clear the command window.
close all; % Close all figures (except those of imtool.)
clear; % Erase all existing variables. Or clearvars if you want.
workspace; % Make sure the workspace panel is showing.
format long g;
format compact;
fontSize = 22;
%--------------------------------------------------------------------------------------------------------
% READ IN IMAGE
folder = pwd;
baseFileName = 'image.jpeg';
% Get the full filename, with path prepended.
fullFileName = fullfile(folder, baseFileName);
% Check if file exists.
if ~exist(fullFileName, 'file')
% The file doesn't exist -- didn't find it there in that folder.
% Check the entire search path (other folders) for the file by stripping off the folder.
fullFileNameOnSearchPath = baseFileName; % No path this time.
if ~exist(fullFileNameOnSearchPath, 'file')
% Still didn't find it. Alert user.
errorMessage = sprintf('Error: %s does not exist in the search path folders.', fullFileName);
uiwait(warndlg(errorMessage));
return;
end
end
grayImage = imread(fullFileName);
% Get the dimensions of the image.
% numberOfColorChannels should be = 1 for a gray scale image, and 3 for an RGB color image.
[rows, columns, numberOfColorChannels] = size(grayImage);
if numberOfColorChannels > 1
% It's not really gray scale like we expected - it's color.
% Use weighted sum of ALL channels to create a gray scale image.
grayImage = rgb2gray(grayImage);
% ALTERNATE METHOD: Convert it to gray scale by taking only the green channel,
% which in a typical snapshot will be the least noisy channel.
% grayImage = grayImage(:, :, 2); % Take green channel.
end
% Display the image.
subplot(2, 3, 1);
imshow(grayImage, []);
title('Original Grayscale Image', 'FontSize', fontSize, 'Interpreter', 'None');
impixelinfo;
hFig = gcf;
hFig.WindowState = 'maximized'; % May not work in earlier versions of MATLAB.
drawnow;
% The image has a huge white frame around it. Let's crop that away.
verticalProfile = all(grayImage == 255, 2);
row1 = find(~verticalProfile, 1, 'first');
row2 = find(~verticalProfile, 1, 'last');
horizontalProfile = all(grayImage == 255, 1);
col1 = find(~horizontalProfile, 1, 'first');
col2 = find(~horizontalProfile, 1, 'last');
% Do the crop
grayImage = grayImage(row1:row2, col1:col2);
% Display the image.
subplot(2, 3, 2);
imshow(grayImage, []);
axis('on', 'image');
title('Cropped Grayscale Image', 'FontSize', fontSize, 'Interpreter', 'None');
impixelinfo;
% Update size.
[rows, columns, numberOfColorChannels] = size(grayImage);
% Display histogram
subplot(2, 3, 3);
imhist(grayImage);
grid on;
title('Histogram of gray image', 'FontSize', fontSize);
%--------------------------------------------------------------------------------------------------------
% SEGMENTATION OF IMAGE
% Get a binary image
mask = grayImage < 25; %imbinarize(grayImage);
% Display the mask.
subplot(2, 3, 4);
imshow(mask, []);
impixelinfo;
title('Initial Binary Image', 'FontSize', fontSize, 'Interpreter', 'None');
impixelinfo;
% Make a circle mask to get rid of corners
% Create a logical image of a circle with specified
% diameter, center, and image size.
% First create the image.
imageSizeX = columns;
imageSizeY = rows;
[columnsInImage, rowsInImage] = meshgrid(1:imageSizeX, 1:imageSizeY);
% Next create the circle in the image.
centerX = columns/2;
centerY = rows/2;
radius = 450;
circlePixels = (rowsInImage - centerY).^2 ...
+ (columnsInImage - centerX).^2 <= radius.^2;
% circlePixels is a 2D "logical" array.
% Now, display it.
% imshow(circlePixels) ;
% title('Binary image of a circle');
% Erase the corners
mask = mask & circlePixels;
% Do an opening to break the stick away from the background things.
se = strel('disk', 2, 0);
mask = imopen(mask, se);
% Take the biggest blob.
mask = bwareafilt(mask, 1);
% Fill holes
mask = imfill(mask, 'holes');
% Blur it a bit to smooth it out.
windowSize = 17;
kernel = ones(windowSize, windowSize) / windowSize ^ 2;
mask = imfilter(mask, kernel) > 0.5;
subplot(2, 3, 5);
imshow(mask, []);
impixelinfo;
title('Final Binary Image', 'FontSize', fontSize, 'Interpreter', 'None');
impixelinfo;
% Get boundaries and plot them, just for fun.
boundaries = bwboundaries(mask);
subplot(2, 3, 6);
imshow(grayImage); % Show cropped image again.
hold on;
for k = 1 : length(boundaries)
thisBoundary = boundaries{k};
x = thisBoundary(:, 2);
y = thisBoundary(:, 1);
plot(x, y, 'r-', 'LineWidth', 2);
end
title('Image With Boundaries', 'FontSize', fontSize, 'Interpreter', 'None');

15 Comments
Tayyaba Bano
on 1 Dec 2020
Image Analyst
on 1 Dec 2020
- You did not post the actual image but it appeared to be some kind of screenshot. It had a huge white frame around it as the comments said. To get rid of that frame and get to just the image inside, I had to crop it. I identified the cropping region by noting that the white frame had a value of exactly 255. You would not have to do this step if you did not have an image with a big white frame around it.
- I just guessed at the 450 to get a mask that would exclude the corners. If you don't like it, you can experiment around with different radii.
- Post an image without the white frame and I'll try it.
- You can scan the image column by column finding the lowest row that is white
lastRow = zeros(1, columns);
for col = 1 : columns
r = find(mask(:, col), 1, 'last');
if ~isempty(r)
% There is at least one white pixel in this column.
lastRow(col) = r;
end
end
Tayyaba Bano
on 2 Dec 2020
Image Analyst
on 2 Dec 2020
Why didn't you use the code I gave you in my last comment to find the last row of the fiber?
Tayyaba Bano
on 4 Dec 2020
Image Analyst
on 4 Dec 2020
Please attach flap2.tif.
Tayyaba Bano
on 7 Dec 2020
Image Analyst
on 7 Dec 2020
I was hoping for the original image without the big white frame so we don't need to do the cropping operation. But anyway, try the attached.

Adapt as needed.
Tayyaba Bano
on 9 Dec 2020
Tayyaba Bano
on 9 Dec 2020
Image Analyst
on 9 Dec 2020
The first row is the top edge. If you need the bottom row also, you can use this:
firstRow = zeros(1, columns);
lastRow = zeros(1, columns);
for col = 1 : columns
thisColumn = find(mask(:, col), 1, 'first');
if ~isempty(thisColumn)
% There is at least one white pixel in this column.
firstRow(col) = thisColumn;
lastRow(col) = find(mask(:, col), 1, 'last');;
end
end
Tayyaba Bano
on 15 Dec 2020
Image Analyst
on 15 Dec 2020
401 is not the original image - it has a huge white frame around it. I'd try adjusting the threshold. You could also try morphological operations like imopen() to see if you can cut off some of the bright background that intrudes into the shape and gives it a ragged boundary. Perhaps the image capture conditions could also be improved, like change the exposure, lighting geometry, use polarizers, optical filters, or other such "tricks".
A bit more complicated, you could try deep learning with SegNet:
Tayyaba Bano
on 18 Dec 2020
Image Analyst
on 18 Dec 2020
Can you increase your exposure time to get a less noisy photo?
Maybe try some denoising routines, of which there are many. Maybe imnlmfit().
Tayyaba Bano
on 30 Aug 2021
3 Comments
Image Analyst
on 30 Aug 2021
You posted this as an Answer to your original question. And I don't see any sentence in there ending in a question mark. So I'm not going to do anything with this Answer, if that's what you were expecting. I also gave two Answers above.
Tayyaba Bano
on 30 Aug 2021
Tayyaba Bano
on 30 Aug 2021
Categories
Find more on ROI-Based Processing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!