Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
3ea88905
Commit
3ea88905
authored
Jul 28, 2017
by
Martin Ganeff
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed _gpu-suffix from usage messages to align with executable name
parent
34f9c039
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
cascadeclassifier.cpp
samples/gpu/cascadeclassifier.cpp
+1
-1
driver_api_stereo_multi.cpp
samples/gpu/driver_api_stereo_multi.cpp
+1
-1
hog.cpp
samples/gpu/hog.cpp
+1
-1
stereo_match.cpp
samples/gpu/stereo_match.cpp
+1
-1
stereo_multi.cpp
samples/gpu/stereo_multi.cpp
+1
-1
surf_keypoint_matcher.cpp
samples/gpu/surf_keypoint_matcher.cpp
+1
-1
No files found.
samples/gpu/cascadeclassifier.cpp
View file @
3ea88905
...
@@ -20,7 +20,7 @@ using namespace cv::cuda;
...
@@ -20,7 +20,7 @@ using namespace cv::cuda;
static
void
help
()
static
void
help
()
{
{
cout
<<
"Usage: ./cascadeclassifier
_gpu
\n\t
--cascade <cascade_file>
\n\t
(<image>|--video <video>|--camera <camera_id>)
\n
"
cout
<<
"Usage: ./cascadeclassifier
\n\t
--cascade <cascade_file>
\n\t
(<image>|--video <video>|--camera <camera_id>)
\n
"
"Using OpenCV version "
<<
CV_VERSION
<<
endl
<<
endl
;
"Using OpenCV version "
<<
CV_VERSION
<<
endl
<<
endl
;
}
}
...
...
samples/gpu/driver_api_stereo_multi.cpp
View file @
3ea88905
...
@@ -85,7 +85,7 @@ GpuMat d_result[2];
...
@@ -85,7 +85,7 @@ GpuMat d_result[2];
static
void
printHelp
()
static
void
printHelp
()
{
{
std
::
cout
<<
"Usage: driver_api_stereo_multi
_gpu
--left <left_image> --right <right_image>
\n
"
;
std
::
cout
<<
"Usage: driver_api_stereo_multi --left <left_image> --right <right_image>
\n
"
;
}
}
int
main
(
int
argc
,
char
**
argv
)
int
main
(
int
argc
,
char
**
argv
)
...
...
samples/gpu/hog.cpp
View file @
3ea88905
...
@@ -99,7 +99,7 @@ private:
...
@@ -99,7 +99,7 @@ private:
static
void
printHelp
()
static
void
printHelp
()
{
{
cout
<<
"Histogram of Oriented Gradients descriptor and detector sample.
\n
"
cout
<<
"Histogram of Oriented Gradients descriptor and detector sample.
\n
"
<<
"
\n
Usage: hog
_gpu
\n
"
<<
"
\n
Usage: hog
\n
"
<<
" (<image>|--video <vide>|--camera <camera_id>) # frames source
\n
"
<<
" (<image>|--video <vide>|--camera <camera_id>) # frames source
\n
"
<<
" or"
<<
" or"
<<
" (--folder <folder_path>) # load images from folder
\n
"
<<
" (--folder <folder_path>) # load images from folder
\n
"
...
...
samples/gpu/stereo_match.cpp
View file @
3ea88905
...
@@ -76,7 +76,7 @@ private:
...
@@ -76,7 +76,7 @@ private:
static
void
printHelp
()
static
void
printHelp
()
{
{
cout
<<
"Usage: stereo_match
_gpu
\n
"
cout
<<
"Usage: stereo_match
\n
"
<<
"
\t
--left <left_view> --right <right_view> # must be rectified
\n
"
<<
"
\t
--left <left_view> --right <right_view> # must be rectified
\n
"
<<
"
\t
--method <stereo_match_method> # BM | BP | CSBP
\n
"
<<
"
\t
--method <stereo_match_method> # BM | BP | CSBP
\n
"
<<
"
\t
--ndisp <number> # number of disparity levels
\n
"
;
<<
"
\t
--ndisp <number> # number of disparity levels
\n
"
;
...
...
samples/gpu/stereo_multi.cpp
View file @
3ea88905
...
@@ -355,7 +355,7 @@ int main(int argc, char** argv)
...
@@ -355,7 +355,7 @@ int main(int argc, char** argv)
{
{
if
(
argc
!=
3
)
if
(
argc
!=
3
)
{
{
cerr
<<
"Usage: stereo_multi
_gpu
<left_video> <right_video>"
<<
endl
;
cerr
<<
"Usage: stereo_multi <left_video> <right_video>"
<<
endl
;
return
-
1
;
return
-
1
;
}
}
...
...
samples/gpu/surf_keypoint_matcher.cpp
View file @
3ea88905
...
@@ -17,7 +17,7 @@ using namespace cv::cuda;
...
@@ -17,7 +17,7 @@ using namespace cv::cuda;
static
void
help
()
static
void
help
()
{
{
cout
<<
"
\n
This program demonstrates using SURF_CUDA features detector, descriptor extractor and BruteForceMatcher_CUDA"
<<
endl
;
cout
<<
"
\n
This program demonstrates using SURF_CUDA features detector, descriptor extractor and BruteForceMatcher_CUDA"
<<
endl
;
cout
<<
"
\n
Usage:
\n\t
matcher_simple_gpu
--left <image1> --right <image2>"
<<
endl
;
cout
<<
"
\n
Usage:
\n\t
surf_keypoint_matcher
--left <image1> --right <image2>"
<<
endl
;
}
}
int
main
(
int
argc
,
char
*
argv
[])
int
main
(
int
argc
,
char
*
argv
[])
...
...
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