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
1a9d8e94
Commit
1a9d8e94
authored
7 years ago
by
elenagvo
Committed by
Maksim Shabunin
7 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test for GaussianBlur with border
parent
0eb1bfa8
No related merge requests found
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
test_filter.cpp
modules/imgproc/test/test_filter.cpp
+21
-0
No files found.
modules/imgproc/test/test_filter.cpp
View file @
1a9d8e94
...
...
@@ -1982,6 +1982,27 @@ TEST(Imgproc_Blur, borderTypes)
EXPECT_DOUBLE_EQ
(
0.0
,
cvtest
::
norm
(
expected_dst
,
dst
,
NORM_INF
));
}
TEST
(
Imgproc_GaussianBlur
,
borderTypes
)
{
Size
kernelSize
(
3
,
3
);
Mat
src_16
(
16
,
16
,
CV_8UC1
,
cv
::
Scalar
::
all
(
42
)),
dst_16
;
Mat
src_roi_16
=
src_16
(
Rect
(
1
,
1
,
14
,
14
));
src_roi_16
.
setTo
(
cv
::
Scalar
::
all
(
3
));
cv
::
GaussianBlur
(
src_roi_16
,
dst_16
,
kernelSize
,
0
,
0
,
BORDER_REPLICATE
);
EXPECT_EQ
(
20
,
dst_16
.
at
<
uchar
>
(
0
,
0
));
Mat
src
(
3
,
12
,
CV_8UC1
,
cv
::
Scalar
::
all
(
42
)),
dst
;
Mat
src_roi
=
src
(
Rect
(
1
,
1
,
10
,
1
));
src_roi
.
setTo
(
cv
::
Scalar
::
all
(
2
));
cv
::
GaussianBlur
(
src_roi
,
dst
,
kernelSize
,
0
,
0
,
BORDER_REPLICATE
);
EXPECT_EQ
(
27
,
dst
.
at
<
uchar
>
(
0
,
0
));
}
TEST
(
Imgproc_Morphology
,
iterated
)
{
RNG
&
rng
=
theRNG
();
...
...
This diff is collapsed.
Click to expand it.
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