I would like to cache KeyPoint
in a JSON file and then retrieve them later for use in a FlannBasedMatcher
. Is there a way to convert the KeyPoint
to something like an array of strings or floats that could be stored and then retreived from a JSON file? I think this should be ok for the descriptors since they just look like an array of ints.
COMPUTING KEYPOINTs
kp2, des2 = brisk.detectAndCompute(img2, None)
MATCHER
matches = flann.knnMatch(des1,des2,k=2)
You can save your KeyPoint to a JSON file directly in string type:
Save to data.txt with json format:
Converting back to KeyPoint from a JSON file need change it to cv2.KeyPoint class:
Read from data.txt you save: