Differences between revisions 7 and 9 (spanning 2 versions)
Revision 7 as of 2016-01-14 11:35:38
Size: 1779
Editor: DianeLambert
Comment:
Revision 9 as of 2016-01-14 12:03:09
Size: 2191
Editor: DianeLambert
Comment:
Deletions are marked like this. Additions are marked like this.
Line 12: Line 12:
 * run_script.b -
 * .INN files -
 * run_script.b - run script for batch image registration.
 * .INN files - register seed file for each image.
Line 19: Line 19:
Example make_script.in file: Example '''make_script.in''' file:
Line 30: Line 30:
Example make_scriptR.seed file (see [[make_scriptR.seed]] for further details): Example '''make_scriptR.seed''' file (see [[make_scriptR.seed]] for further details):
Line 52: Line 52:
make_scriptR generates a .INN file for each image (the image filename appended with the register options contained in the make_scriptR.seed file. Example P3T11S2H0409.INN file: make_scriptR generates a .INN file for each image (the image filename appended with the register options contained in the make_scriptR.seed file. Example '''P3T11S2H0409.INN''' file:
Line 73: Line 73:
make_scriptR also generate the run script - run_script.b: make_scriptR also generate the run script - '''run_script.b''':
Line 86: Line 86:

== Batch Register Images ==

{{{
sh run_script.b
}}}

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

make_scriptR

Purpose: Generates the run and .INN files required to batch register new images.

Requires

  • make_script.in - text file containing the names of the images to batch register.
  • make_scriptR.seed - text file containing the register option commands for batch registering images.

Output

  • run_script.b - run script for batch image registration.
  • .INN files - register seed file for each image.

Using make_scriptR

Create Input Files

Example make_script.in file:

 P3T11S2H0409.DAT
 P3T11S2H0410.DAT
 P3T11S2H0411.DAT
END

NB: A space must precede each image filename.

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

s
20
3
y
XSTOP
1
10
3
y
XSTOP
0
y
n
n
q

Run make_scriptR

make_scriptR generates a .INN file for each image (the image filename appended with the register options contained in the make_scriptR.seed file. Example P3T11S2H0409.INN file:

P3T11S2H0409
s                   
20                  
3                   
y                   
XSTOP               
1                   
10                  
3                   
y                   
XSTOP               
0                   
y                   
n                   
n                   
q                   

make_scriptR also generate the run script - run_script.b:

rm -f P3T11S2H0409.OOT
/usr/local/bin/REGISTER < P3T11S2H0409.INN > P3T11S2H0409.OOT
cp TEMPFILE.pgm ./TESTFILES/P3T11S2H0409.pgm
rm -f P3T11S2H0410.OOT
/usr/local/bin/REGISTER < P3T11S2H0410.INN > P3T11S2H0410.OOT
cp TEMPFILE.pgm ./TESTFILES/P3T11S2H0410.pgm
rm -f P3T11S2H0411.OOT
/usr/local/bin/REGISTER < P3T11S2H0411.INN > P3T11S2H0411.OOT
cp TEMPFILE.pgm ./TESTFILES/P3T11S2H0411.pgm

Batch Register Images

sh run_script.b

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

make_scriptR (last edited 2016-07-26 09:32:25 by BMittan)