image-matching-benchmark icon indicating copy to clipboard operation
image-matching-benchmark copied to clipboard

Public release of the Image Matching Benchmark: https://image-matching-challenge.github.io

Results 8 image-matching-benchmark issues
Sort by recently updated
recently updated
newest added

depth_clean = f['depth'].value gives errors and can be corrected like **depth_clean = f['depth'][:]** ______________________________________________________________ Then f2 = plt.imshow(data['depth'].astype(np.float)) can be corrected like **# f2 = plt.imshow(data['depth'])** ______________________________________________________________ changing plt.imshow(rgb.transpose((1, 2,...

I understand that it is an artificial thing, which likely would never happen in practice, but it is good to know anyway. https://github.com/ubc-vision/image-matching-benchmark/blob/master/utils/eval_helper.py#L99 Code to reproduce: ```python3 import numpy as...

i think there should be a leaderboard with limited keypoints, such as 500 and 1000, which will be useful for selecting keypoint for realtime SLAM.

enhancement

To my best knowledge, you currently only accept `matches.h5` files with keys in form of `{filename1}-{filename2}`. I would request that support for `{filename1}/{filename2}` is added, which is interpreted by HDF...

Hello, Thanks for you work! I have a question about the error metrics: ``` # Compute err_q and err_t only when R, t are not None err_q, err_t = np.inf,...

Hi, nice work! If Image pairs feature point gt label tool can share with us ?

Hi, When I tried to evaluate on multiview, the bundle adjustment step couldn't converge and failed to generate colmap outputs. This happens for a few bags only. Around 5 bags...

I would like to evaluate various features on my own dataset, I read the parts of the theory of generating scene data, but I cannot find the script to do...