| 147 | } |
| 148 | |
| 149 | ConsistencyGraph PatchMatch::GetConsistencyGraph() const { |
| 150 | const auto& ref_image = problem_.images->at(problem_.ref_image_idx); |
| 151 | return ConsistencyGraph(ref_image.GetWidth(), |
| 152 | ref_image.GetHeight(), |
| 153 | patch_match_cuda_->GetConsistentImageIdxs()); |
| 154 | } |
| 155 | |
| 156 | PatchMatchController::PatchMatchController( |
| 157 | const PatchMatchOptions& options, |
no test coverage detected