19 lines
547 B
Vue
19 lines
547 B
Vue
<template>
|
|
<div>
|
|
<p>
|
|
<b> Before starting camera calibration: </b>
|
|
</p>
|
|
<ul class="uk-list uk-list-bullet">
|
|
<li>Insert a slide.</li>
|
|
<li>Move your slide to an empty area, ideally looking through the coverslip if your slide has one.</li>
|
|
<li>If your slide has no empty areas, remove it and instead calibrate with no sample.</li>
|
|
<li>Ensure your illumination is on, well focused, and centred.</li>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "CamCalibrationExplanation",
|
|
};
|
|
</script>
|