-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
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
How do I try to search with my own data, I want to take my own data set and organize it in that form #4
Comments
The dataset preparation follows visual geo-localization benchmark. If you want to use it on your own dataset, you'll need to rewrite the image names in this standard format: |
If your images are labeled by latitude and longitude, you need to convert it to get UTM coordinates. If they are annotated by frame-level correspondence, you can create pseudo UTM coordinates. For example, you can rewrite the name of the i-th image in the Nordland-test dataset to |
假如我的数据,没有任何标识,我就是想从一大堆图片中找出 最相似的图像呢,虽然这样听起来不像地理定位,但是有时候更多的场景是盲定位吧 |
那估计还是得按这个命名格式改一下图片名字,你可以把原来的名字写到 |
对,我试过了,不赋值是报错的,对,任何直接计算pre就行,这样就可以用做盲定位了 |
self.database_utms = np.array([(path.split("@")[1], path.split("@")[2]) for path in self.database_paths]).astype(np.float)
self.queries_utms = np.array([(path.split("@")[1], path.split("@")[2]) for path in self.queries_paths]).astype(np.float)
I don't understand these two lines of code
The text was updated successfully, but these errors were encountered: