Differences between revisions 10 and 12 (spanning 2 versions)
Revision 10 as of 2016-01-19 10:03:23
Size: 3014
Editor: DianeLambert
Comment:
Revision 12 as of 2016-01-19 10:08:04
Size: 3096
Editor: DianeLambert
Comment:
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
 * [[make_scriptAP.seed]] - text file containing the [[autoregisterP]] option commands for batch registering images.  * [[make_scriptA.seed]] - text file containing the [[autoregisterP]] option commands for batch registering images.
Line 23: Line 23:
 * rem_script.b - script for removal of temporary files (working directory clean-up)
Line 43: Line 44:
Example '''make_scriptAP.seed''' file (see [[make_scriptAP.seed]] for further details): Example '''make_scriptA.seed''' file (see [[make_scriptA.seed]] for further details):
Line 64: Line 65:
make_scriptAP generates a .INN file for each image (the image filename appended with the autoregisterP options contained in the make_scriptAP.seed file. Example '''P00045000450.INN''' file: make_scriptAP generates a .INN file for each image (the image filename appended with the autoregisterP options contained in the make_scriptA.seed file. Example '''P00045000450.INN''' file:

make_scriptAP

(Compiled by DL)

Purpose: Generates the run script and .INN files required to batch autoregister new images using parallel processing.

Requires

  • make_script.in - text file containing the names of the images to batch autoregister.
  • make_scriptA.seed - text file containing the autoregisterP option commands for batch registering images.

  • INIT_LITHOS - make_scriptAP reads the USRMX (maximum number of core processors) value.

NB: autoregisterP requires a number of directories and files - refer to relevant guide.

Output

make_scriptAP outputs:

  • run.sh - controlling run script for batch image auto registration using parallel processing.
    • run script for each core processor:
      • run_script01.b
      • run_script02.b
      • etc..
  • .INN files - autoregisterP seed file for each image.
  • rem_script.b - script for removal of temporary files (working directory clean-up)

run_scriptnn.b output:

  • .OOT files - standard output from autoregisterP for each image.
  • SUMFILES/ - Landmarks are added to the image's SUMFILE. Spacecraft/camera position/attitude are updated upon user acceptance of alignment shifts;

  • LMKFILES/ - Image names are added to the LMKFILES.

Using make_scriptAP

Create Input Files

Example make_script.in file:

 P00045000450
 P00045000451
 P00045000452
END

NB: A space must precede each image filename.

Example make_scriptA.seed file (see make_scriptA.seed for further details):

a
0,65,.25,0,3
1
2
n
0
n
o
.5
4
b
0
q
END   

Run make_scriptAP

make_scriptAP generates a .INN file for each image (the image filename appended with the autoregisterP options contained in the make_scriptA.seed file. Example P00045000450.INN file:

nn              <-two character USR name to distinguish between processes.
P00045000450
a
0,65,.25,0,3
1
2
n
0
n
o
.5
4
b
0
q
END   

make_scriptAP also generates the run.sh script:

 chmod +x run_script01.b
 chmod +x run_script02.b
 ''etc..''

 ./run_script01.b &
 ./run_script02.b &
 ''etc...''

and the run_script01.b, run_script02.b, etc:

rm -f P00045000450.OOT
/usr/local/bin/AUTOREGISTERP < P00045000450.INN > P00045000450.OOT
cp LMRK_DISPLAY1.pgm ./TESTFILES/P00045000450.pgm
rm -f P00045000452.OOT
/usr/local/bin/AUTOREGISTERP < P00045000451.INN > P00045000451.OOT
cp LMRK_DISPLAY1.pgm ./TESTFILES/P00045000451.pgm

Batch Autoregister Images Using Parallel Processing

autoregisterP uses the file LMRKLISTX.TXT to pre- screen the maplets, so if maplets have been added or deleted recently, the procedure make_lmrklistX should be run.

sh run.sh

The autoregisterP standard output for each image is captured in the .OOT files. The user must review the .OOT files to ascertain the success of the batch image autoregistration process. (A find-nofit program does not currently exist for batch image autoregistration.)

make_scriptAP (last edited 2016-07-24 09:42:58 by BMittan)