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
3a546aa3
Commit
3a546aa3
authored
Feb 17, 2020
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imgproc: revert resize changes from PR 16497
parent
d84360e7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
resize.cpp
modules/imgproc/src/resize.cpp
+1
-1
test_imgwarp.cpp
modules/imgproc/test/test_imgwarp.cpp
+1
-1
No files found.
modules/imgproc/src/resize.cpp
View file @
3a546aa3
...
...
@@ -1045,7 +1045,7 @@ public:
{
const
int
*
_tS
=
(
const
int
*
)(
S
+
x_ofs
[
x
]);
int
*
_tD
=
(
int
*
)
D
;
for
(
int
k
=
0
;
k
<
=
pix_size4
;
k
++
)
for
(
int
k
=
0
;
k
<
pix_size4
;
k
++
)
_tD
[
k
]
=
_tS
[
k
];
}
}
...
...
modules/imgproc/test/test_imgwarp.cpp
View file @
3a546aa3
...
...
@@ -1721,7 +1721,7 @@ TEST(Resize, lanczos4_regression_16192)
EXPECT_EQ
(
cvtest
::
norm
(
dst
,
expected
,
NORM_INF
),
0
)
<<
dst
(
Rect
(
0
,
0
,
8
,
8
));
}
TEST
(
Resize
,
nearest_regression_15075
)
TEST
(
Resize
,
DISABLED_nearest_regression_15075
)
// reverted https://github.com/opencv/opencv/pull/16497
{
const
int
C
=
5
;
const
int
i1
=
5
,
j1
=
5
;
...
...
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