Differences between revisions 4 and 6 (spanning 2 versions)
Revision 4 as of 2018-01-29 16:35:01
Size: 1494
Editor: JohnWeirich
Comment:
Revision 6 as of 2018-03-23 13:13:13
Size: 1508
Editor: EricPalmer
Comment:
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
= STILL BEING EDITED! =
Line 8: Line 6:
This block batch registers images. This block batch registers images. Each time you run a batch run of run_script.b (typically would have a different make_scriptR.seed), then run [[blockFinish]] to log the results.
Line 10: Line 8:
== Assumptions ==
 * You have invoked a Bourne-Again Shell (bash)
 * You have completed the processing steps in Block 1 - Setup Directory
 * You have populated the working directory with new images following the steps in:
  * [[Block 2 - Ingest v2]]
Line 18: Line 11:
=== 2. Set-up === === Set-up ===
Ensure make_scriptR.seed is linked to the script you want to run. For starters, you can use one of the default ones. If needed, you can craft something specific and place it in lsupport.
Line 20: Line 14:
Ensure make_scriptR.seed is linked to the script you want to run.   relink script/make_scriptR_01.seed make_scriptR.seed
  relink script/make_scriptR_02.seed make_scriptR.seed
Line 23: Line 18:
=== 3. Set-up batch register files ===
You can populate make_script.in with the images to Register, or if you used the previous block, you can use the below commands.
=== Set-up batch register files ===
Replace [[make_script.in]] with a list of images that you want to use. It is important that the first character is blank and the file is terminated with an "END"
Line 27: Line 23:
grep -v -e SUMFILES -e NOMINALS ../log/step1-2/output.txt | cut -c 1-12 > tmp
cat tmp |
sed 's/^/ /' > make_script.in
echo END >> make_script.in
  sed 's/^/ /' lsupport/imageList.Ap6 > make_script.in
  echo END >> make_script.in
Line 33: Line 28:
=== 4. Batch register images === === Batch register images ===
Build the scripts. We use nohup to ensure that if the login window is lost, the process still runs.
Line 36: Line 32:
# Build the scripts.
make_scriptR

#
Run the scripts
nohup sh run_script.b
  make_scriptR
  nohup sh run_script.b
Line 43: Line 36:
=== 5. Monitor progress === === Monitor progress ===
Line 45: Line 38:
# Monitor progress
ls -l *.INN *.OOT
  ls *.INN | wc
  ls *.OOT | wc
Line 49: Line 42:
=== 6. Check results === === Check results ===
Line 51: Line 44:
support/registerEval.sh
mkdir ../log/step1-3
mv *INN *OOT eval* ../log/step1-3
  registerEval.sh
  wc evalGood.txt evalBad.txt
Line 56: Line 48:
=== 7. Fix unregistered images === === Fix unregistered images ===
Line 62: Line 54:
=== 8. Clean directory === === Finish the Block ===
Line 64: Line 56:
# Clean directory
sh rem_script.b
rm TESTFILES/*
rm nohup.out
  blockFinish Ap6
Line 71: Line 60:
''(Compiled by JRW)''

CategoryHowTos
''(Compiled by EEP)''

Block 3 - Register V2

Description

This block batch registers images. Each time you run a batch run of run_script.b (typically would have a different make_scriptR.seed), then run blockFinish to log the results.

Procedure

Set-up

Ensure make_scriptR.seed is linked to the script you want to run. For starters, you can use one of the default ones. If needed, you can craft something specific and place it in lsupport.

  relink script/make_scriptR_01.seed make_scriptR.seed
  relink script/make_scriptR_02.seed make_scriptR.seed

Set-up batch register files

Replace make_script.in with a list of images that you want to use. It is important that the first character is blank and the file is terminated with an "END"

# Create a list of images that need to be processed.  
  sed 's/^/ /' lsupport/imageList.Ap6 > make_script.in
  echo END >> make_script.in

Batch register images

Build the scripts. We use nohup to ensure that if the login window is lost, the process still runs.

  make_scriptR
  nohup sh run_script.b

Monitor progress

  ls *.INN | wc
  ls *.OOT | wc

Check results

  registerEval.sh 
  wc evalGood.txt evalBad.txt

Fix unregistered images

# Fix unregistered images
.......

Finish the Block

  blockFinish Ap6


(Compiled by EEP)

Block 3 - Register v2 (last edited 2019-11-08 16:47:21 by EricPalmer)