I am new in image processing and opencv. I need to threshold my gray scale image. The image contains all value between 0 to 1350 and I want to keep all values which are more than 100. I found this function in opencv:
cv::threshold( Src1, Last, 100, max_BINARY_value,3);
I do not know what should I write in the max_BINARY_value part and aslo I do not know if the last item is selected correctly or not.
Thanks in advance.