2023-08-21 01:51:35 -04:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { computed } from "vue";
|
|
|
|
|
import type { PhotonTarget } from "@/types/PhotonTrackingTypes";
|
|
|
|
|
import { useStateStore } from "@/stores/StateStore";
|
|
|
|
|
import Photon3dVisualizer from "@/components/app/photon-3d-visualizer.vue";
|
|
|
|
|
|
2023-10-17 10:20:00 -04:00
|
|
|
const trackedTargets = computed<PhotonTarget[]>(() => useStateStore().currentPipelineResults?.targets || []);
|
2023-08-21 01:51:35 -04:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<v-row style="width: 100%">
|
|
|
|
|
<v-col>
|
|
|
|
|
<span class="white--text">Target Visualization</span>
|
|
|
|
|
</v-col>
|
|
|
|
|
</v-row>
|
|
|
|
|
<v-row style="width: 100%">
|
|
|
|
|
<v-col style="display: flex; align-items: center; justify-content: center">
|
2023-08-31 16:56:58 -04:00
|
|
|
<photon3d-visualizer :targets="trackedTargets" />
|
2023-08-21 01:51:35 -04:00
|
|
|
</v-col>
|
|
|
|
|
</v-row>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|