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
c17e9ef7
Commit
c17e9ef7
authored
Feb 21, 2013
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Repair binary compatibility of ocl module
parent
995154d1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
8 deletions
+9
-8
ocl.hpp
modules/ocl/include/opencv2/ocl/ocl.hpp
+5
-4
arithm.cpp
modules/ocl/src/arithm.cpp
+4
-4
No files found.
modules/ocl/include/opencv2/ocl/ocl.hpp
View file @
c17e9ef7
...
@@ -487,10 +487,11 @@ namespace cv
...
@@ -487,10 +487,11 @@ namespace cv
CV_EXPORTS
void
bitwise_xor
(
const
oclMat
&
src1
,
const
Scalar
&
s
,
oclMat
&
dst
,
const
oclMat
&
mask
=
oclMat
());
CV_EXPORTS
void
bitwise_xor
(
const
oclMat
&
src1
,
const
Scalar
&
s
,
oclMat
&
dst
,
const
oclMat
&
mask
=
oclMat
());
//! Logical operators
//! Logical operators
CV_EXPORTS
oclMatExpr
operator
~
(
const
oclMat
&
src
);
CV_EXPORTS
oclMat
operator
~
(
const
oclMat
&
);
CV_EXPORTS
oclMatExpr
operator
|
(
const
oclMat
&
src1
,
const
oclMat
&
src2
);
CV_EXPORTS
oclMat
operator
|
(
const
oclMat
&
,
const
oclMat
&
);
CV_EXPORTS
oclMatExpr
operator
&
(
const
oclMat
&
src1
,
const
oclMat
&
src2
);
CV_EXPORTS
oclMat
operator
&
(
const
oclMat
&
,
const
oclMat
&
);
CV_EXPORTS
oclMatExpr
operator
^
(
const
oclMat
&
src1
,
const
oclMat
&
src2
);
CV_EXPORTS
oclMat
operator
^
(
const
oclMat
&
,
const
oclMat
&
);
//! Mathematics operators
//! Mathematics operators
CV_EXPORTS
oclMatExpr
operator
+
(
const
oclMat
&
src1
,
const
oclMat
&
src2
);
CV_EXPORTS
oclMatExpr
operator
+
(
const
oclMat
&
src1
,
const
oclMat
&
src2
);
...
...
modules/ocl/src/arithm.cpp
View file @
c17e9ef7
...
@@ -2125,22 +2125,22 @@ void cv::ocl::bitwise_xor(const oclMat &src1, const Scalar &src2, oclMat &dst, c
...
@@ -2125,22 +2125,22 @@ void cv::ocl::bitwise_xor(const oclMat &src1, const Scalar &src2, oclMat &dst, c
bitwise_scalar
(
src1
,
src2
,
dst
,
mask
,
kernelName
,
&
arithm_bitwise_xor_scalar
);
bitwise_scalar
(
src1
,
src2
,
dst
,
mask
,
kernelName
,
&
arithm_bitwise_xor_scalar
);
}
}
oclMat
Expr
cv
::
ocl
::
operator
~
(
const
oclMat
&
src
)
oclMat
cv
::
ocl
::
operator
~
(
const
oclMat
&
src
)
{
{
return
oclMatExpr
(
src
,
oclMat
(),
MAT_NOT
);
return
oclMatExpr
(
src
,
oclMat
(),
MAT_NOT
);
}
}
oclMat
Expr
cv
::
ocl
::
operator
|
(
const
oclMat
&
src1
,
const
oclMat
&
src2
)
oclMat
cv
::
ocl
::
operator
|
(
const
oclMat
&
src1
,
const
oclMat
&
src2
)
{
{
return
oclMatExpr
(
src1
,
src2
,
MAT_OR
);
return
oclMatExpr
(
src1
,
src2
,
MAT_OR
);
}
}
oclMat
Expr
cv
::
ocl
::
operator
&
(
const
oclMat
&
src1
,
const
oclMat
&
src2
)
oclMat
cv
::
ocl
::
operator
&
(
const
oclMat
&
src1
,
const
oclMat
&
src2
)
{
{
return
oclMatExpr
(
src1
,
src2
,
MAT_AND
);
return
oclMatExpr
(
src1
,
src2
,
MAT_AND
);
}
}
oclMat
Expr
cv
::
ocl
::
operator
^
(
const
oclMat
&
src1
,
const
oclMat
&
src2
)
oclMat
cv
::
ocl
::
operator
^
(
const
oclMat
&
src1
,
const
oclMat
&
src2
)
{
{
return
oclMatExpr
(
src1
,
src2
,
MAT_XOR
);
return
oclMatExpr
(
src1
,
src2
,
MAT_XOR
);
}
}
...
...
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