CImage:SubDarkFrame CImage:SubDarkScaled

CImage:SubDarkOpt


The SubDarkOpt method corrects the thermal image signature by subtracting a statistically scaled dark frame from the current image. The scaling and subtraction are iterated until the random noise is minimized in the corrected image. The result replaces the current image.

Syntax

bResult = CImage:SubDarkOpt( Dark, datatype=nil )

    Dark is the CImage containing the thermal dark frame.

    The optional datatype specifies the output data type as a number or string.

    On success, this method returns true.

    On failure, false. is returned.

Remarks

This method adjusts the dark frame signal level by iteratively adjusting its signal level to minimize the residual noise after dark subtraction. The image header is automatically updated with the appropriate history and other keywords.

The data type of the image may be changed as part of the correction, for example, to increase the precision of the dark correction. Mira automatically handles mixing different data types between the source image and the dark frame.

Example

The following script fragment loads an image and subtracts an optimized dark frame. The output data type is changed to "float" to maintain precision of the correction process. In practice you might maintain the dark frame in memory across a loop to process many images:

 

I = CImage:new()

-- create a new CImage

I:Open( sPath )

-- load the image from file sPath

Dark = CImage:new()

-- create a new CImage

Dark:Open( sDarkName )

-- load the dark frame from sDarkName

I:SubDarkOpt(Dark,"float")

-- remove the dark frame from image I

I:Save()

 -- save the correct image

I:delete()

 -- remove the image from memory

Dark:delete()

 -- remove the thermal frame from memory

Related Topics

CImage, SubDarkFrame, SubDarkScaled