Description
This block batch autoregisters images
Procedure
Set-up
- Ensure make_scriptA.seed is linked to the script you want to run.
Run make_lmrklist (Any landmark that is not in LMRKLISTX.TXT will not be added to images!!!!)
relink.sh scripts/make_scriptA_01.seed make_scriptA.seed ls -l make_scriptA.seed | tee -a notes MAKE_LMRKLISTX
Set-up batch autoregister 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. cp lsupport/imageList.far\ make_script.in echo END >> make_script.in
Batch autoregister images
Build the scripts. We use nohup to ensure that if the login window is lost, the process still runs.
make_scriptA nohup sh run_script.b & sleep 2 ; tail -f nohup.out
Monitor progress
ls *.INN | wc ls *.OOT | wc find_nofit
Evaluate Progress
Use the "notes" file to keep track of any problem images. autoEval.sh will read the OOT files and provide feedback on how many landmarks are in each image and how many landmarks "tried" and failed.
If there are fewer than 5 landmarks, you may consider doing these by hand. First, look at TESTFILES at the <IMG>.pgm to see how good the landmarks look. Run autoregister to clean up images that are a problem. If there are too few, you might consider tucking them away (option in lithos and register.
find_nofit | tee -a notes autoEval.sh
Finish the Block
Once errors have been removed, then you can finish the block. If you want to rerun things with different parameters, then finish this block and start over.
echo 5 | blockFinish far\
(Compiled by EEP)