Differences between revisions 2 and 6 (spanning 4 versions)
Revision 2 as of 2018-11-20 11:16:47
Size: 1602
Editor: EricPalmer
Comment:
Revision 6 as of 2018-11-20 16:49:25
Size: 1807
Editor: EricPalmer
Comment:
Deletions are marked like this. Additions are marked like this.
Line 15: Line 15:
To make the script easier, set this variable
Line 16: Line 17:
   buildShape.sh farV01 shapeVar=farV03
echo "Building the shape with suffix shapeVar = $shapeVar" >> notes
Line 18: Line 20:

=== Running ===
This is a script in /opt/local/spc/bin that will dumb down a model, then build it back up using maplets.

   {{{
buildShape.sh $shapeVar
   }}}
Line 28: Line 37:
=== Evaluate Final Results ===

Check to see if the offset of the centroid from the center of the system is less than the required criteria (suggest 1/2 image pixel).

   {{{
cd SHAPEFILES
echo shape-$shapeVar-512 | shape_info | tee -a ../notes
cd ..
   }}}



=== Install Shape ===
If you like the results, you can instal the model. Review the red/blue or side-by-side images to ensure the model is good. If it isn't then uninstall the model.

   {{{
relink shape-$shapeVar.txt SHAPE.TXT | tee -a notes
evalReg.sh lsupport/theEight
   }}}




=== Finish the Block ===
Once that is done, you should iterate on it at least once and rebuild the shape (go back to the top of this procedure until the shift is less than the criteria.

   {{{
echo 9 | blockFinish far\
   }}}
Line 33: Line 71:
=== Evaluate Final Results ===

Check to see if the offset of the centroid from the center of the system is less than the required criteria (suggest 1/2 image pixel).

{{{
   shape_info
     shape-far320v1-128
}}}




If you need to shift it, run the [[shift]] command. If you do this, you should close out this blockFinish because you will redo the build routine fully.
{{{
   shift
   -OffsetX -OffsetY -OffsetZ
   y
   shape-far320v1-128
   n
   y

   geometry
   20
   1
   n
   n
}}}


Once that is done, you should iterate on it at least once and rebuild the shape (go back to the top of this procedure until the shift is less than the criteria.





=== Install Shape ===
{{{
   relink shape-far320-128 SHAPE.TXT
   evalReg.sh lsupport/theEight
}}}





=== Finish the Block ===
{{{
  echo 8 | blockFinish far\
}}}

Block 13 - BuildShape V2

Description

Steps to build, review and install a shape model

Procedure

Set-up

Bob uses a copy/paste technique that is normally held in a support file densify-cut paste. I've created a script in /opt/local/spc/bin called buildShape.sh <version> that will do the same thing in batch. It also runs view_shape to make the 8 views of the object for easy evaluation.

To make the script easier, set this variable

shapeVar=farV03
echo "Building the shape with suffix shapeVar = $shapeVar" >> notes

Running

This is a script in /opt/local/spc/bin that will dumb down a model, then build it back up using maplets.

  • buildShape.sh $shapeVar

When this is done, you will have

  • dum-far320v1
  • shape-far320v1-64
  • shape-far320v1-128
  • shape-far320v1-256
  • shape-far320v1-512
  • shape.log. A log file that saves the commands and output

Evaluate Final Results

Check to see if the offset of the centroid from the center of the system is less than the required criteria (suggest 1/2 image pixel).

  • cd SHAPEFILES
    echo shape-$shapeVar-512 | shape_info | tee -a ../notes
    cd ..

Install Shape

If you like the results, you can instal the model. Review the red/blue or side-by-side images to ensure the model is good. If it isn't then uninstall the model.

  • relink shape-$shapeVar.txt SHAPE.TXT | tee -a notes
    evalReg.sh lsupport/theEight

Finish the Block

Once that is done, you should iterate on it at least once and rebuild the shape (go back to the top of this procedure until the shift is less than the criteria.

  • echo 9 | blockFinish far\


(Compiled by EEP)

Block 13 - BuildShape v2 (last edited 2018-11-30 12:24:12 by EricPalmer)