Home

Published

- 1 min read

python get image average color

img of python get image average color

The solution for this is noted below

python get image average color

Solution

   import cv2
import numpy
myimg = cv2.imread('image.jpg')
avg_color_per_row = numpy.average(myimg, axis=0)
avg_color = numpy.average(avg_color_per_row, axis=0)
print(avg_color)
# https://stackoverflow.com/questions/43111029/how-to-find-the-average-colour-of-an-image-in-python-with-opencv

Try other methods by searching on the site. That is if this doesn’t work