Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

(Image Processing) Using MatLab Write the function plot_histogram that takes as input a histogram (as returned from compute_histogram) and plots it. The x-axis should range

(Image Processing) Using MatLab

Write the function plot_histogram that takes as input a histogram (as returned from compute_histogram) and plots it. The x-axis should range from 0 to 255 and be labeled intensity value. The y-axis should range from 0 to the maximum value of the histogram and should be labeled PMF (for probability mass function). The function of compute_histogram takes a grayscale image as input and returns a length 256 vector h which is the normalized histogram of the values in the image. h should have values from 0 to 1 and its components should sum to 1.

function h = compute_histogram (img)

[m,n] = size(img);

h = zeros(1,256);

for i = 1:m

for j = 1:n h(img(i,j)+1) = h(img(i,j) + 1) + 1;

end

end

total = m*n;

h = h./total;

end

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

DB2 11 The Database For Big Data And Analytics

Authors: Cristian Molaro, Surekha Parekh, Terry Purcell, Julian Stuhler

1st Edition

1583473858, 978-1583473856

More Books

Students also viewed these Databases questions

Question

The answer given is not correct

Answered: 1 week ago

Question

2. How much time should be allocated to the focus group?

Answered: 1 week ago

Question

1. Where will you recommend that she hold the focus group?

Answered: 1 week ago