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
10ea580f
Commit
10ea580f
authored
Aug 01, 2011
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Java API: Added more classes from features2d.
parent
33df5ea0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
76 additions
and
0 deletions
+76
-0
features2d_manual.hpp
modules/java/src/cpp/features2d_manual.hpp
+76
-0
No files found.
modules/java/src/cpp/features2d_manual.hpp
View file @
10ea580f
...
...
@@ -6,6 +6,27 @@
namespace
cv
{
class
CV_EXPORTS_AS
(
FeatureDetector
)
javaFeatureDetector
:
public
FeatureDetector
{
public
:
#if 0
void detect( const Mat& image, vector<KeyPoint>& keypoints, const Mat& mask=Mat() ) const;
void detect( const vector<Mat>& images, vector<vector<KeyPoint> >& keypoints, const vector<Mat>& masks=vector<Mat>() ) const;
virtual void read( const FileNode& );
virtual void write( FileStorage& ) const;
virtual bool empty() const;
#endif
//supported: FAST STAR SIFT SURF ORB MSER GFTT HARRIS Grid(XXXX) Pyramid(XXXX) Dynamic(XXXX)
//not supported: SimpleBlob, Dense
CV_WRAP_AS
(
create
)
static
javaFeatureDetector
*
jcreate
(
const
string
&
detectorType
)
{
Ptr
<
FeatureDetector
>
detector
=
FeatureDetector
::
create
(
detectorType
);
detector
.
addref
();
return
(
javaFeatureDetector
*
)((
FeatureDetector
*
)
detector
);
}
};
class
CV_EXPORTS_AS
(
DescriptorMatcher
)
javaDescriptorMatcher
:
public
DescriptorMatcher
{
public
:
...
...
@@ -42,6 +63,7 @@ public:
return
(
javaDescriptorMatcher
*
)((
DescriptorMatcher
*
)
matcher
);
}
//supported: FlannBased, BruteForce, BruteForce-L1, BruteForce-Hamming, BruteForce-HammingLUT
CV_WRAP_AS
(
create
)
static
javaDescriptorMatcher
*
jcreate
(
const
string
&
descriptorMatcherType
)
{
Ptr
<
DescriptorMatcher
>
matcher
=
DescriptorMatcher
::
create
(
descriptorMatcherType
);
...
...
@@ -50,6 +72,59 @@ public:
}
};
class
CV_EXPORTS_AS
(
DescriptorExtractor
)
javaDescriptorExtractor
:
public
DescriptorExtractor
{
public
:
#if 0
CV_WRAP void compute( const Mat& image, vector<KeyPoint>& keypoints, Mat& descriptors ) const;
CV_WRAP void compute( const vector<Mat>& images, vector<vector<KeyPoint> >& keypoints, vector<Mat>& descriptors ) const;
CV_WRAP virtual void read( const FileNode& );
CV_WRAP virtual void write( FileStorage& ) const;
CV_WRAP virtual int descriptorSize() const = 0;
CV_WRAP virtual int descriptorType() const = 0;
CV_WRAP virtual bool empty() const;
#endif
//supported SIFT, SURF, ORB, BRIEF, Opponent(XXXX)
//not supported: Calonder
CV_WRAP_AS
(
create
)
static
javaDescriptorExtractor
*
jcreate
(
const
string
&
descriptorExtractorType
)
{
Ptr
<
DescriptorExtractor
>
extractor
=
DescriptorExtractor
::
create
(
descriptorExtractorType
);
extractor
.
addref
();
return
(
javaDescriptorExtractor
*
)((
DescriptorExtractor
*
)
extractor
);
}
};
#if 0
enum
{
DRAW_OVER_OUTIMG = 1, // Output image matrix will not be created (Mat::create).
// Matches will be drawn on existing content of output image.
NOT_DRAW_SINGLE_POINTS = 2, // Single keypoints will not be drawn.
DRAW_RICH_KEYPOINTS = 4 // For each keypoint the circle around keypoint with keypoint size and
// orientation will be drawn.
};
// Draw keypoints.
CV_EXPORTS_W void drawKeypoints( const Mat& image, const vector<KeyPoint>& keypoints, Mat& outImage,
const Scalar& color=Scalar::all(-1), int flags=0 );
// Draws matches of keypints from two images on output image.
CV_EXPORTS_W void drawMatches( const Mat& img1, const vector<KeyPoint>& keypoints1,
const Mat& img2, const vector<KeyPoint>& keypoints2,
const vector<DMatch>& matches1to2, Mat& outImg,
const Scalar& matchColor=Scalar::all(-1), const Scalar& singlePointColor=Scalar::all(-1),
const vector<char>& matchesMask=vector<char>(), int flags=0 );
CV_EXPORTS_W void drawMatches( const Mat& img1, const vector<KeyPoint>& keypoints1,
const Mat& img2, const vector<KeyPoint>& keypoints2,
const vector<vector<DMatch> >& matches1to2, Mat& outImg,
const Scalar& matchColor=Scalar::all(-1), const Scalar& singlePointColor=Scalar::all(-1),
const vector<vector<char> >& matchesMask=vector<vector<char> >(), int flags=0);
#endif
}
//cv
#endif // __OPENCV_FEATURES_2D_MANUAL_HPP__
\ No newline at end of file
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