can we find out the difference between two histogram , if yes then how ?

2 visualizaciones (últimos 30 días)
chitresh
chitresh el 7 de Nov. de 2013
Comentada: chitresh el 7 de Nov. de 2013
i use imhist(file_name) command to display histogram of two different images, now i want to see the difference between them, in my case its looks almost similar in picture, so how can i see the difference between them

Respuestas (1)

Dhivya
Dhivya el 7 de Nov. de 2013
If you just want to know the difference in values, then go for
a=imread('image1'); b=imread('image2'); c=imhist(a); d=imhist(b); z=c-d;
  1 comentario
chitresh
chitresh el 7 de Nov. de 2013
that i know dhivya i want to see the change in image histogram , i already done what you had said

Iniciar sesión para comentar.

Categorías

Más información sobre Histograms en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by