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
37c1204d
Commit
37c1204d
authored
Nov 03, 2010
by
Maria Dimashova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated doc on common interfaces of features2d; added some method for GenericDescriptorMatcher
parent
4a430413
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
features2d_feature_detection.tex
doc/features2d_feature_detection.tex
+0
-0
features2d.hpp
modules/features2d/include/opencv2/features2d/features2d.hpp
+8
-0
No files found.
doc/features2d_feature_detection.tex
View file @
37c1204d
This diff is collapsed.
Click to expand it.
modules/features2d/include/opencv2/features2d/features2d.hpp
View file @
37c1204d
...
...
@@ -2059,6 +2059,8 @@ public:
virtual
void
train
()
=
0
;
virtual
bool
supportMask
()
=
0
;
/*
* Classifies query keypoints.
* queryImage The query image
...
...
@@ -2202,6 +2204,8 @@ public:
virtual
void
train
();
virtual
bool
supportMask
()
{
return
false
;
}
// Reads match object from a file node
virtual
void
read
(
const
FileNode
&
fn
);
...
...
@@ -2271,6 +2275,8 @@ public:
virtual
void
train
();
virtual
bool
supportMask
()
{
return
false
;
}
virtual
void
read
(
const
FileNode
&
fn
);
virtual
void
write
(
FileStorage
&
fs
)
const
;
...
...
@@ -2319,6 +2325,8 @@ public:
virtual
void
train
();
virtual
bool
supportMask
()
{
matcher
->
supportMask
();
}
virtual
void
read
(
const
FileNode
&
fn
);
virtual
void
write
(
FileStorage
&
fs
)
const
;
...
...
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