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
56622943
Commit
56622943
authored
Apr 28, 2014
by
Ievgen Khvedchenia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename KAZE to KAZEFeatures to fix MSVS x64 compiler error (Duplicate file name confused it)
parent
599bcfb5
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
akaze.cpp
modules/features2d/src/akaze.cpp
+1
-1
AKAZEFeatures.cpp
modules/features2d/src/akaze/AKAZEFeatures.cpp
+1
-1
AKAZEFeatures.h
modules/features2d/src/akaze/AKAZEFeatures.h
+0
-0
kaze.cpp
modules/features2d/src/kaze.cpp
+1
-1
KAZEFeatures.cpp
modules/features2d/src/kaze/KAZEFeatures.cpp
+6
-6
KAZEFeatures.h
modules/features2d/src/kaze/KAZEFeatures.h
+0
-0
No files found.
modules/features2d/src/akaze.cpp
View file @
56622943
...
...
@@ -49,7 +49,7 @@ http://www.robesafe.com/personal/pablo.alcantarilla/papers/Alcantarilla13bmvc.pd
*/
#include "precomp.hpp"
#include "akaze/AKAZE.h"
#include "akaze/AKAZE
Features
.h"
namespace
cv
{
...
...
modules/features2d/src/akaze/AKAZE.cpp
→
modules/features2d/src/akaze/AKAZE
Features
.cpp
View file @
56622943
...
...
@@ -6,7 +6,7 @@
* @author Pablo F. Alcantarilla, Jesus Nuevo
*/
#include "AKAZE.h"
#include "AKAZE
Features
.h"
#include "fed.h"
#include "nldiffusion_functions.h"
...
...
modules/features2d/src/akaze/AKAZE.h
→
modules/features2d/src/akaze/AKAZE
Features
.h
View file @
56622943
File moved
modules/features2d/src/kaze.cpp
View file @
56622943
...
...
@@ -48,7 +48,7 @@ http://www.robesafe.com/personal/pablo.alcantarilla/papers/Alcantarilla12eccv.pd
*/
#include "precomp.hpp"
#include "kaze/KAZE.h"
#include "kaze/KAZE
Features
.h"
namespace
cv
{
...
...
modules/features2d/src/kaze/KAZE.cpp
→
modules/features2d/src/kaze/KAZE
Features
.cpp
View file @
56622943
...
...
@@ -14,14 +14,14 @@
//=============================================================================
/**
* @file KAZE.cpp
* @file KAZE
Features
.cpp
* @brief Main class for detecting and describing features in a nonlinear
* scale space
* @date Jan 21, 2012
* @author Pablo F. Alcantarilla
*/
#include "KAZE.h"
#include "KAZE
Features
.h"
// Namespaces
using
namespace
std
;
...
...
@@ -381,20 +381,20 @@ void KAZEFeatures::Determinant_Hessian_Parallel(std::vector<cv::KeyPoint>& kpts)
#ifdef _OPENMP
#pragma omp parallel for
#endif
for
(
int
i
=
1
;
i
<
evolution_
.
size
()
-
1
;
i
++
)
{
for
(
int
i
=
1
;
i
<
(
int
)
evolution_
.
size
()
-
1
;
i
++
)
{
Find_Extremum_Threading
(
i
);
}
// Now fill the vector of keypoints!!!
for
(
int
i
=
0
;
i
<
kpts_par_
.
size
();
i
++
)
{
for
(
int
j
=
0
;
j
<
kpts_par_
[
i
].
size
();
j
++
)
{
for
(
int
i
=
0
;
i
<
(
int
)
kpts_par_
.
size
();
i
++
)
{
for
(
int
j
=
0
;
j
<
(
int
)
kpts_par_
[
i
].
size
();
j
++
)
{
level
=
i
+
1
;
is_extremum
=
true
;
is_repeated
=
false
;
is_out
=
false
;
// Check in case we have the same point as maxima in previous evolution levels
for
(
int
ik
=
0
;
ik
<
kpts
.
size
();
ik
++
)
{
for
(
int
ik
=
0
;
ik
<
(
int
)
kpts
.
size
();
ik
++
)
{
if
(
kpts
[
ik
].
class_id
==
level
||
kpts
[
ik
].
class_id
==
level
+
1
||
kpts
[
ik
].
class_id
==
level
-
1
)
{
dist
=
pow
(
kpts_par_
[
i
][
j
].
pt
.
x
-
kpts
[
ik
].
pt
.
x
,
2
)
+
pow
(
kpts_par_
[
i
][
j
].
pt
.
y
-
kpts
[
ik
].
pt
.
y
,
2
);
...
...
modules/features2d/src/kaze/KAZE.h
→
modules/features2d/src/kaze/KAZE
Features
.h
View file @
56622943
File moved
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