From c85b45fbe823fa52e0122bb48931ab011e5b26b1 Mon Sep 17 00:00:00 2001 From: Jade Turner Date: Wed, 22 Apr 2026 10:15:33 +0800 Subject: [PATCH] Raise minimum images for calibration We can see on https://mrcal.secretsauce.net/docs-2.0/tour-choreography.html that more images appear to always be better, but diminishing returns kick in around 100 images. This shouldn't be too time consuming as a minimum and should get users the best effort to quality ratio so I think to makes sense as the default. --- photon-client/src/stores/StateStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/photon-client/src/stores/StateStore.ts b/photon-client/src/stores/StateStore.ts index f9650a932b..d3a8edb0a0 100644 --- a/photon-client/src/stores/StateStore.ts +++ b/photon-client/src/stores/StateStore.ts @@ -89,7 +89,7 @@ export const useStateStore = defineStore("state", { calibrationData: { imageCount: 0, videoFormatIndex: 0, - minimumImageCount: 12, + minimumImageCount: 100, hasEnoughImages: false },