Differences between revisions 9 and 17 (spanning 8 versions)
Revision 9 as of 2018-11-15 08:11:43
Size: 991
Editor: EricPalmer
Comment:
Revision 17 as of 2018-11-27 18:15:37
Size: 1335
Editor: EricPalmer
Comment:
Deletions are marked like this. Additions are marked like this.
Line 13: Line 13:
{{{
ID=06
echo "Setting up Limber, ID=$ID" >> notes
}}}
Line 16: Line 21:
If desired, you can also make thumbnails to see where the points were placed. Useful for tracking progress, etc.
Line 17: Line 23:
{{{    {{{
Line 19: Line 25:
thumbLimb.sh PICTLIST.TXT
Line 24: Line 31:
{{{
sed '1d' LIMBVECS.TXT > SHAPEFILES/pointsV\
   {{{
sed '1d' LIMBVECS.TXT > SHAPEFILES/pointsV$ID
Line 34: Line 41:
   vecs2shape    vecs2shape | tee -a ../notes
Line 46: Line 53:
   sed '1d' points\ | sed 's/D/E/g' | sed '$d' > p
   sed '1d' limbV\ > l
   echo limbV$ID | shape_info | tee -a ../notes
sed '1d' pointsV$ID | sed 's/D/E/g' | sed '$d' > p
   sed '1d' limbV$ID > l
Line 56: Line 64:
   relink limbV__ SHAPE.TXT    relink limbV$ID SHAPE.TXT
Line 61: Line 69:


=== Record ===

{{{
echo 4 | blockFinish far\
}}}

Block 10 - Limber V2


Description

Builds a model using the limbs


Procedure

Set-up

ID=06
echo "Setting up Limber, ID=$ID" >> notes

Ensure all images are registered to center of the shape file. Configure LIMBER.IN

Run Limber

If desired, you can also make thumbnails to see where the points were placed. Useful for tracking progress, etc.

  • limber
    thumbLimb.sh PICTLIST.TXT

Extract Vectors

Copy over the new limb vectors and remove the Q size (1st line).

  • sed '1d' LIMBVECS.TXT > SHAPEFILES/pointsV$ID

Build Shape Model

   cd SHAPEFILES

   vecs2shape | tee -a ../notes
   pointsV__
   128 13
   limbV__

Evaluate Shape Model

You can evaluate two ways -- gnuplot and register

Gnuplot - remove the 1st line in both p and l

   echo limbV$ID | shape_info | tee -a ../notes
   sed '1d' pointsV$ID | sed 's/D/E/g' | sed '$d' > p
   sed '1d' limbV$ID > l
   gnuplot
   set term x11; set ticslevel 0; splot 'p' with dots, 'l' with dots

register - install and run blue/red

   relink limbV$ID SHAPE.TXT
   cd ..
   evalReg.sh make_script.in

Review the images in ~/send/

Record

echo 4 | blockFinish far\

Block 10 - Limber v2 (last edited 2020-10-21 10:10:43 by EricPalmer)