Differences between revisions 10 and 11
Revision 10 as of 2018-11-19 18:18:42
Size: 1905
Editor: EricPalmer
Comment:
Revision 11 as of 2018-11-19 18:23:31
Size: 1929
Editor: EricPalmer
Comment:
Deletions are marked like this. Additions are marked like this.
Line 17: Line 17:
  relink.sh scripts/make_scriptA.seed make_scriptA.seed   relink.sh scripts/make_scriptA_01.seed make_scriptA.seed
Line 26: Line 26:
  sed 's/^/ /' lsupport/imageList.Ap6 > make_script.in   cp lsupport/imageList.far\ > make_script.in
Line 35: Line 35:
  nohup sh run_script.b   nohup sh run_script.b &
  sleep 2 ; tail nohup.out

Block 4 - Autoregister V2

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
  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 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)

Block 4 - Autoregister v2 (last edited 2019-04-21 21:46:05 by EricPalmer)