How to find pixel in one square block?

3 ビュー (過去 30 日間)
Prashant
Prashant 2020 年 8 月 16 日
コメント済み: Prashant 2020 年 8 月 19 日
Hello,
I have an Image called checkerboard, now i know the size of one square block is 34 x 34 mm. how can i find that in that one square block 34mm has how many pixel?
is there any formula to find or function?
Thank you in advance.

採用された回答

Image Analyst
Image Analyst 2020 年 8 月 16 日
Try this. You'll find meanArea = 102.3 pixels.
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 = 'checkerboard.jpg';
% 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, 2, 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;
% Display histogram
subplot(2, 2, 2);
imhist(grayImage);
grid on;
title('Histogram of original gray image', 'FontSize', fontSize);
%--------------------------------------------------------------------------------------------------------
% SEGMENTATION OF IMAGE
binaryImage = grayImage < 40;
% Display the image.
subplot(2, 2, 3);
imshow(binaryImage, []);
title('Binary Image', 'FontSize', fontSize, 'Interpreter', 'None');
impixelinfo;
% Measure areas
labeledImage = bwlabel(binaryImage, 4);
props = regionprops(labeledImage, 'Area', 'BoundingBox');
allAreas = [props.Area]
bb = vertcat(props.BoundingBox);
widths = bb(:, 3);
heights = bb(:, 4);
aspectRatios = widths ./ heights
keepers = find(allAreas' > 80 & aspectRatios > 0.8 & aspectRatios < 1.3);
% Get new image with just the squares.
binaryImage = ismember(labeledImage, keepers);
% Display the image.
subplot(2, 2, 4);
imshow(binaryImage, []);
title('New Binary Image', 'FontSize', fontSize, 'Interpreter', 'None');
impixelinfo;
% Measure areas of only hte "good" blobs.
labeledImage = bwlabel(binaryImage, 4);
props = regionprops(labeledImage, 'Area', 'BoundingBox');
allAreas = [props.Area]
meanArea = mean(allAreas)
  13 件のコメント
Image Analyst
Image Analyst 2020 年 8 月 19 日
Just invert it and multiply by 34, but it really shouldn't even be necessary since we're not ever going to use that information, remember?
% Pixels = mm * pixels/mm
mmPerPixel = sqrt(areaInMm / areaInPixels);
pixelsPerMm = 1 / mmPerPixel; % or sqrt(areaInPixels / areaInMm)
pixelDistance34 = 34 * pixelsPerMm % Number of pixels across a 34 mm span.
Prashant
Prashant 2020 年 8 月 19 日
ja correct, you right. I just asked you to know only. :)

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

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2020 年 8 月 16 日
Use bwconncomp with connection 4. Pass the result to regionprops asking for BoundingBox . You will get a struct array returned. You can put them together into one array using vertcat(). Now you can use median() on the 3rd and 4th columns to find out what the median box size is in pixels. Then knowing that represents 34 mm of physical space, you can calculate the image resolution.
  2 件のコメント
Prashant
Prashant 2020 年 8 月 16 日
Hi walter,
thank you for your quick response. Could you please show me how to write this code because i am new with matlab and would be great for me to make one example or write one code for me.
I have attached my picture, please have a look.
Prashant
Prashant 2020 年 8 月 16 日
Hi walter,
I have written this code please have a look. and please correct for me some problem here.
bcs with this code i am getting center to center distance but i want from corner to corner of one block. how can i find this?
here is the code:
fontSize = 13;
numImages = 20;
files = cell(1, numImages);
for i = 1:numImages
files{i} = fullfile('S:\EE_Elektrik_Elektronik\Licht_Sicht_Stud\1000_Studenten\Khandelwal\Masterarbeit\MATLAB\Image_processing\Calibration\10m\10m\Image_neue', sprintf('IMG_%d.JPG', i));
end
% Display one of the calibration images
magnification = 20;
I = imread(files{1});
imshow(I) % a1=original image (unprocessed)
a1G=mat2gray(I);
a1GCT=graythresh(a1G);
a1B=im2bw(a1G,a1GCT);
a1C=imcrop(a1B);
a1RP=regionprops(a1C,'Centroid','MajorAxisLength',...
'MinorAxisLength','Orientation', 'Eccentricity');
CentroidS=cat(1,a1RP.Centroid);
x = CentroidS(:,1);
y = CentroidS(:,2);
figure
imshow(a1C)
hold on
plot(x,y,'b*')
w = msgbox('Pick 2 points');
waitfor(w)
while 1
xy = ginput(2); % get coordinates of mouse clicks
% find 2 closes points
[~,ind] = pdist2([x y],xy,'euclidean','Smallest',1);
x1 = x(ind);
y1 = y(ind);
plot(x1,y1,'o-r') % plot closes points
d = pdist([x1 y1]); % distance between points
t = text(mean(x1),mean(y1),num2str(d));
set(t,'Color','Yellow','BackgroundColor','Black');
w = waitforbuttonpress; % mouse click - conntinue, button - quit
disp('press anything to quit')
if w % if button was pressed - quit
break
end
end

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

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by