I am working with Image Processing and python. I have an array of RGBA values for 10 different points in the image and one of the points is given below.
I have the following RGBA value of a given pixel in the image:
[42,25,16,255]
I want to mark this particular pixel with a 'dot' in the same image. I have tried this (How to read the RGB value of a given pixel in Python?) but I could not get it to work.
Unfortunately, I don't know how to proceed further.
Any help might be appreciated.
Thank you.