I'm working with OpenCV on this kind of an image:
I have a numpy array which contains different colors, let's say I consider this color written in BGR: [65 71 72]
I want to get rid of this color from my image leaving it with black spaces after this color. As far as I know I have to convert my image into gray scale and then apply a mask BUT in mask I say what are lower and upper boundaries of a color, while idk what are the boundaries for this or any color, as well as what is the gray scale representation of this color. I read about many different techniques for thresholding but all examples deal with colors like (255 0 0)
.