From 1a8ed080310658b2511b4bbb920665851a7ed5f5 Mon Sep 17 00:00:00 2001 From: michael Date: Thu, 15 Feb 2024 23:07:22 +0100 Subject: [PATCH 1/2] Update edit_reference.html --- sd-card/html/edit_reference.html | 50 ++++++++++++++++++++------------ 1 file changed, 32 insertions(+), 18 deletions(-) diff --git a/sd-card/html/edit_reference.html b/sd-card/html/edit_reference.html index 47c1006a4..4cbea9fa1 100644 --- a/sd-card/html/edit_reference.html +++ b/sd-card/html/edit_reference.html @@ -174,12 +174,12 @@

Reference Image and Camera Settings

- + $TOOLTIP_TakeImage_Zoom - @@ -189,7 +189,7 @@

Reference Image and Camera Settings

- @@ -197,7 +197,7 @@

Reference Image and Camera Settings

- @@ -207,13 +207,13 @@

Reference Image and Camera Settings

- + $TOOLTIP_Alignment_InitialMirror LED intensity: *) - @@ -223,13 +223,14 @@

Reference Image and Camera Settings

- + $TOOLTIP_Alignment_FlipImageSize Brightness: *) - + 0 $TOOLTIP_TakeImage_Brightness @@ -237,7 +238,7 @@

Reference Image and Camera Settings

- degree @@ -246,7 +247,8 @@

Reference Image and Camera Settings

Contrast: *) - + 0 $TOOLTIP_TakeImage_Contrast @@ -254,7 +256,7 @@

Reference Image and Camera Settings

- degree @@ -263,7 +265,8 @@

Reference Image and Camera Settings

Saturation: *) - + 0 $TOOLTIP_TakeImage_Saturation @@ -272,25 +275,26 @@

Reference Image and Camera Settings

- + $TOOLTIP_TakeImage_Grayscale - + $TOOLTIP_TakeImage_Aec2 - + $TOOLTIP_TakeImage_Negative Auto Exposure Level: *) - + 0 $TOOLTIP_TakeImage_AutoExposureLevel @@ -299,13 +303,14 @@

Reference Image and Camera Settings

- + $TOOLTIP_TakeImage_FixedExposure Sharpness: *) - + 0 $TOOLTIP_TakeImage_Sharpness @@ -357,6 +362,15 @@

Reference Image and Camera Settings

} } + function changeSettingValue() { + document.getElementById("savereferenceimage").disabled = true; + } + + function changeSettingValueDR() { + document.getElementById("savereferenceimage").disabled = true; + drawRotated(); + } + // Create New Reference, Update Image function doTakeReference(){ document.getElementById("overlay").style.display = "block"; From 7b0a8932a7d8c97412d3088cd32c62c507c6b771 Mon Sep 17 00:00:00 2001 From: michael Date: Fri, 16 Feb 2024 00:00:35 +0100 Subject: [PATCH 2/2] Update edit_reference.html cameraParameterChanged cameraParameterChangedDR --- sd-card/html/edit_reference.html | 40 ++++++++++++++++---------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/sd-card/html/edit_reference.html b/sd-card/html/edit_reference.html index 4cbea9fa1..84efe305b 100644 --- a/sd-card/html/edit_reference.html +++ b/sd-card/html/edit_reference.html @@ -174,12 +174,12 @@

Reference Image and Camera Settings

- + $TOOLTIP_TakeImage_Zoom - @@ -189,7 +189,7 @@

Reference Image and Camera Settings

- @@ -197,7 +197,7 @@

Reference Image and Camera Settings

- @@ -207,13 +207,13 @@

Reference Image and Camera Settings

- + $TOOLTIP_Alignment_InitialMirror LED intensity: *) - @@ -223,13 +223,13 @@

Reference Image and Camera Settings

- + $TOOLTIP_Alignment_FlipImageSize Brightness: *) - 0 @@ -238,7 +238,7 @@

Reference Image and Camera Settings

- degree @@ -247,7 +247,7 @@

Reference Image and Camera Settings

Contrast: *) - 0 @@ -256,7 +256,7 @@

Reference Image and Camera Settings

- degree @@ -265,7 +265,7 @@

Reference Image and Camera Settings

Saturation: *) - 0 @@ -275,25 +275,25 @@

Reference Image and Camera Settings

- + $TOOLTIP_TakeImage_Grayscale - + $TOOLTIP_TakeImage_Aec2 - + $TOOLTIP_TakeImage_Negative Auto Exposure Level: *) - 0 @@ -303,13 +303,13 @@

Reference Image and Camera Settings

- + $TOOLTIP_TakeImage_FixedExposure Sharpness: *) - 0 @@ -362,11 +362,11 @@

Reference Image and Camera Settings

} } - function changeSettingValue() { + function cameraParameterChanged() { document.getElementById("savereferenceimage").disabled = true; } - function changeSettingValueDR() { + function cameraParameterChangedDR() { document.getElementById("savereferenceimage").disabled = true; drawRotated(); }