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
541d5b02
Commit
541d5b02
authored
Dec 02, 2016
by
apavlenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
disabling due to accuracy issues
parent
ccd8031a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
canny.cpp
modules/imgproc/src/canny.cpp
+5
-4
smooth.cpp
modules/imgproc/src/smooth.cpp
+1
-1
No files found.
modules/imgproc/src/canny.cpp
View file @
541d5b02
...
@@ -866,10 +866,11 @@ void Canny( InputArray _src, OutputArray _dst,
...
@@ -866,10 +866,11 @@ void Canny( InputArray _src, OutputArray _dst,
Mat
src
=
_src
.
getMat
(),
dst
=
_dst
.
getMat
();
Mat
src
=
_src
.
getMat
(),
dst
=
_dst
.
getMat
();
CV_OVX_RUN
(
CV_OVX_RUN
(
src
.
type
()
==
CV_8UC1
&&
false
&&
/* disabling due to accuracy issues */
!
src
.
isSubmatrix
()
&&
src
.
type
()
==
CV_8UC1
&&
src
.
cols
>=
aperture_size
&&
!
src
.
isSubmatrix
()
&&
src
.
rows
>=
aperture_size
,
src
.
cols
>=
aperture_size
&&
src
.
rows
>=
aperture_size
,
openvx_canny
(
openvx_canny
(
src
,
src
,
dst
,
dst
,
...
...
modules/imgproc/src/smooth.cpp
View file @
541d5b02
...
@@ -1714,7 +1714,7 @@ namespace cv
...
@@ -1714,7 +1714,7 @@ namespace cv
#if VX_VERSION <= VX_VERSION_1_0
#if VX_VERSION <= VX_VERSION_1_0
if
(
ctx
.
vendorID
()
==
VX_ID_KHRONOS
&&
((
vx_size
)(
src
.
cols
)
<=
ctx
.
convolutionMaxDimension
()
||
(
vx_size
)(
src
.
rows
)
<=
ctx
.
convolutionMaxDimension
()))
if
(
ctx
.
vendorID
()
==
VX_ID_KHRONOS
&&
((
vx_size
)(
src
.
cols
)
<=
ctx
.
convolutionMaxDimension
()
||
(
vx_size
)(
src
.
rows
)
<=
ctx
.
convolutionMaxDimension
()))
{
{
ctx
.
set
BorderMode
(
prevBorder
);
ctx
.
set
ImmediateBorder
(
prevBorder
);
return
false
;
return
false
;
}
}
#endif
#endif
...
...
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