I am trying to convert my RGB image to Grayscale. While doing it, I came across the code:
np.dot(rgbImage[...,:3], [0.299, 0.587, 0.114])
Can anyone please explain this line and values taken.? (Please don't provide any Wikipedia link) searching for a simple explanation.