mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-30 02:31:40 +00:00
Raise minimum images for calibration to 100 (#2437)
This commit is contained in:
@@ -40,8 +40,6 @@ interface StateStore {
|
||||
calibrationData: {
|
||||
imageCount: number;
|
||||
videoFormatIndex: number;
|
||||
minimumImageCount: number;
|
||||
hasEnoughImages: boolean;
|
||||
};
|
||||
|
||||
snackbarData: {
|
||||
@@ -89,9 +87,7 @@ export const useStateStore = defineStore("state", {
|
||||
|
||||
calibrationData: {
|
||||
imageCount: 0,
|
||||
videoFormatIndex: 0,
|
||||
minimumImageCount: 12,
|
||||
hasEnoughImages: false
|
||||
videoFormatIndex: 0
|
||||
},
|
||||
|
||||
snackbarData: {
|
||||
@@ -162,9 +158,7 @@ export const useStateStore = defineStore("state", {
|
||||
updateCalibrationStateValuesFromWebsocket(data: WebsocketCalibrationData) {
|
||||
this.calibrationData = {
|
||||
imageCount: data.count,
|
||||
videoFormatIndex: data.videoModeIndex,
|
||||
minimumImageCount: data.minCount,
|
||||
hasEnoughImages: data.hasEnough
|
||||
videoFormatIndex: data.videoModeIndex
|
||||
};
|
||||
},
|
||||
updateDiscoveredCameras(data: VsmState) {
|
||||
|
||||
Reference in New Issue
Block a user