From 1e4a92c71fd7de4b8e5f0feac997f4cca0141630 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=A3x?= <73411031+AnotherUser12@users.noreply.github.com> Date: Sat, 8 Oct 2022 23:08:57 -0400 Subject: [PATCH] Calculate and Report FOV from Calibration Coefficients (#486) --- photon-client/package-lock.json | 6 +- .../src/components/pipeline/3D/MiniMap.vue | 142 +++++++++--------- photon-client/src/views/CamerasView.vue | 24 +++ .../src/views/PipelineViews/ContoursTab.vue | 12 +- .../src/views/PipelineViews/TargetsTab.vue | 5 +- photon-server/lib/apriltag.dll | Bin 0 -> 1495040 bytes 6 files changed, 110 insertions(+), 79 deletions(-) create mode 100644 photon-server/lib/apriltag.dll diff --git a/photon-client/package-lock.json b/photon-client/package-lock.json index 6acf5847f..b3b6a219c 100644 --- a/photon-client/package-lock.json +++ b/photon-client/package-lock.json @@ -19,8 +19,7 @@ "three-full": "^28.0.2", "vue": "^2.6.12", "vue-axios": "^2.1.5", - "vue-native-websocket": "git+https://github.com/PhotonVision/vue-native-websocket.git#5189f29", - "vue-router": "^3.4.3", + "vue-native-websocket": "git+https://github.com/PhotonVision/vue-native-websocket.git#5189f29", "vue-router": "^3.4.3", "vuetify": "^2.3.10", "vuex": "^3.5.1" }, @@ -25271,8 +25270,7 @@ }, "vue-native-websocket": { "version": "git+ssh://git@github.com/PhotonVision/vue-native-websocket.git#7a327918e03b215b6899b0d648c5130ece1fa912", - "from": "vue-native-websocket@git+https://github.com/PhotonVision/vue-native-websocket.git#7a32791" - }, + "from": "vue-native-websocket@git+https://github.com/PhotonVision/vue-native-websocket.git#7a32791" }, "vue-router": { "version": "3.4.3" }, diff --git a/photon-client/src/components/pipeline/3D/MiniMap.vue b/photon-client/src/components/pipeline/3D/MiniMap.vue index 1ea082958..6f6126af9 100644 --- a/photon-client/src/components/pipeline/3D/MiniMap.vue +++ b/photon-client/src/components/pipeline/3D/MiniMap.vue @@ -1,11 +1,14 @@