UV photos - Wish from LarsHP Increased green (tint) value from 10 to 100 (#7043)

* Change limits green to 40 instead of 10

* Publish uvgreen in pre-dev appimage.yml windows.yml

* Change range setLogScale

* Revert change to observer 2 - format

* Set maxgreen 60

* Set maxgreen 100 and minequal 0.5 maxequal 1.8

* Set maxgreen 1000 minequal 0.4 maxequal 2.5

* Set maxgreen 100 minequal 0.5 maxequal 2
This commit is contained in:
Desmis 2024-04-20 17:11:31 +02:00 committed by GitHub
parent 46531c7eca
commit 30cf3f721f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 10 additions and 10 deletions

View File

@ -17,6 +17,7 @@ on:
env:
publish_pre_dev_labels: '[]'
jobs:
build:
runs-on: windows-latest

View File

@ -32,7 +32,6 @@
namespace rtengine
{
static const color_match_type cie_colour_match_jd2 = {//350nm to 830nm 5 nm J.Desmis 2° Standard Observer.
{0.0000000, 0.000000, 0.000000}, {0.0000000, 0.000000, 0.000000}, {0.0001299, 0.0003917, 0.0006061},
{0.0002321, 0.000006965, 0.001086}, {0.0004149, 0.00001239, 0.001946}, {0.0007416, 0.00002202, 0.003846},

View File

@ -31,9 +31,9 @@ using color_match_type = double [97][3];
constexpr double MINTEMP = 1500.0;
constexpr double MAXTEMP = 60000.0;
constexpr double MINGREEN = 0.02;
constexpr double MAXGREEN = 10.0;
constexpr double MINEQUAL = 0.8;
constexpr double MAXEQUAL = 1.5;
constexpr double MAXGREEN = 100.0;
constexpr double MINEQUAL = 0.5;
constexpr double MAXEQUAL = 2.;
constexpr double INITIALBLACKBODY = 4000.0;
enum class StandardObserver {

View File

@ -31,9 +31,9 @@
#define MAXTEMP 60000 //12000
#define CENTERTEMP 4750
#define MINGREEN 0.02
#define MAXGREEN 10.0
#define MINEQUAL 0.8
#define MAXEQUAL 1.5
#define MAXGREEN 100.0
#define MINEQUAL 0.5
#define MAXEQUAL 2.
using namespace rtengine;
using namespace rtengine::procparams;
@ -396,7 +396,7 @@ WhiteBalance::WhiteBalance () : FoldableToolPanel(this, TOOL_NAME, M("TP_WBALANC
pack_start(*StudLabel);
pack_start(*PatchLabel);
pack_start(*PatchlevelLabel);
green->setLogScale(MAXGREEN / MINGREEN, MINGREEN);
pack_start (*temp);
//pack_start (*boxgreen);
pack_start (*green);