Skip to content

Commit

Permalink
Update CameraCalibrationInfoCard.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
mcm001 committed Dec 31, 2023
1 parent 4c167f1 commit fa94233
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,13 +188,13 @@ const importCalibration = async (payload: JSONFileUploadEvent) => {
<thead>
<tr>
<th class="text-left">Observation Id</th>
<th class="text-left">Mean Reprojection Error</th>
<th class="text-left">Mean Reprojection Error, px</th>
</tr>
</thead>
<tbody>
<tr v-for="(observation, index) of getCalibrationCoeffs()?.observations" :key="index">
<td>{{ index }}</td>
<td>{{ getMeanFromView(observation) }}</td>
<td>{{ getMeanFromView(observation).toFixed(3) }}</td>
</tr>
</tbody>
</template>
Expand Down

0 comments on commit fa94233

Please sign in to comment.