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
c10230f8
Commit
c10230f8
authored
Aug 03, 2015
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5087 from alexst07:cuda_contrib
parents
02906bf2
383b7e9d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
7 deletions
+11
-7
histogram.cpp
modules/cudaimgproc/src/histogram.cpp
+4
-4
farneback.cpp
modules/cudaoptflow/src/farneback.cpp
+1
-1
pyrlk.cpp
modules/cudaoptflow/src/pyrlk.cpp
+1
-1
tvl1flow.cpp
modules/cudaoptflow/src/tvl1flow.cpp
+5
-1
No files found.
modules/cudaimgproc/src/histogram.cpp
View file @
c10230f8
...
...
@@ -55,11 +55,11 @@ cv::Ptr<cv::cuda::CLAHE> cv::cuda::createCLAHE(double, cv::Size) { throw_no_cuda
void
cv
::
cuda
::
evenLevels
(
OutputArray
,
int
,
int
,
int
,
Stream
&
)
{
throw_no_cuda
();
}
void
cv
::
cuda
::
histEven
(
InputArray
,
OutputArray
,
InputOutputArray
,
int
,
int
,
int
,
Stream
&
)
{
throw_no_cuda
();
}
void
cv
::
cuda
::
histEven
(
InputArray
,
GpuMat
*
,
InputOutputArray
,
int
*
,
int
*
,
int
*
,
Stream
&
)
{
throw_no_cuda
();
}
void
cv
::
cuda
::
histEven
(
InputArray
,
OutputArray
,
int
,
int
,
int
,
Stream
&
)
{
throw_no_cuda
();
}
void
cv
::
cuda
::
histEven
(
InputArray
,
GpuMat
*
,
int
*
,
int
*
,
int
*
,
Stream
&
)
{
throw_no_cuda
();
}
void
cv
::
cuda
::
histRange
(
InputArray
,
OutputArray
,
InputArray
,
InputOutputArray
,
Stream
&
)
{
throw_no_cuda
();
}
void
cv
::
cuda
::
histRange
(
InputArray
,
GpuMat
*
,
const
GpuMat
*
,
InputOutputArray
,
Stream
&
)
{
throw_no_cuda
();
}
void
cv
::
cuda
::
histRange
(
InputArray
,
OutputArray
,
InputArray
,
Stream
&
)
{
throw_no_cuda
();
}
void
cv
::
cuda
::
histRange
(
InputArray
,
GpuMat
*
,
const
GpuMat
*
,
Stream
&
)
{
throw_no_cuda
();
}
#else
/* !defined (HAVE_CUDA) */
...
...
modules/cudaoptflow/src/farneback.cpp
View file @
c10230f8
...
...
@@ -47,7 +47,7 @@ using namespace cv::cuda;
#if !defined HAVE_CUDA || defined(CUDA_DISABLER)
Ptr
<
FarnebackOpticalFlow
>
cv
::
cuda
::
FarnebackOpticalFlow
::
create
(
int
,
double
,
bool
,
int
,
int
,
int
,
double
,
int
)
{
throw_no_cuda
();
return
Ptr
<
Brox
OpticalFlow
>
();
}
Ptr
<
FarnebackOpticalFlow
>
cv
::
cuda
::
FarnebackOpticalFlow
::
create
(
int
,
double
,
bool
,
int
,
int
,
int
,
double
,
int
)
{
throw_no_cuda
();
return
Ptr
<
Farneback
OpticalFlow
>
();
}
#else
...
...
modules/cudaoptflow/src/pyrlk.cpp
View file @
c10230f8
...
...
@@ -49,7 +49,7 @@ using namespace cv::cuda;
Ptr
<
SparsePyrLKOpticalFlow
>
cv
::
cuda
::
SparsePyrLKOpticalFlow
::
create
(
Size
,
int
,
int
,
bool
)
{
throw_no_cuda
();
return
Ptr
<
SparsePyrLKOpticalFlow
>
();
}
Ptr
<
DensePyrLKOpticalFlow
>
cv
::
cuda
::
DensePyrLKOpticalFlow
::
create
(
Size
,
int
,
int
,
bool
)
{
throw_no_cuda
();
return
Ptr
<
Spar
sePyrLKOpticalFlow
>
();
}
Ptr
<
DensePyrLKOpticalFlow
>
cv
::
cuda
::
DensePyrLKOpticalFlow
::
create
(
Size
,
int
,
int
,
bool
)
{
throw_no_cuda
();
return
Ptr
<
Den
sePyrLKOpticalFlow
>
();
}
#else
/* !defined (HAVE_CUDA) */
...
...
modules/cudaoptflow/src/tvl1flow.cpp
View file @
c10230f8
...
...
@@ -44,7 +44,11 @@
#if !defined HAVE_CUDA || defined(CUDA_DISABLER)
Ptr
<
OpticalFlowDual_TVL1
>
cv
::
cuda
::
OpticalFlowDual_TVL1
::
create
(
double
,
double
,
double
,
int
,
int
,
double
,
int
,
double
,
double
,
bool
)
{
throw_no_cuda
();
return
Ptr
<
OpticalFlowDual_TVL1
>
();
}
cv
::
Ptr
<
cv
::
cuda
::
OpticalFlowDual_TVL1
>
cv
::
cuda
::
OpticalFlowDual_TVL1
::
create
(
double
,
double
,
double
,
int
,
int
,
double
,
int
,
double
,
double
,
bool
)
{
throw_no_cuda
();
return
Ptr
<
cv
::
cuda
::
OpticalFlowDual_TVL1
>
();
}
#else
...
...
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