I'm using FlannBasedMatcher for image registration, and every computer I run on seems to give different results. Here are the paramters:
FLANN_INDEX_KDTREE = 5
index_params = dict(algorithm = FLANN_INDEX_KDTREE, trees = 1)
search_params = dict(checks=100)
self.matcher = cv2.FlannBasedMatcher(index_params,search_params)
Is it due to the change in number of cores in the CPU? How do I make the results consistent across all computers?