From 33a29b9309fb9f48093e62acb6a7626d875bd0bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rostislav=20L=C3=A1n?= Date: Sat, 6 May 2023 15:23:29 +0200 Subject: [PATCH] Added final readme version --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ca4101e..235d5fd 100644 --- a/README.md +++ b/README.md @@ -318,20 +318,22 @@ Optional parameters are height of the papilar lines and base thickness. Using `m` mode modifies the preexisting finger model to contain fingerprint. First optional parameter is papilar line height `height_line`, second is the number of iterations `iter` to make the finger mesh denser. Higher number of itertions results in denser finger mesh and better result. -The last three parameters are axis offsets for the finger, `finger_x`, `finger_y`, `finger_z`. -These control the location of the finger. They need to be set only if the user wants to move core of the print closer to the center of the finger. +The next three parameters are axis offsets for the finger, `finger_x`, `finger_y`, `finger_z`. +These control the location of the finger. They need to be set only if the user wants to move core of the print closer to the center of the finger model. +The last parameter `finger_model` allows the user to choose custom finger model. * General command form for mapped stl generation ``` - python3 src/main.py input_file output_file dpi --config config_file preset --stl m height_line iter finger_x finger_y finger_z + python3 src/main.py input_file output_file dpi --config config_file preset --stl m height_line iter finger_x finger_y finger_z finger_model ``` * Working example of finger mapping ``` - python3 src/main.py res/examples/Palec_P4.tif res/examples/Palec_P4.png 600 --config conf/conf.json ridge --stl m 0.2 2 0 0 0 + python3 src/main.py res/examples/Palec_P4.tif res/examples/Palec_P4.png 600 --config conf/conf.json ridge --stl m 0.2 2 0 0 0 res/finger_backup/finger-mod.stl ``` + # Usage