(overrides: Partial<ImageStats> = {})
| 134 | } |
| 135 | |
| 136 | export function buildImageStats(overrides: Partial<ImageStats> = {}): ImageStats { |
| 137 | return { |
| 138 | numPoints3D: 0, |
| 139 | avgError: 0, |
| 140 | covisibleCount: 0, |
| 141 | ...overrides, |
| 142 | }; |
| 143 | } |
| 144 | |
| 145 | export function buildGlobalStats(overrides: Partial<GlobalStats> = {}): GlobalStats { |
| 146 | return { |
no outgoing calls