Updated documentation to fix issues with old parameters.
This commit is contained in:
2
docs/build/_sources/filtering.rst.txt
vendored
2
docs/build/_sources/filtering.rst.txt
vendored
@ -34,4 +34,4 @@ There are two ways to enter the filters:
|
||||
|
||||
.. code-block::
|
||||
|
||||
(.venv)$ python3 src/main.py res/examples/Palec_P4.tif res/examples/Palec_P4_from_preset.png 600 --config conf/conf.json git_example
|
||||
(.venv)$ python3 src/main.py res/examples/Palec_P4.tif res/examples/Palec_P4_from_preset.png 600 --config conf/conf.json new_ridge
|
||||
|
12
docs/build/_sources/generation.rst.txt
vendored
12
docs/build/_sources/generation.rst.txt
vendored
@ -26,7 +26,7 @@ third the rate of curvature along x axis `curv_rate_x` and the third is the rate
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ python3 src/main.py res/examples/Palec_P4.tif res/examples/Palec_P4_from_preset.png 600 --config config/config.json git_example --stl c 2 10 2 2
|
||||
$ python3 src/main.py res/examples/Palec_P4.tif res/examples/Palec_P4_from_preset.png 600 --config conf/conf.json new_ridge --stl c 2 10 2 2
|
||||
|
||||
Generating planar finger model
|
||||
-----------------------------------
|
||||
@ -44,7 +44,7 @@ Optional parameters are height of the papilar lines and base thickness.
|
||||
|
||||
.. code-block::
|
||||
|
||||
$ python3 src/main.py res/examples/Palec_P4.tif res/examples/Palec_P4_from_preset.png 600 --config config/config.json git_example --stl p 2 10
|
||||
$ python3 src/main.py res/examples/Palec_P4.tif res/examples/Palec_P4_from_preset.png 600 --config conf/conf.json new_ridge --stl p 2 10
|
||||
|
||||
Mapping fingerprint to existing finger model
|
||||
--------------------------------------------
|
||||
@ -52,19 +52,19 @@ Mapping fingerprint to existing finger model
|
||||
|
||||
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
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ 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
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
$ 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 new_ridge --stl m 0.2 2 0 0 0 res/finger_backup/finger.stl
|
||||
|
||||
|
||||
|
2
docs/build/_sources/usage.rst.txt
vendored
2
docs/build/_sources/usage.rst.txt
vendored
@ -20,7 +20,7 @@ Which will print out the following message.
|
||||
output_file dpi ([-c | --config config_file preset] |
|
||||
[filters ...]) [-s | --stl_file p height_line height_base |
|
||||
--stl_file c height_line height_base curv_rate_x curv_rate_y |
|
||||
--stl m height_line iter finger_x finger_y finger_z]
|
||||
--stl m height_line iter finger_x finger_y finger_z finger_model]
|
||||
[-d | --database database_filename]
|
||||
|
||||
Program for processing a 2D image into 3D fingerprint.
|
||||
|
Reference in New Issue
Block a user