CSM settings hidden by default in a details section

This commit is contained in:
jaknapper 2025-05-21 15:56:04 +01:00
parent 8799ebbaab
commit b66912ac8f

View file

@ -26,9 +26,16 @@
> >
Download calibration data Download calibration data
</button> </button>
<p v-if="this.csmMatrix!='undefined'">Current CSM matrix: {{ csmMatrix }} at a resolution of {{ csmResolution }} <br> <div v-if="this.csmMatrix!='undefined'" style="margin:10px;">
This means that one motor step is roughly {{ csmRatio }} pixels <br> <details><summary>Calibration Details</summary>
The full field of view is roughly {{ csmFOV }} motor steps</p> <strong>CSM calculated for images with a resolution of {{ csmResolution }}</strong>
<ul>
<li>Current CSM Matrix: <tt>{{ csmMatrix }}</tt></li>
<li>Pixels per motor step: {{ csmRatio }}</li>
<li>Full field of view: {{ csmFOV }} motor steps</li>
</ul>
</details>
</div>
</div> </div>
</template> </template>