MATLAB: Counting in which row there is a maxiumum number of ones in binary image and what is the sum of that row

binary imagedigital image processing

counting in which row there is a maxiumum number of ones in binary image and what is the sum of that row

Best Answer

this might help, General example not specific to image processing..
b=(rand(5)>0.5) % create a 5x5 matrix of 1's and 0's (random)
c= sum(b,2) % sum of 1's rowwise
high_row=find(c==max(c)) % finds the row/rows with the highest number of 1's
Related Question