Experiment - Histogram computation
Problem:You want to compute the color histogram of images to understand the distribution of pixel intensities. Currently, the histogram is computed but it does not correctly represent the image colors, leading to poor feature extraction for further tasks.
Current Metrics:Histogram bins do not sum up to the total number of pixels; color channels are mixed; histogram shape is inconsistent with expected color distribution.
Issue:The histogram computation mixes color channels and does not normalize counts, causing inaccurate representation of image color distribution.