Sorry, i use the word "good"...it's relative. But, in my project i want to find pictures, which where not under or overexposed and have a great dynamic with a lot of colors.
okay :
- for the first problems i can take a V-histogram in the HSV-colorspace with a rude count of bins. So i can detect under/overexposed images
- for the count of colors i can use a H/V-Diagram, maybe in a cumulative histogram?
- For the dynamic (difference between the rate of colors) i can choose the H-Diagram, and calculate the avg of the bins.
- Also, i want to detect global peaks. Where a color is erodes. Sure, I can get the maximum of a V-Histogram and look if the value/brightness is 255.
These points presents my ideas to solve the problems. But maybe there are other, effective solutions or ideas from any papers.
In my project i must explore a large count of image and i think it take a long time to create all this histograms.
Greetings