Gains used in sensor analysis

Somewhere to ask questions about the best way to use SharpCap
Forum rules


If you have a problem or question, please check the FAQ to see if it already has an answer : https://www.sharpcap.co.uk/sharpcap-faqs
Post Reply
CakeInterface
Posts: 1
Joined: Tue Mar 12, 2024 4:18 pm

Gains used in sensor analysis

#1

Post by CakeInterface »

Hi there,

I'm doing sensor analysis on a Touptek/Risingcam camera.

Sharpcap is using what appear to be arbitrary gain values to do the analysis. These seem to change depending on whether I use the ASCOM or built in driver.

I wish to use my own gain values, in order to get a better understanding of the sensors responses.

I've tries searching the ASCOM driver and Sharpcap folders, but can find no way to change the gains.

Am I missing something?
User avatar
admin
Site Admin
Posts: 13347
Joined: Sat Feb 11, 2017 3:52 pm
Location: Vale of the White Horse, UK
Contact:

Re: Gains used in sensor analysis

#2

Post by admin »

Hi,

SharpCap will try to use a roughly equally spaced range of gains when analyzing the camera - the number and spacing would depend on the total gain range of the camera. For instance gains of 100, 300, 1000, 3000, 10000, 30000 might be used. SharpCap will then potentially add to that list any gains that might be 'of significance' - ie the point where the camera switches from LCG to HCG mode. You can add your own gains using the Python scripting tool before running the analysis, but cannot delete/remove any of the gains that SharpCap has decided on. In the python scripting window, run a command like this after opening the camera but before running the analysis. The example given will add data points at gains 200,250 and 280.

Code: Select all

SharpCap.SelectedCamera.SetGainsOfInterestForSensorAnalysis([200,250,280])
When using the direct SDK option to control these cameras in SharpCap, the gain value is an indication of how much brighter the gain is making the image than the 'default' (minimum gain) brightness. 200 is 2x brighter, 500 is 5x brighter, etc. The ASCOM driver may present the gain value in a different way and so give different values.

cheers,

Robin
Post Reply