We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
start_time = time.time() descriptors1 = xfeat.get_descriptor(image1, top_k=4096) end_time = time.time()
def get_descriptor(self, img1, top_k = None, min_cossim = -1):
if top_k is None: top_k = self.top_k img1 = self.parse_input(img1) out1 = self.detectAndCompute(img1, top_k=top_k)[0] return out1['descriptors'].cpu().numpy()
it takes 1.5s for 1 img
The text was updated successfully, but these errors were encountered:
I had same issue. I fixed it with pc format. It was caused by some dependencies but I couldnt know which.
Sorry, something went wrong.
Thank you for your comment .I still have the question。Could you elaborate on the specific operations of pc format?
No branches or pull requests
start_time = time.time()
descriptors1 = xfeat.get_descriptor(image1, top_k=4096)
end_time = time.time()
def get_descriptor(self, img1, top_k = None, min_cossim = -1):
it takes 1.5s for 1 img
The text was updated successfully, but these errors were encountered: