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
01e93d57
Commit
01e93d57
authored
May 05, 2012
by
Anatoly Baksheev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merged from trunk.
parent
86524b0e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
imgproc.cpp
modules/gpu/src/imgproc.cpp
+4
-4
No files found.
modules/gpu/src/imgproc.cpp
View file @
01e93d57
...
...
@@ -370,7 +370,7 @@ void cv::gpu::buildWarpPlaneMaps(Size src_size, Rect dst_roi, const Mat &K, cons
map_x
.
create
(
dst_roi
.
size
(),
CV_32F
);
map_y
.
create
(
dst_roi
.
size
(),
CV_32F
);
buildWarpPlaneMaps
(
dst_roi
.
tl
().
x
,
dst_roi
.
tl
().
y
,
map_x
,
map_y
,
K_Rinv
.
ptr
<
float
>
(),
R_Kinv
.
ptr
<
float
>
(),
device
::
imgproc
::
buildWarpPlaneMaps
(
dst_roi
.
tl
().
x
,
dst_roi
.
tl
().
y
,
map_x
,
map_y
,
K_Rinv
.
ptr
<
float
>
(),
R_Kinv
.
ptr
<
float
>
(),
T
.
ptr
<
float
>
(),
scale
,
StreamAccessor
::
getStream
(
stream
));
}
...
...
@@ -402,7 +402,7 @@ void cv::gpu::buildWarpCylindricalMaps(Size src_size, Rect dst_roi, const Mat &K
map_x
.
create
(
dst_roi
.
size
(),
CV_32F
);
map_y
.
create
(
dst_roi
.
size
(),
CV_32F
);
buildWarpCylindricalMaps
(
dst_roi
.
tl
().
x
,
dst_roi
.
tl
().
y
,
map_x
,
map_y
,
K_Rinv
.
ptr
<
float
>
(),
R_Kinv
.
ptr
<
float
>
(),
scale
,
StreamAccessor
::
getStream
(
stream
));
device
::
imgproc
::
buildWarpCylindricalMaps
(
dst_roi
.
tl
().
x
,
dst_roi
.
tl
().
y
,
map_x
,
map_y
,
K_Rinv
.
ptr
<
float
>
(),
R_Kinv
.
ptr
<
float
>
(),
scale
,
StreamAccessor
::
getStream
(
stream
));
}
...
...
@@ -434,7 +434,7 @@ void cv::gpu::buildWarpSphericalMaps(Size src_size, Rect dst_roi, const Mat &K,
map_x
.
create
(
dst_roi
.
size
(),
CV_32F
);
map_y
.
create
(
dst_roi
.
size
(),
CV_32F
);
buildWarpSphericalMaps
(
dst_roi
.
tl
().
x
,
dst_roi
.
tl
().
y
,
map_x
,
map_y
,
K_Rinv
.
ptr
<
float
>
(),
R_Kinv
.
ptr
<
float
>
(),
scale
,
StreamAccessor
::
getStream
(
stream
));
device
::
imgproc
::
buildWarpSphericalMaps
(
dst_roi
.
tl
().
x
,
dst_roi
.
tl
().
y
,
map_x
,
map_y
,
K_Rinv
.
ptr
<
float
>
(),
R_Kinv
.
ptr
<
float
>
(),
scale
,
StreamAccessor
::
getStream
(
stream
));
}
////////////////////////////////////////////////////////////////////////
...
...
@@ -600,7 +600,7 @@ void cv::gpu::columnSum(const GpuMat& src, GpuMat& dst)
dst
.
create
(
src
.
size
(),
CV_32F
);
columnSum_32F
(
src
,
dst
);
device
::
imgproc
::
columnSum_32F
(
src
,
dst
);
}
void
cv
::
gpu
::
rectStdDev
(
const
GpuMat
&
src
,
const
GpuMat
&
sqr
,
GpuMat
&
dst
,
const
Rect
&
rect
,
Stream
&
s
)
...
...
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