Size: 1449
Comment:
|
Size: 1494
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 24: | Line 24: |
You can populate make_script.in with the images to Register, or if you used the previous block, you can use the below commands. | |
Line 25: | Line 26: |
# set-up batch register files ln -s lsupport/$imgListName make_script.in ln -s scripts/make_scriptR.SEED make_scriptR.seed make_scriptR ls -l |
# Create a list of images that need to be processed. 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 |
Line 36: | Line 36: |
# Batch register images register -v nohup sh run_script.b & |
# Build the scripts. make_scriptR # Run the scripts nohup sh run_script.b |
Line 49: | Line 51: |
# Check results ls *OOT > tmpList sh support/after.sh 0.5 tmpList cat goodList cat badList sh support/evalReg.sh badList |
support/registerEval.sh mkdir ../log/step1-3 mv *INN *OOT eval* ../log/step1-3 |
Line 70: | Line 69: |
=== 9. Complete procedure === {{{ # Block Complete exit # Save block log mv typescript step-reg }}} |
|
Line 83: | Line 71: |
''(Compiled by DL)'' | ''(Compiled by JRW)'' |
Block 3 - Register V2
STILL BEING EDITED!
Description
This block batch registers images.
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:
Procedure
2. Set-up
Ensure make_scriptR.seed is linked to the script you want to run.
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.
# Create a list of images that need to be processed. 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
4. Batch register images
# Build the scripts. make_scriptR # Run the scripts nohup sh run_script.b
5. Monitor progress
# Monitor progress ls -l *.INN *.OOT
6. Check results
support/registerEval.sh mkdir ../log/step1-3 mv *INN *OOT eval* ../log/step1-3
7. Fix unregistered images
# Fix unregistered images .......
8. Clean directory
# Clean directory sh rem_script.b rm TESTFILES/* rm nohup.out
(Compiled by JRW)