There is a scenario that I have to identify round/oval marks that are placed on the tiled floor. I tried to use the following background subtraction algorithms that are inbuild with OpenCV separately.
filter1 = cv.bgsegm.createBackgroundSubtractorMOG()
filter2 = cv.createBackgroundSubtractorMOG2()
filter3 = cv.bgsegm.createBackgroundSubtractorGMG()
The result came as following respectively (the first image is the original image and rest are resultant images)
As you can see the black circle that I want to identify is not identified. So I used following thresholding command to identify the mark.
ret, thresh = cv.threshold(img, 75, 255, cv.THRESH_BINARY_INV)
Which gives the following result.
It identifies the mark but I am not sure the thresholding method will work efficiency in different lighting and background.
So what I seek is a better solution, that I can identify the mark more accurately.