Know more, Grow more!!!
Its about everything that you need to know!
Wednesday, April 12, 2017
Calculate pixel intensity summation in Horizontal, Vertcal direction and Diagonally in MATLAB: code and output
I = imread('cameraman.tif');
imshow(I);
v = sum(I,1);
v
I = imread('cameraman.tif');
imshow(I);
v = sum(I,2);
v
I = imread('cameraman.tif');
imshow(I);
v = sum(diag(I));
v
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment