I'm not really sure how do go about doing this, I think template matching could work but I'm not really sure. Could someone help?
import cv2
import numpy as np
Fishisthere = cv2.imread("FishThere.jpg")
img = Fishisthere[579:600, 850:1360]
hsv = cv2.cvtColor(img, cv2.COLOR_BGR2HSV)
lowerrange = np.array([106, 147, 0])
upperrange = np.array([179, 255, 245])
mask = cv2.inRange(hsv, lowerrange, upperrange)
cv2.imshow("edited", mask)
#cv2.imshow("normal1", hsv)
#cv2.imshow("normal1", img)
cv2.waitKey(0)
#cv2.destroyAllWindows()