Accurate Landmark Positioning at City Scales
The full paper can be found here
Introduction - ALPS aims to use images from Google street view to analyze different views of an object to triangulate it's location(City Scale). The main focus of the Paper being finding( position)common landmarks like signposts, store fronts ,water hydrands etc automatically with high accuracy in a given geographical area
How it works:
- Scours tools like street view to gather images
- Runs off the shelf object detector for finding the landmark
- Finds the position using least squares regression
Applications
Some of the applications by the authors sound really interesting like use in self driving cars to get better position estimates or using to keep track of municipal assets in a city which are being done manually now. Location of hydrants is another great use which may improve the response time for the firefighters, I'm not too sure about how firefighters locate hydrants but feel that the data isn't publicly available. Personally i think that many GPS devices can warn car drivers if they go above the speed limit. The best application i think would be navigation to visually impaired people delivered through wearables
Main Components:
Seed Location Generation: consists of Base Image retrieval (gathering the images from street view), Landmark Detection (detect and localize landmarks) and clustering(grouping of instances of landmarks that are same)
Landmark Localization: consists of Adaptive image retrieval (drills down to find more images of the landmark ) and landmark positioning (to triangulate landmark's position )
Pros:
- Sample at street view's resolution and sample lazily (more sampling only if the object is detected in the first sample). This two phase method helps to reduce the number of images that are sampled
- Location hints to narrow the search space
- False Positives - After identifying object in image, run it on a zoomed version of that image to reduce the false positives
- False Negatives - If object is not detected due to occlusion or poor lighting , ALPS tries to detect object in neighboring images
- Their tests indicate good coverage and accuracy.
Cons:
- ALPS is linked too much with google's street view at this point. As the authors mentions taking images from other sources also helps increase the coverage. The downside to this would be having to run the detector on that many more images
- It takes a significant amount of time to run the object detection
- Even though they were able to lower the number of samples, It still takes time significant time to collect these samples
Comments
Post a Comment