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
863d61e9
Commit
863d61e9
authored
Nov 08, 2010
by
Vladislav Vinogradov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix gpu module compilation under linux
parent
4cdcf371
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
62 additions
and
0 deletions
+62
-0
arithm.cpp
modules/gpu/src/arithm.cpp
+0
-0
graphcuts.cpp
modules/gpu/src/graphcuts.cpp
+6
-0
imgproc_gpu.cpp
modules/gpu/src/imgproc_gpu.cpp
+26
-0
matrix_operations.cpp
modules/gpu/src/matrix_operations.cpp
+30
-0
No files found.
modules/gpu/src/arithm.cpp
View file @
863d61e9
This diff is collapsed.
Click to expand it.
modules/gpu/src/graphcuts.cpp
View file @
863d61e9
...
@@ -48,8 +48,11 @@ void cv::gpu::graphcut(GpuMat&, GpuMat&, GpuMat&, GpuMat&, GpuMat&, GpuMat&, Gpu
...
@@ -48,8 +48,11 @@ void cv::gpu::graphcut(GpuMat&, GpuMat&, GpuMat&, GpuMat&, GpuMat&, GpuMat&, Gpu
#else
/* !defined (HAVE_CUDA) */
#else
/* !defined (HAVE_CUDA) */
#define NPP_VERSION (10 * NPP_VERSION_MAJOR + NPP_VERSION_MINOR)
void
cv
::
gpu
::
graphcut
(
GpuMat
&
terminals
,
GpuMat
&
leftTransp
,
GpuMat
&
rightTransp
,
GpuMat
&
top
,
GpuMat
&
bottom
,
GpuMat
&
labels
,
GpuMat
&
buf
)
void
cv
::
gpu
::
graphcut
(
GpuMat
&
terminals
,
GpuMat
&
leftTransp
,
GpuMat
&
rightTransp
,
GpuMat
&
top
,
GpuMat
&
bottom
,
GpuMat
&
labels
,
GpuMat
&
buf
)
{
{
#if NPP_VERSION >= 32
CV_Assert
(
leftTransp
.
type
()
==
CV_32S
&&
rightTransp
.
type
()
==
CV_32S
);
CV_Assert
(
leftTransp
.
type
()
==
CV_32S
&&
rightTransp
.
type
()
==
CV_32S
);
CV_Assert
(
terminals
.
type
()
==
CV_32S
&&
bottom
.
type
()
==
CV_32S
&&
top
.
type
()
==
CV_32S
);
CV_Assert
(
terminals
.
type
()
==
CV_32S
&&
bottom
.
type
()
==
CV_32S
&&
top
.
type
()
==
CV_32S
);
CV_Assert
(
terminals
.
size
()
==
leftTransp
.
size
());
CV_Assert
(
terminals
.
size
()
==
leftTransp
.
size
());
...
@@ -71,6 +74,9 @@ void cv::gpu::graphcut(GpuMat& terminals, GpuMat& leftTransp, GpuMat& rightTrans
...
@@ -71,6 +74,9 @@ void cv::gpu::graphcut(GpuMat& terminals, GpuMat& leftTransp, GpuMat& rightTrans
nppSafeCall
(
nppiGraphcut_32s8u
(
terminals
.
ptr
<
Npp32s
>
(),
leftTransp
.
ptr
<
Npp32s
>
(),
rightTransp
.
ptr
<
Npp32s
>
(),
top
.
ptr
<
Npp32s
>
(),
bottom
.
ptr
<
Npp32s
>
(),
nppSafeCall
(
nppiGraphcut_32s8u
(
terminals
.
ptr
<
Npp32s
>
(),
leftTransp
.
ptr
<
Npp32s
>
(),
rightTransp
.
ptr
<
Npp32s
>
(),
top
.
ptr
<
Npp32s
>
(),
bottom
.
ptr
<
Npp32s
>
(),
terminals
.
step
,
leftTransp
.
step
,
sznpp
,
labels
.
ptr
<
Npp8u
>
(),
labels
.
step
,
buf
.
ptr
<
Npp8u
>
())
);
terminals
.
step
,
leftTransp
.
step
,
sznpp
,
labels
.
ptr
<
Npp8u
>
(),
labels
.
step
,
buf
.
ptr
<
Npp8u
>
())
);
#else
CV_Assert
(
!
"This function doesn't supported"
);
#endif
}
}
...
...
modules/gpu/src/imgproc_gpu.cpp
View file @
863d61e9
...
@@ -71,6 +71,8 @@ void cv::gpu::histRange(const GpuMat&, GpuMat*, const GpuMat*) { throw_nogpu();
...
@@ -71,6 +71,8 @@ void cv::gpu::histRange(const GpuMat&, GpuMat*, const GpuMat*) { throw_nogpu();
#else
/* !defined (HAVE_CUDA) */
#else
/* !defined (HAVE_CUDA) */
#define NPP_VERSION (10 * NPP_VERSION_MAJOR + NPP_VERSION_MINOR)
namespace
cv
{
namespace
gpu
{
namespace
imgproc
namespace
cv
{
namespace
gpu
{
namespace
imgproc
{
{
void
remap_gpu_1c
(
const
DevMem2D
&
src
,
const
DevMem2Df
&
xmap
,
const
DevMem2Df
&
ymap
,
DevMem2D
dst
);
void
remap_gpu_1c
(
const
DevMem2D
&
src
,
const
DevMem2Df
&
xmap
,
const
DevMem2Df
&
ymap
,
DevMem2D
dst
);
...
@@ -577,6 +579,7 @@ void cv::gpu::rectStdDev(const GpuMat& src, const GpuMat& sqr, GpuMat& dst, cons
...
@@ -577,6 +579,7 @@ void cv::gpu::rectStdDev(const GpuMat& src, const GpuMat& sqr, GpuMat& dst, cons
void
cv
::
gpu
::
Canny
(
const
GpuMat
&
image
,
GpuMat
&
edges
,
double
threshold1
,
double
threshold2
,
int
apertureSize
)
void
cv
::
gpu
::
Canny
(
const
GpuMat
&
image
,
GpuMat
&
edges
,
double
threshold1
,
double
threshold2
,
int
apertureSize
)
{
{
#if NPP_VERSION >= 32
CV_Assert
(
!
"disabled until fix crash"
);
CV_Assert
(
!
"disabled until fix crash"
);
CV_Assert
(
image
.
type
()
==
CV_8UC1
);
CV_Assert
(
image
.
type
()
==
CV_8UC1
);
...
@@ -600,6 +603,9 @@ void cv::gpu::Canny(const GpuMat& image, GpuMat& edges, double threshold1, doubl
...
@@ -600,6 +603,9 @@ void cv::gpu::Canny(const GpuMat& image, GpuMat& edges, double threshold1, doubl
nppSafeCall
(
nppiCanny_32f8u_C1R
(
srcDx
.
ptr
<
Npp32f
>
(),
srcDx
.
step
,
srcDy
.
ptr
<
Npp32f
>
(),
srcDy
.
step
,
nppSafeCall
(
nppiCanny_32f8u_C1R
(
srcDx
.
ptr
<
Npp32f
>
(),
srcDx
.
step
,
srcDy
.
ptr
<
Npp32f
>
(),
srcDy
.
step
,
edges
.
ptr
<
Npp8u
>
(),
edges
.
step
,
sz
,
(
Npp32f
)
threshold1
,
(
Npp32f
)
threshold2
,
buf
.
ptr
<
Npp8u
>
())
);
edges
.
ptr
<
Npp8u
>
(),
edges
.
step
,
sz
,
(
Npp32f
)
threshold1
,
(
Npp32f
)
threshold2
,
buf
.
ptr
<
Npp8u
>
())
);
#else
CV_Assert
(
!
"This function doesn't supported"
);
#endif
}
}
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
...
@@ -783,13 +789,18 @@ namespace
...
@@ -783,13 +789,18 @@ namespace
void
cv
::
gpu
::
evenLevels
(
GpuMat
&
levels
,
int
nLevels
,
int
lowerLevel
,
int
upperLevel
)
void
cv
::
gpu
::
evenLevels
(
GpuMat
&
levels
,
int
nLevels
,
int
lowerLevel
,
int
upperLevel
)
{
{
#if NPP_VERSION >= 32
Mat
host_levels
(
1
,
nLevels
,
CV_32SC1
);
Mat
host_levels
(
1
,
nLevels
,
CV_32SC1
);
nppSafeCall
(
nppiEvenLevelsHost_32s
(
host_levels
.
ptr
<
Npp32s
>
(),
nLevels
,
lowerLevel
,
upperLevel
)
);
nppSafeCall
(
nppiEvenLevelsHost_32s
(
host_levels
.
ptr
<
Npp32s
>
(),
nLevels
,
lowerLevel
,
upperLevel
)
);
levels
.
upload
(
host_levels
);
levels
.
upload
(
host_levels
);
#else
CV_Assert
(
!
"This function doesn't supported"
);
#endif
}
}
void
cv
::
gpu
::
histEven
(
const
GpuMat
&
src
,
GpuMat
&
hist
,
int
histSize
,
int
lowerLevel
,
int
upperLevel
)
void
cv
::
gpu
::
histEven
(
const
GpuMat
&
src
,
GpuMat
&
hist
,
int
histSize
,
int
lowerLevel
,
int
upperLevel
)
{
{
#if NPP_VERSION >= 32
CV_Assert
(
src
.
type
()
==
CV_8UC1
||
src
.
type
()
==
CV_16UC1
||
src
.
type
()
==
CV_16SC1
);
CV_Assert
(
src
.
type
()
==
CV_8UC1
||
src
.
type
()
==
CV_16UC1
||
src
.
type
()
==
CV_16SC1
);
typedef
void
(
*
hist_t
)(
const
GpuMat
&
src
,
GpuMat
&
hist
,
int
levels
,
int
lowerLevel
,
int
upperLevel
);
typedef
void
(
*
hist_t
)(
const
GpuMat
&
src
,
GpuMat
&
hist
,
int
levels
,
int
lowerLevel
,
int
upperLevel
);
...
@@ -802,10 +813,14 @@ void cv::gpu::histEven(const GpuMat& src, GpuMat& hist, int histSize, int lowerL
...
@@ -802,10 +813,14 @@ void cv::gpu::histEven(const GpuMat& src, GpuMat& hist, int histSize, int lowerL
};
};
hist_callers
[
src
.
depth
()](
src
,
hist
,
histSize
,
lowerLevel
,
upperLevel
);
hist_callers
[
src
.
depth
()](
src
,
hist
,
histSize
,
lowerLevel
,
upperLevel
);
#else
CV_Assert
(
!
"This function doesn't supported"
);
#endif
}
}
void
cv
::
gpu
::
histEven
(
const
GpuMat
&
src
,
GpuMat
hist
[
4
],
int
histSize
[
4
],
int
lowerLevel
[
4
],
int
upperLevel
[
4
])
void
cv
::
gpu
::
histEven
(
const
GpuMat
&
src
,
GpuMat
hist
[
4
],
int
histSize
[
4
],
int
lowerLevel
[
4
],
int
upperLevel
[
4
])
{
{
#if NPP_VERSION >= 32
CV_Assert
(
src
.
type
()
==
CV_8UC4
||
src
.
type
()
==
CV_16UC4
||
src
.
type
()
==
CV_16SC4
);
CV_Assert
(
src
.
type
()
==
CV_8UC4
||
src
.
type
()
==
CV_16UC4
||
src
.
type
()
==
CV_16SC4
);
typedef
void
(
*
hist_t
)(
const
GpuMat
&
src
,
GpuMat
hist
[
4
],
int
levels
[
4
],
int
lowerLevel
[
4
],
int
upperLevel
[
4
]);
typedef
void
(
*
hist_t
)(
const
GpuMat
&
src
,
GpuMat
hist
[
4
],
int
levels
[
4
],
int
lowerLevel
[
4
],
int
upperLevel
[
4
]);
...
@@ -818,10 +833,14 @@ void cv::gpu::histEven(const GpuMat& src, GpuMat hist[4], int histSize[4], int l
...
@@ -818,10 +833,14 @@ void cv::gpu::histEven(const GpuMat& src, GpuMat hist[4], int histSize[4], int l
};
};
hist_callers
[
src
.
depth
()](
src
,
hist
,
histSize
,
lowerLevel
,
upperLevel
);
hist_callers
[
src
.
depth
()](
src
,
hist
,
histSize
,
lowerLevel
,
upperLevel
);
#else
CV_Assert
(
!
"This function doesn't supported"
);
#endif
}
}
void
cv
::
gpu
::
histRange
(
const
GpuMat
&
src
,
GpuMat
&
hist
,
const
GpuMat
&
levels
)
void
cv
::
gpu
::
histRange
(
const
GpuMat
&
src
,
GpuMat
&
hist
,
const
GpuMat
&
levels
)
{
{
#if NPP_VERSION >= 32
CV_Assert
(
src
.
type
()
==
CV_8UC1
||
src
.
type
()
==
CV_16UC1
||
src
.
type
()
==
CV_16SC1
||
src
.
type
()
==
CV_32FC1
);
CV_Assert
(
src
.
type
()
==
CV_8UC1
||
src
.
type
()
==
CV_16UC1
||
src
.
type
()
==
CV_16SC1
||
src
.
type
()
==
CV_32FC1
);
typedef
void
(
*
hist_t
)(
const
GpuMat
&
src
,
GpuMat
&
hist
,
const
GpuMat
&
levels
);
typedef
void
(
*
hist_t
)(
const
GpuMat
&
src
,
GpuMat
&
hist
,
const
GpuMat
&
levels
);
...
@@ -836,10 +855,14 @@ void cv::gpu::histRange(const GpuMat& src, GpuMat& hist, const GpuMat& levels)
...
@@ -836,10 +855,14 @@ void cv::gpu::histRange(const GpuMat& src, GpuMat& hist, const GpuMat& levels)
};
};
hist_callers
[
src
.
depth
()](
src
,
hist
,
levels
);
hist_callers
[
src
.
depth
()](
src
,
hist
,
levels
);
#else
CV_Assert
(
!
"This function doesn't supported"
);
#endif
}
}
void
cv
::
gpu
::
histRange
(
const
GpuMat
&
src
,
GpuMat
hist
[
4
],
const
GpuMat
levels
[
4
])
void
cv
::
gpu
::
histRange
(
const
GpuMat
&
src
,
GpuMat
hist
[
4
],
const
GpuMat
levels
[
4
])
{
{
#if NPP_VERSION >= 32
CV_Assert
(
src
.
type
()
==
CV_8UC4
||
src
.
type
()
==
CV_16UC4
||
src
.
type
()
==
CV_16SC4
||
src
.
type
()
==
CV_32FC4
);
CV_Assert
(
src
.
type
()
==
CV_8UC4
||
src
.
type
()
==
CV_16UC4
||
src
.
type
()
==
CV_16SC4
||
src
.
type
()
==
CV_32FC4
);
typedef
void
(
*
hist_t
)(
const
GpuMat
&
src
,
GpuMat
hist
[
4
],
const
GpuMat
levels
[
4
]);
typedef
void
(
*
hist_t
)(
const
GpuMat
&
src
,
GpuMat
hist
[
4
],
const
GpuMat
levels
[
4
]);
...
@@ -854,6 +877,9 @@ void cv::gpu::histRange(const GpuMat& src, GpuMat hist[4], const GpuMat levels[4
...
@@ -854,6 +877,9 @@ void cv::gpu::histRange(const GpuMat& src, GpuMat hist[4], const GpuMat levels[4
};
};
hist_callers
[
src
.
depth
()](
src
,
hist
,
levels
);
hist_callers
[
src
.
depth
()](
src
,
hist
,
levels
);
#else
CV_Assert
(
!
"This function doesn't supported"
);
#endif
}
}
#endif
/* !defined (HAVE_CUDA) */
#endif
/* !defined (HAVE_CUDA) */
modules/gpu/src/matrix_operations.cpp
View file @
863d61e9
...
@@ -77,6 +77,8 @@ namespace cv
...
@@ -77,6 +77,8 @@ namespace cv
#else
/* !defined (HAVE_CUDA) */
#else
/* !defined (HAVE_CUDA) */
#define NPP_VERSION (10 * NPP_VERSION_MAJOR + NPP_VERSION_MINOR)
namespace
cv
namespace
cv
{
{
namespace
gpu
namespace
gpu
...
@@ -232,7 +234,11 @@ void cv::gpu::GpuMat::convertTo( GpuMat& dst, int rtype, double alpha, double be
...
@@ -232,7 +234,11 @@ void cv::gpu::GpuMat::convertTo( GpuMat& dst, int rtype, double alpha, double be
{
NppCvt
<
CV_8U
,
CV_16U
,
nppiConvert_8u16u_C1R
>::
cvt
,
convertToKernelCaller
,
convertToKernelCaller
,
NppCvt
<
CV_8U
,
CV_16U
,
nppiConvert_8u16u_C4R
>::
cvt
},
{
NppCvt
<
CV_8U
,
CV_16U
,
nppiConvert_8u16u_C1R
>::
cvt
,
convertToKernelCaller
,
convertToKernelCaller
,
NppCvt
<
CV_8U
,
CV_16U
,
nppiConvert_8u16u_C4R
>::
cvt
},
{
NppCvt
<
CV_8U
,
CV_16S
,
nppiConvert_8u16s_C1R
>::
cvt
,
convertToKernelCaller
,
convertToKernelCaller
,
NppCvt
<
CV_8U
,
CV_16S
,
nppiConvert_8u16s_C4R
>::
cvt
},
{
NppCvt
<
CV_8U
,
CV_16S
,
nppiConvert_8u16s_C1R
>::
cvt
,
convertToKernelCaller
,
convertToKernelCaller
,
NppCvt
<
CV_8U
,
CV_16S
,
nppiConvert_8u16s_C4R
>::
cvt
},
{
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
},
{
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
},
#if NPP_VERSION >= 32
{
NppCvt
<
CV_8U
,
CV_32F
,
nppiConvert_8u32f_C1R
>::
cvt
,
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
},
{
NppCvt
<
CV_8U
,
CV_32F
,
nppiConvert_8u32f_C1R
>::
cvt
,
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
},
#else
{
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
},
#endif
{
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
},
{
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
},
{
0
,
0
,
0
,
0
}
{
0
,
0
,
0
,
0
}
},
},
...
@@ -277,7 +283,11 @@ void cv::gpu::GpuMat::convertTo( GpuMat& dst, int rtype, double alpha, double be
...
@@ -277,7 +283,11 @@ void cv::gpu::GpuMat::convertTo( GpuMat& dst, int rtype, double alpha, double be
{
0
,
0
,
0
,
0
}
{
0
,
0
,
0
,
0
}
},
},
{
{
#if NPP_VERSION >= 32
{
NppCvt
<
CV_32F
,
CV_8U
,
nppiConvert_32f8u_C1R
>::
cvt
,
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
},
{
NppCvt
<
CV_32F
,
CV_8U
,
nppiConvert_32f8u_C1R
>::
cvt
,
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
},
#else
{
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
},
#endif
{
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
},
{
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
},
{
NppCvt
<
CV_32F
,
CV_16U
,
nppiConvert_32f16u_C1R
>::
cvt
,
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
},
{
NppCvt
<
CV_32F
,
CV_16U
,
nppiConvert_32f16u_C1R
>::
cvt
,
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
},
{
NppCvt
<
CV_32F
,
CV_16S
,
nppiConvert_32f16s_C1R
>::
cvt
,
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
},
{
NppCvt
<
CV_32F
,
CV_16S
,
nppiConvert_32f16s_C1R
>::
cvt
,
convertToKernelCaller
,
convertToKernelCaller
,
convertToKernelCaller
},
...
@@ -421,10 +431,26 @@ GpuMat& GpuMat::setTo(const Scalar& s, const GpuMat& mask)
...
@@ -421,10 +431,26 @@ GpuMat& GpuMat::setTo(const Scalar& s, const GpuMat& mask)
{
{
{
NppSet
<
CV_8U
,
1
,
nppiSet_8u_C1R
>::
set
,
kernelSet
,
kernelSet
,
NppSet
<
CV_8U
,
4
,
nppiSet_8u_C4R
>::
set
},
{
NppSet
<
CV_8U
,
1
,
nppiSet_8u_C1R
>::
set
,
kernelSet
,
kernelSet
,
NppSet
<
CV_8U
,
4
,
nppiSet_8u_C4R
>::
set
},
{
kernelSet
,
kernelSet
,
kernelSet
,
kernelSet
},
{
kernelSet
,
kernelSet
,
kernelSet
,
kernelSet
},
#if NPP_VERSION >= 32
{
NppSet
<
CV_16U
,
1
,
nppiSet_16u_C1R
>::
set
,
kernelSet
,
kernelSet
,
NppSet
<
CV_16U
,
4
,
nppiSet_16u_C4R
>::
set
},
{
NppSet
<
CV_16U
,
1
,
nppiSet_16u_C1R
>::
set
,
kernelSet
,
kernelSet
,
NppSet
<
CV_16U
,
4
,
nppiSet_16u_C4R
>::
set
},
#else
{
kernelSet
,
kernelSet
,
kernelSet
,
kernelSet
},
#endif
#if NPP_VERSION >= 32
{
NppSet
<
CV_16S
,
1
,
nppiSet_16s_C1R
>::
set
,
kernelSet
,
kernelSet
,
NppSet
<
CV_16S
,
4
,
nppiSet_16s_C4R
>::
set
},
{
NppSet
<
CV_16S
,
1
,
nppiSet_16s_C1R
>::
set
,
kernelSet
,
kernelSet
,
NppSet
<
CV_16S
,
4
,
nppiSet_16s_C4R
>::
set
},
#else
{
kernelSet
,
kernelSet
,
kernelSet
,
kernelSet
},
#endif
#if NPP_VERSION >= 32
{
NppSet
<
CV_32S
,
1
,
nppiSet_32s_C1R
>::
set
,
kernelSet
,
kernelSet
,
NppSet
<
CV_32S
,
4
,
nppiSet_32s_C4R
>::
set
},
{
NppSet
<
CV_32S
,
1
,
nppiSet_32s_C1R
>::
set
,
kernelSet
,
kernelSet
,
NppSet
<
CV_32S
,
4
,
nppiSet_32s_C4R
>::
set
},
#else
{
NppSet
<
CV_32S
,
1
,
nppiSet_32s_C1R
>::
set
,
kernelSet
,
kernelSet
,
kernelSet
},
#endif
#if NPP_VERSION >= 32
{
NppSet
<
CV_32F
,
1
,
nppiSet_32f_C1R
>::
set
,
kernelSet
,
kernelSet
,
NppSet
<
CV_32F
,
4
,
nppiSet_32f_C4R
>::
set
},
{
NppSet
<
CV_32F
,
1
,
nppiSet_32f_C1R
>::
set
,
kernelSet
,
kernelSet
,
NppSet
<
CV_32F
,
4
,
nppiSet_32f_C4R
>::
set
},
#else
{
NppSet
<
CV_32F
,
1
,
nppiSet_32f_C1R
>::
set
,
kernelSet
,
kernelSet
,
kernelSet
},
#endif
{
kernelSet
,
kernelSet
,
kernelSet
,
kernelSet
},
{
kernelSet
,
kernelSet
,
kernelSet
,
kernelSet
},
{
0
,
0
,
0
,
0
}
{
0
,
0
,
0
,
0
}
};
};
...
@@ -432,6 +458,7 @@ GpuMat& GpuMat::setTo(const Scalar& s, const GpuMat& mask)
...
@@ -432,6 +458,7 @@ GpuMat& GpuMat::setTo(const Scalar& s, const GpuMat& mask)
}
}
else
else
{
{
#if NPP_VERSION >= 32
typedef
void
(
*
set_caller_t
)(
GpuMat
&
src
,
const
Scalar
&
s
,
const
GpuMat
&
mask
);
typedef
void
(
*
set_caller_t
)(
GpuMat
&
src
,
const
Scalar
&
s
,
const
GpuMat
&
mask
);
static
const
set_caller_t
set_callers
[
8
][
4
]
=
static
const
set_caller_t
set_callers
[
8
][
4
]
=
{
{
...
@@ -445,6 +472,9 @@ GpuMat& GpuMat::setTo(const Scalar& s, const GpuMat& mask)
...
@@ -445,6 +472,9 @@ GpuMat& GpuMat::setTo(const Scalar& s, const GpuMat& mask)
{
0
,
0
,
0
,
0
}
{
0
,
0
,
0
,
0
}
};
};
set_callers
[
depth
()][
channels
()
-
1
](
*
this
,
s
,
mask
);
set_callers
[
depth
()][
channels
()
-
1
](
*
this
,
s
,
mask
);
#else
kernelSetMask
(
*
this
,
s
,
mask
);
#endif
}
}
return
*
this
;
return
*
this
;
...
...
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