~mht/surcut

434b8196 — Martin Hafskjold Thoresen 4 years ago
Add license
0dbc35cd — Martin Hafskjold Thoresen 5 years ago
Only optionally do the force cutoff thing
16669cc4 — Martin Hafskjold Thoresen 5 years ago
Printing and mesh evaluation continues

refs

master
browse  log 

clone

read-only
https://git.sr.ht/~mht/surcut
read/write
git@git.sr.ht:~mht/surcut

You can also use your local clone with git send-email.

#To be done

  1. Find/make models in which ARAP performs well, and in which stitching performs well. Probably want to combine the two.
  2. Find some way of making good looking renderings of these results
  3. Actually write the report.

#Future Work

  • Handle intersections when having forces

#Scripts

Convert all files from one format to obj:

OUT_DIR="./meshes"
FMT="ply"
DIR="./libigl/tutorial/data"
MODELS=$(find "$DIR" -type f -iname "*.$FMT")
for model in $MODELS; do
  f=${model##*/}
  build/2obj $model "$OUT_DIR"/${f/$FMT/obj}
done

Get scores from the output of find-good-models.sh:

awk '/file/ {printf "%45s", $0} /score/{print $0}'