https://github.com/galmetzer/dipole-normal-prop
Raw File
Tip revision: 0887b893b153f4ce6b09e4dd485f9b042f15b706 authored by Gal Metzer on 08 September 2021, 21:53:11 UTC
Update README.md
Tip revision: 0887b89
hand.sh
#!/bin/bash

export BASE_PATH=$(cd ../; pwd)
echo $BASE_PATH
export PYTHONPATH=$BASE_PATH

python -u $BASE_PATH/orient_pointcloud.py \
--pc $BASE_PATH/data/hand.xyz \
--export_dir $BASE_PATH/demos/hand \
--models $BASE_PATH/pre_trained/hands2.pt \
$BASE_PATH/pre_trained/hands.pt \
$BASE_PATH/pre_trained/manmade.pt \
--iters 10 \
--propagation_iters 5 \
--number_parts 30 \
--minimum_points_per_patch 100 \
--curvature_threshold 0.01 \
--diffuse \
--weighted_prop \
--estimate_normals
back to top