Vincentqyw/image-matching-webui

Can you output matching coordinates? Yes, thank you

wzj-888 opened this issue ยท 2 comments

๐Ÿš€ Feature Request

๐Ÿ“Ž Additional context

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())

image

wow thank you๏ผ๏ผ๏ผWhat a great job you did!