Size: 4875
Comment:
|
← Revision 36 as of 2023-02-01 10:44:29 ⇥
Size: 6708
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
(Compiled by DL) | |
Line 4: | Line 3: |
'''Purpose:''' Generates BLEMISH files which mask bad pixels in individual or multiple images. | ||Category B||Version 3.0|| == Description == This program generates BLEMISH files which mask bad pixels in individual or multiple images. |
Line 8: | Line 11: |
=== Requires === | === Required Files === |
Line 10: | Line 13: |
* [[IMAGEFILES]]/ - Directory containing the .DAT file for the image, blemishes displays the image with masking for user inspection, and reads the Digital Number (DN) of pixels of interest. * [[SUMFILES]]/ - Directory containing the SUMFILE for the image to mask, blemishes reads NPX (number of pixels), and NLN (number of lines); * [[INIT_LITHOS]] - blemishes reads the parameter BLEMISH (if it exists), which references any existing template for masking bad pixels common to multiple images. |
* [[IMAGEFILES]]/ - Directory containing the .DAT file for the image; this program displays the image with masking for user inspection, and reads the Digital Number (DN) of pixels of interest. * [[SUMFILES]]/ - Directory containing the SUMFILE for the image to mask; this program reads NPX (number of pixels), and NLN (number of lines); * [[INIT_LITHOS.TXT]] - this program reads the parameter BLEMISH (if it exists), which references any existing template for masking bad pixels common to multiple images. |
Line 15: | Line 18: |
=== Optional === * BLEMISH/PICNM.BLM - Existing image BLEMISH file for deletion or editing. |
=== Optional Files === * BLEMISH/''PICNM''.BLM - Existing image BLEMISH file for deletion or editing. |
Line 18: | Line 21: |
=== Output === * TEMPFILE.pgm - * BLEMISHES/''PICNAME''.BLM - Generated or edited BLEMISH (.BLM) file; |
=== Output Files === * TEMPFILE.pgm - Display of the image with masking applied. * BLEMISHES/''PICNAME''.BLM - Generated or edited BLEMISH (.BLM) file. == User Warnings == ''' /!\ If the PICNM used to make the original blemish file is not consistent with the template, the program will say so and it will STOP. Otherwise, it will create the template file and, if necessary, remind you to define it in INIT_LITHOS.TXT.''' ---------- |
Line 24: | Line 33: |
''(The following section is taken from [[http://sbib.psi.edu/wiki_ext/refman.pdf|SPOC v3.02A PDF]]/LITHOSPHERE/blemishes.f File Reference, rearranged for convenience.)'' | === Initial Inputs === |
Line 28: | Line 38: |
P3T11S2H0409 | P00045000455 |
Line 36: | Line 46: |
There are two kinds of blemish handled here: | Choose the option for the type of blemish you want to work with: |
Line 38: | Line 48: |
The '''block option (b)''' masks a square block of the image specified by a minimum and maximum pixel and line. This type of blemish is typically used for missing or hashy lines due to downlink errors. | The '''b. Block option''' masks a square block of the image specified by a minimum and maximum pixel and line. This type of blemish is typically used for missing or hashy lines due to downlink errors. |
Line 40: | Line 50: |
The '''spot option (s)''' masks a small region around a pixel/line center (p,l) from p-k to p+k and l-k to l+k. An additional input is a brightness threshold. If this is chocen as zero, everything in the spot will be masked. However, if there is a bright blemish such as a cosmic ray hit in the spot, the threshold can be set to remove only the affected pixls. In the latter case, a large region (large k) can be specified and all the bright blemishes in the region masked without affecting the rest of the data. | The '''s. Spot option''' masks a small region around a pixel/line center (p,l) from p-k to p+k and l-k to l+k. An additional input is a brightness threshold (Note: See below for threshold information). If you enter this as zero, everything in the spot will be masked. However, if there is a bright blemish such as a cosmic ray hit in the spot, you can set the threshold to remove only the affected pixels. In this case, you can specify a large region (large k) and all the bright blemishes in that region will be masked without affecting the rest of the data. Here is a sample TEMPFILE.pgm image before masking is applied: |
Line 44: | Line 56: |
=== Block Blemish === | '''Figure 00: Image Prior to Applying Mask''' === Block Blemish Options === |
Line 48: | Line 62: |
512 612 250 350 gc TEMPFILE.pgm |
|
Line 49: | Line 65: |
b. Block s. Spot q. Quit |
|
Line 51: | Line 70: |
* '''pxmn, pxmx:''' must be in the range [1:NPX] (where NPX is the number of pixels in image). * '''lnmn, lnmx:''' must be in the range [1:NLN] (where NLN is the number of lines in image). |
After you choose '''b. Block''' you must specify: |
Line 54: | Line 72: |
=== Spot Blemish === | * '''pxmn, pxmx:''' must be in the range [1:NPX] (where NPX is the number of pixels in image) * '''lnmn, lnmx:''' must be in the range [1:NLN] (where NLN is the number of lines in image) This sample shows the image after block masking was applied: {{attachment:blemTEMPFILE-block-resized.jpg}} '''Figure 00: Image after Applying Blemish Mask''' === Spot Blemish Options === |
Line 58: | Line 85: |
512 250 25 100 gc TEMPFILE.pgm |
|
Line 59: | Line 88: |
b. Block s. Spot q. Quit |
|
Line 61: | Line 93: |
* '''px/ln center:''' Vector with element values in the range ([1:NPX],[1:NLN]) (where NPX is the number of pixels in image, NLN is the number of lines in image). | After you choose '''s. Spot''' you must specify: * '''px/ln center:''' Vector with element values in the range ([1:NPX],[1:NLN]) (where NPX is the number of pixels in image, NLN is the number of lines in image) |
Line 63: | Line 97: |
* '''threshold:''' Digital Number (DN) representing the lowest threshold for brightness in the range, where 0 is dark, and will result in all brightnesses being masked. | * '''threshold:''' Digital Number (DN) representing the lowest threshold for brightness in the range, where 0 is dark, and will result in all brightnesses being masked. Note: The DN within BLEMISHES has been rescaled by 255/(Brightness DN). So if the original DN is 398 and the max is 1410, then the new DN will be 71 because the number is truncated. So if you want to mask 398, you need to enter 70 for the threshold. |
Line 65: | Line 99: |
=== Quit blemishes === | This sample shows the image with spot masking and DN threshold applied: {{attachment:blemTEMPFILE-spot-resized.jpg}} '''Figure 00: Image Displaying Blemish Mask Options''' === Quit Blemishes Option === |
Line 74: | Line 114: |
{{{ Input 12-character picture name P3T11S2H0409 Remove existing blemish file? (y/n) }}} |
After you choose '''q. Quit''' you must specify whether to save the blemish file and whether to create or change a template file. |
Line 82: | Line 119: |
In the event that a camera has bad pixels common to all images, a template can be created that masks these pixels in all that camera's images. The template is specified in the INIT_LITHOS.TXT file with the key word BLEMISH. For example, DAWN has two framing cameras with image names starting with FC1 and FC2. FC2 images all have several blemishes in the same places. A template in INIT_LITHOS specified by BLEMISH='FC2#########' will correct all of these mages without having thousands of individual blemish files. If an image contains additional blemishes it can have its own file with just those additional blemishes. | In the event that a camera has bad pixels common to all images, you can create a template that masks these pixels in all that camera's images. The template is specified in the INIT_LITHOS.TXT file with the key word BLEMISH. |
Line 84: | Line 121: |
In order to create a TEMPLATE, a blemish file for one of the affected images is made with only the common bad areas masked. That file can be saved or not (the procedure will ask: 'Save blemish file? (y/n)'), and then the user will be asked 'Create/change template file? (y/n)'. If 'y' is chosen the user will be asked for a 12 character template name with the common characters of the image names in their proper positions and # everywhere else. If the PICNM used to make the original blemish file is not consistent with the template, the procedure will say so and STOP. Otherwise, it will create the template file and, if necessary, remind the user to define it in INIT_LITHOS.TXT. | For example, DAWN has two framing cameras with image names starting with FC1 and FC2. FC2 images all have several blemishes in the same places. A template in INIT_LITHOS specified by BLEMISH='FC2#########' will correct all of these images without having thousands of individual blemish files. If an image contains additional blemishes it can have its own file with just those additional blemishes. |
Line 86: | Line 123: |
== Output Files == | In order to create a TEMPLATE, you must create a blemish file for one of the affected images with only the common bad areas masked. The procedure will ask: 'Save blemish file? (y/n)' and then 'Create/change template file? (y/n)'. If you enter 'y' and 'y', you will be asked for a 12 character template name with the common characters of the image names in their proper positions and # everywhere else. |
Line 88: | Line 125: |
Example '''P3T11S2H0409.BLM''' file: | ''' /!\ If the PICNM used to make the original blemish file is not consistent with the template, the program will say so and it will STOP. Otherwise, it will create the template file and, if necessary, remind you to define it in INIT_LITHOS.TXT.''' The following samples show this sequence of actions and the output file: |
Line 90: | Line 130: |
Save blemish file? (y/n) y Create/change template file? (y/n) y Input 12 character template P00045###### Add: BLEMISH='P00045######' to INIT_LITHOS.TXT }}} |
|
Line 91: | Line 139: |
Example '''P00045######.BLM''' file: {{{ 488 225 489 225 490 225 etc... 534 275 535 275 536 275 537 275 END |
|
Line 94: | Line 154: |
----- ''(Compiled by DL)'' ''(Updated by JRW)'' Based on [[http://sbib.psi.edu/wiki_ext/refman.pdf|SPOC v3.02A PDF/LITHOSPHERE/blemishes.f File Reference.]] CategoryPrograms |
blemishes
Category B |
Version 3.0 |
Description
This program generates BLEMISH files which mask bad pixels in individual or multiple images.
This procedure creates a blemish (.BLM) file for an image that lives in the BLEMISHES subdirectory.
Required Files
- BLEMISHES/ - Directory containing BLEMISH files for individual images and BLEMISH templates for multiple affected images.
IMAGEFILES/ - Directory containing the .DAT file for the image; this program displays the image with masking for user inspection, and reads the Digital Number (DN) of pixels of interest.
SUMFILES/ - Directory containing the SUMFILE for the image to mask; this program reads NPX (number of pixels), and NLN (number of lines);
INIT_LITHOS.TXT - this program reads the parameter BLEMISH (if it exists), which references any existing template for masking bad pixels common to multiple images.
BLEMISHES/TEMPLATENAME.BLM - template BLEMISH file for each INIT_LITHOS BLEMISH entry.
Optional Files
BLEMISH/PICNM.BLM - Existing image BLEMISH file for deletion or editing.
Output Files
- TEMPFILE.pgm - Display of the image with masking applied.
BLEMISHES/PICNAME.BLM - Generated or edited BLEMISH (.BLM) file.
User Warnings
If the PICNM used to make the original blemish file is not consistent with the template, the program will say so and it will STOP. Otherwise, it will create the template file and, if necessary, remind you to define it in INIT_LITHOS.TXT.
Using blemishes
Initial Inputs
Input 12-character picture name P00045000455 gc TEMPFILE.pgm b. Block s. Spot q. Quit
Choose the option for the type of blemish you want to work with:
The b. Block option masks a square block of the image specified by a minimum and maximum pixel and line. This type of blemish is typically used for missing or hashy lines due to downlink errors.
The s. Spot option masks a small region around a pixel/line center (p,l) from p-k to p+k and l-k to l+k. An additional input is a brightness threshold (Note: See below for threshold information). If you enter this as zero, everything in the spot will be masked. However, if there is a bright blemish such as a cosmic ray hit in the spot, you can set the threshold to remove only the affected pixels. In this case, you can specify a large region (large k) and all the bright blemishes in that region will be masked without affecting the rest of the data.
Here is a sample TEMPFILE.pgm image before masking is applied:
Figure 00: Image Prior to Applying Mask
Block Blemish Options
Input pxmn, pxmx, lnmn, lnmx 512 612 250 350 gc TEMPFILE.pgm b. Block s. Spot q. Quit
After you choose b. Block you must specify:
pxmn, pxmx: must be in the range [1:NPX] (where NPX is the number of pixels in image)
lnmn, lnmx: must be in the range [1:NLN] (where NLN is the number of lines in image)
This sample shows the image after block masking was applied:
Figure 00: Image after Applying Blemish Mask
Spot Blemish Options
Input bad px/ln center, half-size. threshold. 512 250 25 100 gc TEMPFILE.pgm b. Block s. Spot q. Quit
After you choose s. Spot you must specify:
px/ln center: Vector with element values in the range ([1:NPX],[1:NLN]) (where NPX is the number of pixels in image, NLN is the number of lines in image)
half-size: Half-size of masked area in pixels, e.g. a half-size of 2 will result in a masked area of 4 pixels x 4 pixels.
threshold: Digital Number (DN) representing the lowest threshold for brightness in the range, where 0 is dark, and will result in all brightnesses being masked. Note: The DN within BLEMISHES has been rescaled by 255/(Brightness DN). So if the original DN is 398 and the max is 1410, then the new DN will be 71 because the number is truncated. So if you want to mask 398, you need to enter 70 for the threshold.
This sample shows the image with spot masking and DN threshold applied:
Figure 00: Image Displaying Blemish Mask Options
Quit Blemishes Option
Save blemish file? (y/n) y Create/change template file? (y/n) n
After you choose q. Quit you must specify whether to save the blemish file and whether to create or change a template file.
BLEMISH Templates
In the event that a camera has bad pixels common to all images, you can create a template that masks these pixels in all that camera's images. The template is specified in the INIT_LITHOS.TXT file with the key word BLEMISH.
- For example, DAWN has two framing cameras with image names starting with FC1 and FC2. FC2 images all have several blemishes in the same places. A template in INIT_LITHOS specified by BLEMISH='FC2#########' will correct all of these images without having thousands of individual blemish files. If an image contains additional blemishes it can have its own file with just those additional blemishes.
In order to create a TEMPLATE, you must create a blemish file for one of the affected images with only the common bad areas masked. The procedure will ask: 'Save blemish file? (y/n)' and then 'Create/change template file? (y/n)'. If you enter 'y' and 'y', you will be asked for a 12 character template name with the common characters of the image names in their proper positions and # everywhere else.
If the PICNM used to make the original blemish file is not consistent with the template, the program will say so and it will STOP. Otherwise, it will create the template file and, if necessary, remind you to define it in INIT_LITHOS.TXT.
The following samples show this sequence of actions and the output file:
Save blemish file? (y/n) y Create/change template file? (y/n) y Input 12 character template P00045###### Add: BLEMISH='P00045######' to INIT_LITHOS.TXT
Example P00045######.BLM file:
488 225 489 225 490 225 etc... 534 275 535 275 536 275 537 275 END
The BLEMISH file contains a list of pixel/line locations to be masked, appended with the end-of-file identifier, 'END'.
(Compiled by DL) (Updated by JRW)
Based on SPOC v3.02A PDF/LITHOSPHERE/blemishes.f File Reference.