mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-24 01:31:44 +00:00
* Serialize all calibration data * Run lint * typing nit * fix code * move these tables around some * Add cool formatting * add request to get snapshots by resolution and camera * re-enable all resolutions * add wip so i can change computers (SQUASH ME AND KILL ME AHHHH) * Get everything working but viewing snapshots * Update RequestHandler.java * Update CameraCalibrationInfoCard.vue * Update CameraCalibrationInfoCard.vue * add observation viewer * round * fix illiegal import * Swap to PNG and serialize insolution * move import/export buttons TO THE TOP * Update WebsocketDataTypes.ts * Add snapshotname to observation * Refactor to serialize snapshot image itself * Run lint * Use new base64 image data in info card * Update SettingTypes.ts * Create calibration json -> mrcal converter script * Update calibrationUtils.py * Fix calibrate NPEs in teest * Run lint * Always run cornersubpix * Update CameraCalibrationInfoCard.vue Update CameraCalibrationInfoCard.vue * Update OpenCVHelp.java * Update OpenCVHelp.java * Replace test mode camera JSONs * Run wpiformat * Revert intrinsics but keep other data * Remove misc comments * Rename JsonMat->JsonImageMat and add calobject_warp * Update Server.java * Rename cameraExtrinsics to distCoeffs * fix typing issues * use util methods * Formatting fixes * fix styling * move to devTools * remove unneeded or unused imports * Remove fixed-right css If its really that big of a deal, we can add it back later, kind of a drag to fix rn. * Create util method * Remove extra legacy calibration things --------- Co-authored-by: Sriman Achanta <68172138+srimanachanta@users.noreply.github.com>
173 lines
4.8 KiB
Vue
173 lines
4.8 KiB
Vue
<script setup lang="ts">
|
|
import PhotonCameraStream from "@/components/app/photon-camera-stream.vue";
|
|
import { computed } from "vue";
|
|
import { useCameraSettingsStore } from "@/stores/settings/CameraSettingsStore";
|
|
import { PipelineType } from "@/types/PipelineTypes";
|
|
import { useStateStore } from "@/stores/StateStore";
|
|
import { useSettingsStore } from "@/stores/settings/GeneralSettingsStore";
|
|
|
|
const props = defineProps<{
|
|
// TODO fully update v-model usage in custom components on Vue3 update
|
|
value: number[];
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(e: "input", value: number[]): void;
|
|
}>();
|
|
|
|
const localValue = computed({
|
|
get: () => props.value,
|
|
set: (v) => emit("input", v)
|
|
});
|
|
|
|
const driverMode = computed<boolean>({
|
|
get: () => useCameraSettingsStore().isDriverMode,
|
|
set: (v) =>
|
|
useCameraSettingsStore().changeCurrentPipelineIndex(
|
|
v ? -1 : useCameraSettingsStore().currentCameraSettings.lastPipelineIndex || 0,
|
|
true
|
|
)
|
|
});
|
|
|
|
const fpsTooLow = computed<boolean>(() => {
|
|
const currFPS = useStateStore().currentPipelineResults?.fps || 0;
|
|
const targetFPS = useCameraSettingsStore().currentVideoFormat.fps;
|
|
const driverMode = useCameraSettingsStore().isDriverMode;
|
|
const gpuAccel = useSettingsStore().general.gpuAcceleration !== undefined;
|
|
const isReflective = useCameraSettingsStore().currentPipelineSettings.pipelineType === PipelineType.Reflective;
|
|
|
|
return currFPS - targetFPS < -5 && currFPS !== 0 && !driverMode && gpuAccel && isReflective;
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<v-card
|
|
id="camera-settings-camera-view-card"
|
|
class="camera-settings-camera-view-card mb-3 pb-3 pa-4"
|
|
color="primary"
|
|
dark
|
|
>
|
|
<v-card-title
|
|
class="pb-0 mb-2 pl-4 pt-1"
|
|
style="min-height: 50px; justify-content: space-between; align-content: center"
|
|
>
|
|
<div style="display: flex; flex-wrap: wrap">
|
|
<div>
|
|
<span class="mr-4" style="white-space: nowrap"> Cameras </span>
|
|
</div>
|
|
<div>
|
|
<v-chip
|
|
label
|
|
:color="fpsTooLow ? 'error' : 'transparent'"
|
|
:text-color="fpsTooLow ? '#C7EA46' : '#ff4d00'"
|
|
style="font-size: 1rem; padding: 0; margin: 0"
|
|
>
|
|
<span class="pr-1">
|
|
{{ Math.round(useStateStore().currentPipelineResults?.fps || 0) }} FPS –
|
|
{{ Math.min(Math.round(useStateStore().currentPipelineResults?.latency || 0), 9999) }} ms latency
|
|
</span>
|
|
</v-chip>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<v-switch
|
|
v-model="driverMode"
|
|
:disabled="useCameraSettingsStore().isCalibrationMode || useCameraSettingsStore().pipelineNames.length === 0"
|
|
label="Driver Mode"
|
|
style="margin-left: auto"
|
|
color="accent"
|
|
class="pt-2"
|
|
/>
|
|
</div>
|
|
</v-card-title>
|
|
<div class="stream-container pb-4">
|
|
<div class="stream">
|
|
<photon-camera-stream
|
|
v-show="value.includes(0)"
|
|
id="input-camera-stream"
|
|
stream-type="Raw"
|
|
style="max-width: 100%"
|
|
/>
|
|
</div>
|
|
<div class="stream">
|
|
<photon-camera-stream
|
|
v-show="value.includes(1)"
|
|
id="output-camera-stream"
|
|
stream-type="Processed"
|
|
style="max-width: 100%"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<v-divider />
|
|
<div class="pt-4">
|
|
<p style="color: white">Stream Display</p>
|
|
<v-btn-toggle v-model="localValue" :multiple="true" mandatory dark class="fill" style="width: 100%">
|
|
<v-btn
|
|
color="secondary"
|
|
class="fill"
|
|
:disabled="useCameraSettingsStore().isDriverMode || useCameraSettingsStore().isCalibrationMode"
|
|
>
|
|
<v-icon left class="mode-btn-icon">mdi-import</v-icon>
|
|
<span class="mode-btn-label">Raw</span>
|
|
</v-btn>
|
|
<v-btn
|
|
color="secondary"
|
|
class="fill"
|
|
:disabled="useCameraSettingsStore().isDriverMode || useCameraSettingsStore().isCalibrationMode"
|
|
>
|
|
<v-icon left class="mode-btn-icon">mdi-export</v-icon>
|
|
<span class="mode-btn-label">Processed</span>
|
|
</v-btn>
|
|
</v-btn-toggle>
|
|
</div>
|
|
</v-card>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.v-btn-toggle.fill {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.v-btn-toggle.fill > .v-btn {
|
|
width: 50%;
|
|
height: 100%;
|
|
}
|
|
th {
|
|
width: 80px;
|
|
text-align: center;
|
|
}
|
|
|
|
.stream-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.stream {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
@media only screen and (min-width: 512px) and (max-width: 960px) {
|
|
.stream-container {
|
|
flex-wrap: nowrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.stream {
|
|
max-width: 50%;
|
|
}
|
|
}
|
|
@media only screen and (max-width: 351px) {
|
|
.mode-btn-icon {
|
|
margin: 0 !important;
|
|
}
|
|
.mode-btn-label {
|
|
display: none;
|
|
}
|
|
}
|
|
</style>
|