フィルターのクリア

Boundaries in an image

14 ビュー (過去 30 日間)
Tayyaba Bano
Tayyaba Bano 2023 年 6 月 15 日
コメント済み: Image Analyst 2024 年 6 月 26 日 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');

回答 (2 件)

Aakash
Aakash 2023 年 6 月 15 日
移動済み: Image Analyst 2023 年 6 月 15 日
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 2023 年 6 月 15 日
See the FAQ to get code snippets for processing a sequence of files:
  8 件のコメント
Tayyaba Bano
Tayyaba Bano 2024 年 6 月 26 日 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 2024 年 6 月 26 日 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.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeExplore and Edit Images with Image Viewer App についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by