Skip to content
Open
Prev Previous commit
Next Next commit
fix flags dashes
  • Loading branch information
ivan-vikhrev committed Feb 22, 2023
commit e8c83b738d720f8010d5335f6bec958ff8410600
10 changes: 5 additions & 5 deletions demos/face_recognition_demo/cpp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,12 @@ Running the application with the `-h` option:
[--mlm <MODEL FILE>] path to the Facial Landmarks Regression Retail model (.xml) file
[--mreid <MODEL FILE>] path to the Face Recognition model (.xml) file.
[--mas <MODEL FILE>] path to the Antispoofing Classification model (.xml) file.
[ -t_fd <NUMBER>] probability threshold for face detections. Default is 0.5
[ --input_shape <STRING>] specify the input shape for detection network in (width x height) format. Input of model will be reshaped according specified shape.Example: 1280x720. Shape of network input used by default.
[ -t_reid <NUMBER>] cosine distance threshold between two vectors for face reidentification. Default is 0.7
[ -exp <NUMBER>] expand ratio for bbox before face recognition. Default is 1.0
[--t_fd <NUMBER>] probability threshold for face detections. Default is 0.5
[--input_shape <STRING>] specify the input shape for detection network in (width x height) format. Input of model will be reshaped according specified shape.Example: 1280x720. Shape of network input used by default.
[--t_reid <NUMBER>] cosine distance threshold between two vectors for face reidentification. Default is 0.7
[--exp <NUMBER>] expand ratio for bbox before face recognition. Default is 1.0
[--greedy_reid_matching] ([--nogreedy_reid_matching])(don't) use faster greedy matching algorithm in face reid.
[-fg <GALLERY PATH>] path to a faces gallery directory.
[--fg <GALLERY PATH>] path to a faces gallery directory.
[--allow_grow] ([--noallow_grow]) (dont't) allow to grow faces gallery and to dump on disk.
[--crop_gallery] ([--nocrop_gallery]) (dont't) crop images during faces gallery creation.
[--dfd <DEVICE>] specify a device Face Detection model to infer on (the list of available devices is shown below). Use '-d HETERO:<comma-separated_devices_list>' format to specify HETERO plugin. Use '-d MULTI:<comma-separated_devices_list>' format to specify MULTI plugin. Default is CPU
Expand Down
10 changes: 5 additions & 5 deletions demos/face_recognition_demo/cpp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,12 @@ void parse(int argc, char *argv[]) {
<< "\n\t[--mlm <MODEL FILE>] " << mlm_msg
<< "\n\t[--mreid <MODEL FILE>] " << mreid_msg
<< "\n\t[--mas <MODEL FILE>] " << mas_msg
<< "\n\t[ -t_fd <NUMBER>] " << tfd_msg
<< "\n\t[ --input_shape <STRING>] " << input_shape_msg
<< "\n\t[ -t_reid <NUMBER>] " << treid_msg
<< "\n\t[ -exp <NUMBER>] " << exp_msg
<< "\n\t[--t_fd <NUMBER>] " << tfd_msg
<< "\n\t[--input_shape <STRING>] " << input_shape_msg
<< "\n\t[--t_reid <NUMBER>] " << treid_msg
<< "\n\t[--exp <NUMBER>] " << exp_msg
<< "\n\t[--greedy_reid_matching] ([--nogreedy_reid_matching])" << match_algo_msg
<< "\n\t[-fg <GALLERY PATH>] " << fg_msg
<< "\n\t[--fg <GALLERY PATH>] " << fg_msg
<< "\n\t[--allow_grow] ([--noallow_grow]) " << ag_msg
<< "\n\t[--crop_gallery] ([--nocrop_gallery]) " << cg_msg
<< "\n\t[--dfd <DEVICE>] " << dfd_msg
Expand Down