pixel values from Tif file
조회 수: 5 (최근 30일)
이전 댓글 표시
How can I extract pixel values from this Tif file for getting the mean and std dev values
댓글 수: 0
답변 (1개)
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(:));
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 MATLAB Report Generator에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!