Boundaries in an image
조회 수: 9 (최근 30일)
이전 댓글 표시
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');
댓글 수: 0
답변 (2개)
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
댓글 수: 0
Image Analyst
2023년 6월 15일
See the FAQ to get code snippets for processing a sequence of files:
댓글 수: 8
Image Analyst
2024년 6월 26일
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 Exchange에서 Image Processing and Computer Vision에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!