(img: Image)
| 37 | const lines: string[] = []; |
| 38 | |
| 39 | const getPoints2D = (img: Image): Point2D[] => { |
| 40 | if (img.points2D.length > 0) return img.points2D; |
| 41 | if (wasmReconstruction) { |
| 42 | return wasmReconstruction.getImagePoints2DArray(img.imageId); |
| 43 | } |
| 44 | return []; |
| 45 | }; |
| 46 | |
| 47 | let totalObs = 0; |
| 48 | for (const img of images.values()) { |
no test coverage detected