Borrar filtros
Borrar filtros

pixel values from Tif file

10 visualizaciones (últimos 30 días)
mahesh makam
mahesh makam el 24 de Mayo de 2020
Editada: Image Analyst el 25 de Mayo de 2020
How can I extract pixel values ​​from this Tif file for getting the mean and std dev values

Respuestas (1)

Image Analyst
Image Analyst el 25 de Mayo de 2020
Editada: Image Analyst el 25 de Mayo de 2020
% 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(:));

Categorías

Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by