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); ...
거의 9년 전 | 0
| 수락됨
