Clear Filters
Clear Filters

Boundaries in an image

14 views (last 30 days)
Tayyaba Bano
Tayyaba Bano on 15 Jun 2023
Commented: Image Analyst on 26 Jun 2024 at 14:23
Hi,
I have to trace the boundaries in the image (attached original image).
I have to trace only one boundary as indicated in the image.
I tried this for only one image, how can I do this for number of images?
Waiting for a kind response.
Regards
Tayyaba
grayImage = imread('0002.tif');
[rows, columns, numberOfColorChannels] = size(grayImage);
if numberOfColorChannels > 1
grayImage = rgb2gray(grayImage);
end
% Display the image.
subplot(2, 3, 1);
imshow(grayImage, []);
title('Original Grayscale Image');
impixelinfo;
% Crop image
% grayImage = imcrop(grayImage);
Img = imcrop(grayImage,[670 60 800 500]);
% Update size.
[rows, columns, numberOfColorChannels] = size(Img);
%--------------------------------------------------------------------------------------------------------
% SEGMENTATION OF IMAGE
% Get a binary image
mask = Img < 22; %imbinarize(grayImage);
% Display the mask.
subplot(2, 3, 4);
imshow(mask, []);
impixelinfo;
title('Initial Binary Image');
impixelinfo;
% Fill interior holes.
mask = imfill(mask, 'holes');
% Get rid of particles smaller than 10000 in size
mask = bwareaopen(mask,10000);
subplot(2, 3, 5);
imshow(mask, []);
impixelinfo;
title('Final Binary Image');
impixelinfo;
% Get boundaries
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
%Specifing limits to get rid of the outer boundary
xlim([5 500]);
ylim([5 500]);
title('Image With Boundaries');

Answers (2)

Aakash
Aakash on 15 Jun 2023
Moved: Image Analyst on 15 Jun 2023
By number of images I'm assuming you want to repeat this on multiple images, so put all the images in a seperate folder and read from it using a for loop.
You can try out this code:
path=dir(your_image_folder_path);//as string
n=length(path);
for i=3:n
str=path(i).name;
[p ,fname]=fileparts(str);
str=[your_image_folder_path,str];
im=imread(str);
// your code as shown above

Image Analyst
Image Analyst on 15 Jun 2023
See the FAQ to get code snippets for processing a sequence of files:
  8 Comments
Tayyaba Bano
Tayyaba Bano on 26 Jun 2024 at 9:46
Thank you very much for your kind reply,
initially I imported number of images for example 500 and get a single image with bounadries out of those 500 images. Is this also an avereaged imaged? because i did not divide it by nr of images to take average.
Regards
Tayyaba
Image Analyst
Image Analyst on 26 Jun 2024 at 14:23
You did not describe the operations you did when you "get a single image with bounadries out of those 500 images", so how could I know what you did? Why are you talking about boundaries now when before you were only talking about averaging images?
If you want the average shape of objects, then see my attached demo that finds the average shape.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!