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
8414c651
Commit
8414c651
authored
Feb 20, 2016
by
Maksim Shabunin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed build with older ippicv
parent
27abd4d3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
filter.cpp
modules/imgproc/src/filter.cpp
+4
-2
No files found.
modules/imgproc/src/filter.cpp
View file @
8414c651
...
...
@@ -4575,7 +4575,7 @@ struct ReplacementFilter : public HalFilterImpl
};
#ifdef HAVE_IPP
#if !HAVE_ICV
typedef
IppStatus
(
CV_STDCALL
*
ippiFilterBorder
)(
const
void
*
pSrc
,
int
srcStep
,
void
*
pDst
,
int
dstStep
,
IppiSize
dstRoiSize
,
IppiBorderType
border
,
const
void
*
borderValue
,
...
...
@@ -4735,7 +4735,7 @@ struct IppFilter : public HalFilterImpl
}
}
};
#endif
#endif
struct
DftFilter
:
public
HalFilterImpl
...
...
@@ -4952,6 +4952,7 @@ void init_filter2d(FilterContext& c,
}
#ifdef HAVE_IPP
#if !HAVE_ICV
if
(
kernel_type
==
CV_32FC1
)
{
IppFilter
<
CV_32F
>*
impl
=
new
IppFilter
<
CV_32F
>
();
if
(
impl
->
init
(
kernel_data
,
kernel_step
,
kernel_type
,
kernel_width
,
kernel_height
,
...
...
@@ -4975,6 +4976,7 @@ void init_filter2d(FilterContext& c,
}
delete
impl
;
}
#endif
#endif
if
(
DftFilter
::
isAppropriate
(
stype
,
dtype
,
kernel_width
,
kernel_height
))
...
...
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