Can you output matching coordinates? Yes, thank you
wzj-888 opened this issue ยท 2 comments
wzj-888 commented
๐ Feature Request
๐ Additional context
Vincentqyw commented
I've added an output.pkl
file to the UI, which stores image-matching results in this patch: 947d69b
You can reload the file with code:
import pickle
with open('output.pkl', 'rb') as f:
pred = pickle.load(f)
print(pred.keys())
wzj-888 commented
wow thank you๏ผ๏ผ๏ผWhat a great job you did!