I have around 100 different images of pens. My requirement is to compare multiple images of pens with one master or one another and need to give the result which all pen’s images are matching with the original one.
Hi,
First I have define Min Match Count = 9 then
FLANN_INDEX_KDTREE = 1 then
if len(good)>MIN_MATCH_COUNT:
matchesMask = mask.ravel().tolist()
I am trying to take all the background as plane but in few scenarios it is not possible to keep plane background for the object.
My another issue is sometime same pens are showing as not matching and in that case I need to change the Min Match Count which is not possible as it should not be dynamic value to change everytime.