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
54fcdf4c
Commit
54fcdf4c
authored
Dec 24, 2010
by
Alexey Spizhevoy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor changes in gpu module (comments and warnings)
parent
6702d557
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
gpu.hpp
modules/gpu/include/opencv2/gpu/gpu.hpp
+2
-1
dft_routines.cpp
tests/gpu/src/dft_routines.cpp
+2
-1
meanshift.cpp
tests/gpu/src/meanshift.cpp
+2
-2
No files found.
modules/gpu/include/opencv2/gpu/gpu.hpp
View file @
54fcdf4c
...
...
@@ -640,7 +640,8 @@ namespace cv
//! performs a forward or inverse discrete Fourier transform (1D or 2D) of floating point matrix
//!
//! If the source matrix is not continous, then additional copy will be done,
//! so to avoid copying ensure the source matrix is continous one.
//! so to avoid copying ensure the source matrix is continous one. If you want to use
//! preallocated output ensure it is continuous too, otherwise it will be reallocated.
//!
//! Being implemented via CUFFT real-to-complex transform result contains only non-redundant values
//! in CUFFT's format. Result as full complex matrix for such kind of transform cannot be retrieved.
...
...
tests/gpu/src/dft_routines.cpp
View file @
54fcdf4c
...
...
@@ -226,8 +226,9 @@ struct CV_GpuDftTest: CvTest
srand
(
0
);
int
cols
=
2
+
rand
()
%
100
,
rows
=
2
+
rand
()
%
100
;
for
(
int
i
nplace
=
0
;
inplace
<
2
;
++
inplace
)
for
(
int
i
=
0
;
i
<
2
;
++
i
)
{
bool
inplace
=
i
!=
0
;
testC2C
(
"no flags"
,
cols
,
rows
,
0
,
inplace
);
testC2C
(
"no flags 0 1"
,
cols
,
rows
+
1
,
0
,
inplace
);
testC2C
(
"no flags 1 0"
,
cols
,
rows
+
1
,
0
,
inplace
);
...
...
tests/gpu/src/meanshift.cpp
View file @
54fcdf4c
...
...
@@ -124,8 +124,8 @@ struct CV_GpuMeanShiftTest : public CvTest
};
/////////////////////////////////////////////////////////////////////////////
/////////////////// tests registration /////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////// tests registration /////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
CV_GpuMeanShiftTest
CV_GpuMeanShift_test
;
...
...
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