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
568b9352
Commit
568b9352
authored
Feb 05, 2013
by
yao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove a warning on Linux
fix a error in doc
parent
db9de43f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
data_structures.rst
modules/ocl/doc/data_structures.rst
+1
-1
pyrlk.cpp
modules/ocl/src/pyrlk.cpp
+1
-1
No files found.
modules/ocl/doc/data_structures.rst
View file @
568b9352
Data Structures
=============================
.. ocv:class:: oclMat
.. ocv:class:: ocl
::ocl
Mat
OpenCV C++ 1-D or 2-D dense array class ::
...
...
modules/ocl/src/pyrlk.cpp
View file @
568b9352
...
...
@@ -703,7 +703,7 @@ static cl_mem bindTexture(const oclMat &mat, int depth, int channels)
desc
.
image_type
=
CL_MEM_OBJECT_IMAGE2D
;
desc
.
image_width
=
mat
.
step
/
mat
.
elemSize
();
desc
.
image_height
=
mat
.
rows
;
desc
.
image_depth
=
NULL
;
desc
.
image_depth
=
0
;
desc
.
image_array_size
=
1
;
desc
.
image_row_pitch
=
0
;
desc
.
image_slice_pitch
=
0
;
...
...
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