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
2838ccc7
Commit
2838ccc7
authored
Jul 28, 2015
by
Alex Torres
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes compilation errors when BUILD_CUDA_STUBS is ON
parent
47e7a7a7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
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
+3
-3
No files found.
modules/cudaimgproc/src/histogram.cpp
View file @
2838ccc7
...
...
@@ -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 @
2838ccc7
...
...
@@ -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 @
2838ccc7
...
...
@@ -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 @
2838ccc7
...
...
@@ -42,15 +42,15 @@
#include "precomp.hpp"
using
namespace
cv
;
using
namespace
cv
::
cuda
;
#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
>
();
}
#else
using
namespace
cv
;
using
namespace
cv
::
cuda
;
namespace
tvl1flow
{
void
centeredGradient
(
PtrStepSzf
src
,
PtrStepSzf
dx
,
PtrStepSzf
dy
,
cudaStream_t
stream
);
...
...
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