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
3a04cfed
Commit
3a04cfed
authored
Dec 13, 2012
by
Suenghoon Park
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added HoughCircles in ocl.hpp
parent
ad86b803
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
ocl.hpp
modules/ocl/include/opencv2/ocl/ocl.hpp
+15
-0
No files found.
modules/ocl/include/opencv2/ocl/ocl.hpp
View file @
3a04cfed
...
...
@@ -827,6 +827,21 @@ namespace cv
};
///////////////////////////////////////// Hough Transform /////////////////////////////////////////
//! HoughCircles
struct
HoughCirclesBuf
{
oclMat
edges
;
oclMat
accum
;
oclMat
list
;
CannyBuf
cannyBuf
;
};
CV_EXPORTS
void
HoughCircles
(
const
oclMat
&
src
,
oclMat
&
circles
,
int
method
,
float
dp
,
float
minDist
,
int
cannyThreshold
,
int
votesThreshold
,
int
minRadius
,
int
maxRadius
,
int
maxCircles
=
4096
);
CV_EXPORTS
void
HoughCircles
(
const
oclMat
&
src
,
oclMat
&
circles
,
HoughCirclesBuf
&
buf
,
int
method
,
float
dp
,
float
minDist
,
int
cannyThreshold
,
int
votesThreshold
,
int
minRadius
,
int
maxRadius
,
int
maxCircles
=
4096
);
CV_EXPORTS
void
HoughCirclesDownload
(
const
oclMat
&
d_circles
,
OutputArray
h_circles
);
///////////////////////////////////////// clAmdFft related /////////////////////////////////////////
//! Performs a forward or inverse discrete Fourier transform (1D or 2D) of floating point matrix.
//! Param dft_size is the size of DFT transform.
...
...
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