Feeds
已回答
find the histogram of the image(cameraman)without using the matlab built-in functions for histogram calculations.compare your result with the with those obtained using the functions imhist().display the input image,the two histograms-(yours and matla
%By Marwa Ahmeid function [y]=myimhist(img) [r,c]=size(img); y=zeros(1,256); for i=1:r for j=1:c z=img(i,j); ...
find the histogram of the image(cameraman)without using the matlab built-in functions for histogram calculations.compare your result with the with those obtained using the functions imhist().display the input image,the two histograms-(yours and matla
%By Marwa Ahmeid function [y]=myimhist(img) [r,c]=size(img); y=zeros(1,256); for i=1:r for j=1:c z=img(i,j); ...
8 years 前 | 0
| 已接受
