I need to do a histogram equalization for a colored image.
First I convert the colored image to gray and give it to the equalizeHist function:
image = cv2.imread("photo.jpg")
image = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
cv2.equalizeHist(image)
cv2.imshow("equalizeHist", image)
cv2.waitKey(0)
But after this I need to convert the image back to RGB; how can i do that?
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire