Overscan calibration script
Posted: 11 Dec 2018, 15:52
I am interested in adding an Overscan calibration function to my imaging script. It is easy to read the overscan mean inside a downloaded image which includes the overscan area. The following script can do the job :
Sub overscan_avg (xmin,xmax,ymin,ymax) ' Measure Overscan mean
oN=0 ' Pixel count
ovscAVG=0 ' Overscan mean value
for ox=xmin to xmax
for oy=ymin to ymax
ovscAVG=ovscAVG+Image.GetPixel(ox,oy)
oN=oN+1
next oy
next ox
ovscAVG=ovscAVG/oN
endsub
The number of pixels to be read is normally limited to a few thousands and the script is fast enough.
Now the problem I am facing is to update each single pixel in the image area subtracting the overscan mean just calculated in order to get an overscan calbrated image. Another subroutine can do the job:
Sub subtract_ovsc (x,y) ' Subtract overscan mean (+fixed offset)
for oix=1 to x
for oiy=1 to y
print oix, oiy
pxvalue=Image.GetPixel(oix,oiy)
pxvalue=pxvalue-ovscAVG+ovscOFFSET
Image.SetPixel(oix,oiy,pxvalue)
next oiy
next oix
Image.Update
endsub
But now the number of pixels are millions (10 millions for me) and the routine takes minutes to be completed being absolutely unusable in a full automatic imaging script.
Any idea or suggestion?
Is it possible to have a new script command capable of adding/subtracting a calculated value to the current image in a very fast way, like the native command present in tha Astroart Math menu?
Thanks
Emilio
Sub overscan_avg (xmin,xmax,ymin,ymax) ' Measure Overscan mean
oN=0 ' Pixel count
ovscAVG=0 ' Overscan mean value
for ox=xmin to xmax
for oy=ymin to ymax
ovscAVG=ovscAVG+Image.GetPixel(ox,oy)
oN=oN+1
next oy
next ox
ovscAVG=ovscAVG/oN
endsub
The number of pixels to be read is normally limited to a few thousands and the script is fast enough.
Now the problem I am facing is to update each single pixel in the image area subtracting the overscan mean just calculated in order to get an overscan calbrated image. Another subroutine can do the job:
Sub subtract_ovsc (x,y) ' Subtract overscan mean (+fixed offset)
for oix=1 to x
for oiy=1 to y
print oix, oiy
pxvalue=Image.GetPixel(oix,oiy)
pxvalue=pxvalue-ovscAVG+ovscOFFSET
Image.SetPixel(oix,oiy,pxvalue)
next oiy
next oix
Image.Update
endsub
But now the number of pixels are millions (10 millions for me) and the routine takes minutes to be completed being absolutely unusable in a full automatic imaging script.
Any idea or suggestion?
Is it possible to have a new script command capable of adding/subtracting a calculated value to the current image in a very fast way, like the native command present in tha Astroart Math menu?
Thanks
Emilio