Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
3956330d
"tests/vscode:/vscode.git/clone" did not exist on "2bc82d6381c6bc5ec9c73e43a30f38434db5a9e1"
Commit
3956330d
authored
Dec 05, 2012
by
Davis King
Browse files
simplified examples
parent
0c0db073
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
examples/bsp_ex.cpp
examples/bsp_ex.cpp
+1
-1
examples/compress_stream_ex.cpp
examples/compress_stream_ex.cpp
+1
-1
examples/train_object_detector.cpp
examples/train_object_detector.cpp
+1
-1
No files found.
examples/bsp_ex.cpp
View file @
3956330d
...
...
@@ -77,7 +77,7 @@ int main(int argc, char** argv)
{
// display all the command line options
cout
<<
"Usage: bsp_ex (-l port | <list of hosts>)
\n
"
;
parser
.
print_options
(
cout
);
parser
.
print_options
();
cout
<<
endl
;
return
0
;
}
...
...
examples/compress_stream_ex.cpp
View file @
3956330d
...
...
@@ -96,7 +96,7 @@ int main(int argc, char** argv)
cout
<<
"Usage: compress_stream_ex (-c|-d|-l) --in input_file --out output_file
\n
"
;
// This function prints out a nicely formatted list of
// all the options the parser has
parser
.
print_options
(
cout
);
parser
.
print_options
();
cout
<<
endl
;
return
0
;
...
...
examples/train_object_detector.cpp
View file @
3956330d
...
...
@@ -124,7 +124,7 @@ int main(int argc, char** argv)
if
(
parser
.
option
(
"h"
))
{
cout
<<
"Usage: train_object_detector [options] <image dataset file|image file>
\n
"
;
parser
.
print_options
(
cout
);
parser
.
print_options
();
cout
<<
endl
;
return
EXIT_SUCCESS
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment