adding pixels of each binary image in time series
I have time series of classified binary images with same number of rows and columns, I would like to add the values for each cell (eg. (1,1)) of every image. then divide addition for a cell with number of images to get percentage.
idea is to get the percentage for each cell in this time series 1.tif, 2.tif,……10.tif
then plot this percentage for each cell on a 3D graph with varying colors.
hints or suggestions will be helpful.
NOTE:-
Matlabsolutions.com provide latest MatLab Homework Help,MatLab Assignment Help for students, engineers and researchers in Multiple Branches like ECE, EEE, CSE, Mechanical, Civil with 100% output.Matlab Code for B.E, B.Tech,M.E,M.Tech, Ph.D. Scholars with 100% privacy guaranteed. Get MATLAB projects with source code for your learning and research.
Inside the loop over images,
if k == 1
% It's the first image. Create the sum image.
sumImage = double(binaryImage);
else
% It's the second or later. Add it.
sumImage = sumImage + double(binaryImage);
end
Then after the loop divide sumImage by the number of images to get the percentage image.
percentageImage = 100 * sumImage / numberOfImages;
imshow(percentageImage, []); % Display scaled to 0-255 with the [] option.
SEE COMPLETE ANSWER CLICK THE LINK