Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
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_contrib
Commits
ca7c573e
Commit
ca7c573e
authored
Mar 26, 2015
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #197 from mshabunin/fix-python
Wrap face module with python and java
parents
36fbabf2
aa11ac48
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
21 deletions
+21
-21
facerec.hpp
modules/face/include/opencv2/face/facerec.hpp
+21
-21
No files found.
modules/face/include/opencv2/face/facerec.hpp
View file @
ca7c573e
...
@@ -21,18 +21,18 @@ class CV_EXPORTS_W BasicFaceRecognizer : public FaceRecognizer
...
@@ -21,18 +21,18 @@ class CV_EXPORTS_W BasicFaceRecognizer : public FaceRecognizer
{
{
public
:
public
:
/** @see setNumComponents */
/** @see setNumComponents */
virtual
int
getNumComponents
()
const
=
0
;
CV_WRAP
virtual
int
getNumComponents
()
const
=
0
;
/** @copybrief getNumComponents @see getNumComponents */
/** @copybrief getNumComponents @see getNumComponents */
virtual
void
setNumComponents
(
int
val
)
=
0
;
CV_WRAP
virtual
void
setNumComponents
(
int
val
)
=
0
;
/** @see setThreshold */
/** @see setThreshold */
virtual
double
getThreshold
()
const
=
0
;
CV_WRAP
virtual
double
getThreshold
()
const
=
0
;
/** @copybrief getThreshold @see getThreshold */
/** @copybrief getThreshold @see getThreshold */
virtual
void
setThreshold
(
double
val
)
=
0
;
CV_WRAP
virtual
void
setThreshold
(
double
val
)
=
0
;
virtual
std
::
vector
<
cv
::
Mat
>
getProjections
()
const
=
0
;
CV_WRAP
virtual
std
::
vector
<
cv
::
Mat
>
getProjections
()
const
=
0
;
virtual
cv
::
Mat
getLabels
()
const
=
0
;
CV_WRAP
virtual
cv
::
Mat
getLabels
()
const
=
0
;
virtual
cv
::
Mat
getEigenValues
()
const
=
0
;
CV_WRAP
virtual
cv
::
Mat
getEigenValues
()
const
=
0
;
virtual
cv
::
Mat
getEigenVectors
()
const
=
0
;
CV_WRAP
virtual
cv
::
Mat
getEigenVectors
()
const
=
0
;
virtual
cv
::
Mat
getMean
()
const
=
0
;
CV_WRAP
virtual
cv
::
Mat
getMean
()
const
=
0
;
};
};
/**
/**
...
@@ -102,27 +102,27 @@ class CV_EXPORTS_W LBPHFaceRecognizer : public FaceRecognizer
...
@@ -102,27 +102,27 @@ class CV_EXPORTS_W LBPHFaceRecognizer : public FaceRecognizer
{
{
public
:
public
:
/** @see setGridX */
/** @see setGridX */
virtual
int
getGridX
()
const
=
0
;
CV_WRAP
virtual
int
getGridX
()
const
=
0
;
/** @copybrief getGridX @see getGridX */
/** @copybrief getGridX @see getGridX */
virtual
void
setGridX
(
int
val
)
=
0
;
CV_WRAP
virtual
void
setGridX
(
int
val
)
=
0
;
/** @see setGridY */
/** @see setGridY */
virtual
int
getGridY
()
const
=
0
;
CV_WRAP
virtual
int
getGridY
()
const
=
0
;
/** @copybrief getGridY @see getGridY */
/** @copybrief getGridY @see getGridY */
virtual
void
setGridY
(
int
val
)
=
0
;
CV_WRAP
virtual
void
setGridY
(
int
val
)
=
0
;
/** @see setRadius */
/** @see setRadius */
virtual
int
getRadius
()
const
=
0
;
CV_WRAP
virtual
int
getRadius
()
const
=
0
;
/** @copybrief getRadius @see getRadius */
/** @copybrief getRadius @see getRadius */
virtual
void
setRadius
(
int
val
)
=
0
;
CV_WRAP
virtual
void
setRadius
(
int
val
)
=
0
;
/** @see setNeighbors */
/** @see setNeighbors */
virtual
int
getNeighbors
()
const
=
0
;
CV_WRAP
virtual
int
getNeighbors
()
const
=
0
;
/** @copybrief getNeighbors @see getNeighbors */
/** @copybrief getNeighbors @see getNeighbors */
virtual
void
setNeighbors
(
int
val
)
=
0
;
CV_WRAP
virtual
void
setNeighbors
(
int
val
)
=
0
;
/** @see setThreshold */
/** @see setThreshold */
virtual
double
getThreshold
()
const
=
0
;
CV_WRAP
virtual
double
getThreshold
()
const
=
0
;
/** @copybrief getThreshold @see getThreshold */
/** @copybrief getThreshold @see getThreshold */
virtual
void
setThreshold
(
double
val
)
=
0
;
CV_WRAP
virtual
void
setThreshold
(
double
val
)
=
0
;
virtual
std
::
vector
<
cv
::
Mat
>
getHistograms
()
const
=
0
;
CV_WRAP
virtual
std
::
vector
<
cv
::
Mat
>
getHistograms
()
const
=
0
;
virtual
cv
::
Mat
getLabels
()
const
=
0
;
CV_WRAP
virtual
cv
::
Mat
getLabels
()
const
=
0
;
};
};
/**
/**
...
...
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