19 lines
378 B
Vue
19 lines
378 B
Vue
<template>
|
|
<div>
|
|
<p>
|
|
<b>
|
|
Before starting camera calibration:
|
|
</b>
|
|
</p>
|
|
<ul class="uk-list uk-list-bullet">
|
|
<li>Remove any samples from your microscope</li>
|
|
<li>Ensure your illumination is on, well focused, and centred.</li>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "CamCalibrationExplanation",
|
|
};
|
|
</script>
|