Skip to content

Commit

Permalink
Merge pull request #25526 from NlSEMONO:patch-1
Browse files Browse the repository at this point in the history
Fixed a typo in text_detection.cpp
  • Loading branch information
asmorkalov committed May 3, 2024
2 parents ac9a858 + c999cb3 commit 75f3f0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/dnn/text_detection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ const char* keys =
"{ help h | | Print help message. }"
"{ input i | | Path to input image or video file. Skip this argument to capture frames from a camera.}"
"{ detModel dmp | | Path to a binary .pb file contains trained detector network.}"
"{ width | 320 | Preprocess input image by resizing to a specific width. It should be multiple by 32. }"
"{ height | 320 | Preprocess input image by resizing to a specific height. It should be multiple by 32. }"
"{ width | 320 | Preprocess input image by resizing to a specific width. It should be a multiple of 32. }"
"{ height | 320 | Preprocess input image by resizing to a specific height. It should be a multiple of 32. }"
"{ thr | 0.5 | Confidence threshold. }"
"{ nms | 0.4 | Non-maximum suppression threshold. }"
"{ recModel rmp | | Path to a binary .onnx file contains trained CRNN text recognition model. "
Expand Down

0 comments on commit 75f3f0f

Please sign in to comment.