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
f8193232
Commit
f8193232
authored
Mar 12, 2016
by
Balint Cristian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix AGAST keypoint declared size.
parent
c41dc915
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
agast.cpp
modules/features2d/src/agast.cpp
+9
-9
No files found.
modules/features2d/src/agast.cpp
View file @
f8193232
...
...
@@ -793,7 +793,7 @@ static void AGAST_5_8(InputArray _img, std::vector<KeyPoint>& keypoints, int thr
keypoints
.
reserve
(
nExpectedCorners
);
}
}
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
1
.0
f
));
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
7
.0
f
));
total
++
;
goto
homogeneous
;
success_structured
:
...
...
@@ -810,7 +810,7 @@ static void AGAST_5_8(InputArray _img, std::vector<KeyPoint>& keypoints, int thr
keypoints
.
reserve
(
nExpectedCorners
);
}
}
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
1
.0
f
));
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
7
.0
f
));
total
++
;
goto
structured
;
}
...
...
@@ -3237,7 +3237,7 @@ static void AGAST_7_12d(InputArray _img, std::vector<KeyPoint>& keypoints, int t
keypoints
.
reserve
(
nExpectedCorners
);
}
}
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
1
.0
f
));
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
7
.0
f
));
total
++
;
goto
homogeneous
;
success_structured
:
...
...
@@ -3254,7 +3254,7 @@ static void AGAST_7_12d(InputArray _img, std::vector<KeyPoint>& keypoints, int t
keypoints
.
reserve
(
nExpectedCorners
);
}
}
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
1
.0
f
));
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
7
.0
f
));
total
++
;
goto
structured
;
}
...
...
@@ -5319,7 +5319,7 @@ static void AGAST_7_12s(InputArray _img, std::vector<KeyPoint>& keypoints, int t
keypoints
.
reserve
(
nExpectedCorners
);
}
}
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
1
.0
f
));
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
7
.0
f
));
total
++
;
goto
homogeneous
;
success_structured
:
...
...
@@ -5336,7 +5336,7 @@ static void AGAST_7_12s(InputArray _img, std::vector<KeyPoint>& keypoints, int t
keypoints
.
reserve
(
nExpectedCorners
);
}
}
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
1
.0
f
));
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
7
.0
f
));
total
++
;
goto
structured
;
}
...
...
@@ -7440,7 +7440,7 @@ static void OAST_9_16(InputArray _img, std::vector<KeyPoint>& keypoints, int thr
keypoints
.
reserve
(
nExpectedCorners
);
}
}
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
1
.0
f
));
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
7
.0
f
));
total
++
;
}
}
...
...
@@ -7892,7 +7892,7 @@ static void AGAST_ALL(InputArray _img, std::vector<KeyPoint>& keypoints, int thr
keypoints
.
reserve
(
nExpectedCorners
);
}
}
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
1
.0
f
));
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
7
.0
f
));
total
++
;
goto
homogeneous
;
success_structured
:
...
...
@@ -7909,7 +7909,7 @@ static void AGAST_ALL(InputArray _img, std::vector<KeyPoint>& keypoints, int thr
keypoints
.
reserve
(
nExpectedCorners
);
}
}
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
1
.0
f
));
keypoints
.
push_back
(
KeyPoint
(
Point2f
((
float
)
x
,
(
float
)
y
),
7
.0
f
));
total
++
;
goto
structured
;
}
...
...
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