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
a3954fb2
Commit
a3954fb2
authored
Apr 01, 2013
by
Andrey Kamaev
Committed by
OpenCV Buildbot
Apr 01, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #729 from jet47:fix-gpu-windows-build
parents
d6196255
8e10cd89
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
element_operations.cpp
modules/gpu/src/element_operations.cpp
+5
-5
No files found.
modules/gpu/src/element_operations.cpp
View file @
a3954fb2
...
...
@@ -1793,10 +1793,10 @@ void cv::gpu::exp(const GpuMat& src, GpuMat& dst, Stream& stream)
namespace
arithm
{
void
cmpMatEq_v4
(
PtrStepSz
<
u
int
>
src1
,
PtrStepSz
<
uint
>
src2
,
PtrStepSz
<
u
int
>
dst
,
cudaStream_t
stream
);
void
cmpMatNe_v4
(
PtrStepSz
<
u
int
>
src1
,
PtrStepSz
<
uint
>
src2
,
PtrStepSz
<
u
int
>
dst
,
cudaStream_t
stream
);
void
cmpMatLt_v4
(
PtrStepSz
<
u
int
>
src1
,
PtrStepSz
<
uint
>
src2
,
PtrStepSz
<
u
int
>
dst
,
cudaStream_t
stream
);
void
cmpMatLe_v4
(
PtrStepSz
<
u
int
>
src1
,
PtrStepSz
<
uint
>
src2
,
PtrStepSz
<
u
int
>
dst
,
cudaStream_t
stream
);
void
cmpMatEq_v4
(
PtrStepSz
<
u
nsigned
int
>
src1
,
PtrStepSz
<
unsigned
int
>
src2
,
PtrStepSz
<
unsigned
int
>
dst
,
cudaStream_t
stream
);
void
cmpMatNe_v4
(
PtrStepSz
<
u
nsigned
int
>
src1
,
PtrStepSz
<
unsigned
int
>
src2
,
PtrStepSz
<
unsigned
int
>
dst
,
cudaStream_t
stream
);
void
cmpMatLt_v4
(
PtrStepSz
<
u
nsigned
int
>
src1
,
PtrStepSz
<
unsigned
int
>
src2
,
PtrStepSz
<
unsigned
int
>
dst
,
cudaStream_t
stream
);
void
cmpMatLe_v4
(
PtrStepSz
<
u
nsigned
int
>
src1
,
PtrStepSz
<
unsigned
int
>
src2
,
PtrStepSz
<
unsigned
int
>
dst
,
cudaStream_t
stream
);
template
<
typename
T
>
void
cmpMatEq
(
PtrStepSzb
src1
,
PtrStepSzb
src2
,
PtrStepSzb
dst
,
cudaStream_t
stream
);
template
<
typename
T
>
void
cmpMatNe
(
PtrStepSzb
src1
,
PtrStepSzb
src2
,
PtrStepSzb
dst
,
cudaStream_t
stream
);
...
...
@@ -1820,7 +1820,7 @@ void cv::gpu::compare(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, int c
{
cmpMatEq
<
double
>
,
cmpMatNe
<
double
>
,
cmpMatLt
<
double
>
,
cmpMatLe
<
double
>
}
};
typedef
void
(
*
func_v4_t
)(
PtrStepSz
<
u
int
>
src1
,
PtrStepSz
<
uint
>
src2
,
PtrStepSz
<
u
int
>
dst
,
cudaStream_t
stream
);
typedef
void
(
*
func_v4_t
)(
PtrStepSz
<
u
nsigned
int
>
src1
,
PtrStepSz
<
unsigned
int
>
src2
,
PtrStepSz
<
unsigned
int
>
dst
,
cudaStream_t
stream
);
static
const
func_v4_t
funcs_v4
[]
=
{
cmpMatEq_v4
,
cmpMatNe_v4
,
cmpMatLt_v4
,
cmpMatLe_v4
...
...
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