| 451 | } |
| 452 | |
| 453 | const class Image* DatabaseCache::FindImageWithName( |
| 454 | const std::string& name) const { |
| 455 | for (const auto& image : images_) { |
| 456 | if (image.second.Name() == name) { |
| 457 | return &image.second; |
| 458 | } |
| 459 | } |
| 460 | return nullptr; |
| 461 | } |
| 462 | |
| 463 | void DatabaseCache::ConvertPosePriorsToENU() { |
| 464 | bool prior_is_gps = true; |
nothing calls this directly
no outgoing calls
no test coverage detected