Reply to thread

Hi [USER=157993]@Freshage[/USER],


Best to attach the config as well but we can already try the following things to debug:


- For more accurate colors can increase gamma value per color and for brighter / vibrant colors the saturation gain (although it might look less natural with the latter):


[code]

        "id"  : "default",

         "leds" : "*",

         "hsv" :

         {

           "saturationGain" : 1.0000,

           "valueGain"  : 1.0000

         },

         "red" :

         {

           "threshold"  : 0.0000,

           "gamma"  : 2.2000,

           "blacklevel" : 0.0000,

           "whitelevel" : 1.0000

         },

         "green" :

         {

           "threshold"  : 0.0000,

           "gamma"  : 2.2000,

           "blacklevel" : 0.0000,

           "whitelevel" : 1.0000

         },

         "blue" :

         {

           "threshold"  : 0.0000,

           "gamma"  : 2.2000,

           "blacklevel" : 0.0000,

           "whitelevel" : 1.0000

         }

[/code]


- For live capture it depends on which hardware and input as analog converters can have different RGB values, best to try different settings in the following config area:


[code] 

"redSignalThreshold" : 0.4,

"greenSignalThreshold" : 0.2,

"blueSignalThreshold" : 1.0

[/code]


Easiest way to find the right values is by using the hyperion-v4l2 in a SSH session with a default 0.0 threshold and crop where needed look at the generated screenshot afterwards:


[code]

hyperion-v4l2 --crop-top 0 --crop-bottom 0 --crop-left 0 --crop-right 0 --size-decimator 4 --frame-decimator 2 --red-threshold 0.0 --green-threshold 0.0 --blue-threshold 0.0 --screenshot

[/code]


- Make sure you get the latest HyperCon version from here and would use the default horizontal and vertical % as that works best with most setups and is a good starting point, also the new black bar detector will be used if you generate a new config file with it (more accurate and faster).

Can also try with black bar detector disabled just in case :)


Top Bottom