pixel values from Tif file

4 次查看(过去 30 天)
mahesh makam
mahesh makam 2020-5-24
How can I extract pixel values ​​from this Tif file for getting the mean and std dev values

回答(1 个)

Image Analyst
Image Analyst 2020-5-25
编辑:Image Analyst 2020-5-25
% Have user browse for a file, from a specified "starting folder."
% For convenience in browsing, set a starting folder from which to browse.
startingFolder = pwd; % or 'C:\wherever';
if ~isfolder(startingFolder)
% If that folder doesn't exist, just start in the current folder.
startingFolder = pwd;
end
% Get the name of the file that the user wants to use.
defaultFileName = fullfile(startingFolder, '*.*');
[baseFileName, folder] = uigetfile(defaultFileName, 'Select a file');
if baseFileName == 0
% User clicked the Cancel button.
return;
end
fullFileName = fullfile(folder, baseFileName)
pixelValues = imread(fullFileName);
imshow(pixelValues);
meanGrayLevel = mean(pixelValues(:));
stdDev = std(pixelValues(:));

类别

Help CenterFile Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by