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
f7f10a7d
Commit
f7f10a7d
authored
Mar 24, 2015
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3854 from Dmitry-Me:reduceVariableScope8
parents
d7cb9925
ce167e23
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
dxt.cpp
modules/core/src/dxt.cpp
+1
-2
No files found.
modules/core/src/dxt.cpp
View file @
f7f10a7d
...
...
@@ -2449,7 +2449,6 @@ void cv::dft( InputArray _src0, OutputArray _dst, int flags, int nonzero_rows )
(
DFTFunc
)
CCSIDFT_64f
};
AutoBuffer
<
uchar
>
buf
;
void
*
spec
=
0
;
Mat
src0
=
_src0
.
getMat
(),
src
=
src0
;
int
prev_len
=
0
,
stage
=
0
;
bool
inv
=
(
flags
&
DFT_INVERSE
)
!=
0
;
...
...
@@ -2570,7 +2569,7 @@ void cv::dft( InputArray _src0, OutputArray _dst, int flags, int nonzero_rows )
sz
=
2
*
len
*
complex_elem_size
;
}
spec
=
0
;
void
*
spec
=
0
;
#ifdef USE_IPP_DFT
if
(
CV_IPP_CHECK_COND
&&
(
len
*
count
>=
64
)
)
// use IPP DFT if available
{
...
...
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