From e2dc7eb11309dac78c5feb1f82f3b7b5ee4534d7 Mon Sep 17 00:00:00 2001 From: Aaron Ge Date: Mon, 26 Feb 2024 17:15:21 -0500 Subject: [PATCH] Updated determination of marker cores to be 1.5 x the radius --- drawCanvas.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drawCanvas.js b/drawCanvas.js index c603d8a..08d4122 100644 --- a/drawCanvas.js +++ b/drawCanvas.js @@ -1459,7 +1459,7 @@ function flagMisalignedCores(coresData, imageRotation, checkMarker = false) { !Object.keys(medianRotatedXValues).some( (col) => Math.abs(medianRotatedXValues[col] - rotatedX) < - 1.25 * core.currentRadius + 1.5 * core.currentRadius ) ) { core.row = -1;