필터 지우기
필터 지우기

Manually compute histrogram and display using bar function,

조회 수: 1 (최근 30일)
Ali
Ali 2014년 10월 20일
답변: Image Analyst 2014년 10월 20일
write function myhist to manually compute the histogram of grayscale image and display the histgoram using bar function

답변 (1개)

Image Analyst
Image Analyst 2014년 10월 20일
Hint: Use a for loop
[rows, columns, numberOfColorChannels] = size(grayImage);
for col = 1 : columns
for row = 1 : rows
grayLevel = grayImage(row,..............
Sounds like a homework problem so I won't do the whole thing for you. This should be more than enough to let you finish it.

카테고리

Help CenterFile Exchange에서 Histograms에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by