tags:

views:

294

answers:

1

I have got all the pixel values (RGB) of a bmp image. After that, how can i plot the histogram of these values?? I am using C language on my project. Can anyone can help me? Thank you.

+1  A: 

I don't think there is a function for creating histograms in C by default. But there are many functions on the internet to do this for you. Try to google for "c histogram".

Noio