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
8ecc5e6f
Commit
8ecc5e6f
authored
Oct 16, 2018
by
Dmitry Kurtaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add tests for features2d JavaScript bindings
parent
554eae56
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
100 additions
and
8 deletions
+100
-8
core_bindings.cpp
modules/js/src/core_bindings.cpp
+12
-0
embindgen.py
modules/js/src/embindgen.py
+1
-1
test_features2d.js
modules/js/test/test_features2d.js
+82
-0
tests.html
modules/js/test/tests.html
+1
-6
tests.js
modules/js/test/tests.js
+1
-1
build_js.py
platforms/js/build_js.py
+3
-0
No files found.
modules/js/src/core_bindings.cpp
View file @
8ecc5e6f
...
...
@@ -74,7 +74,9 @@
using
namespace
emscripten
;
using
namespace
cv
;
#ifdef HAVE_OPENCV_DNN
using
namespace
dnn
;
#endif
namespace
binding_utils
{
...
...
@@ -276,13 +278,16 @@ namespace binding_utils
float
radius
;
};
#ifdef HAVE_OPENCV_IMGPROC
Circle
minEnclosingCircle
(
const
cv
::
Mat
&
points
)
{
Circle
circle
;
cv
::
minEnclosingCircle
(
points
,
circle
.
center
,
circle
.
radius
);
return
circle
;
}
#endif
#ifdef HAVE_OPENCV_VIDEO
emscripten
::
val
CamShiftWrapper
(
const
cv
::
Mat
&
arg1
,
Rect
&
arg2
,
TermCriteria
arg3
)
{
RotatedRect
rotatedRect
=
cv
::
CamShift
(
arg1
,
arg2
,
arg3
);
...
...
@@ -300,6 +305,7 @@ namespace binding_utils
result
.
call
<
void
>
(
"push"
,
arg2
);
return
result
;
}
#endif // HAVE_OPENCV_VIDEO
std
::
string
getExceptionMsg
(
const
cv
::
Exception
&
e
)
{
return
e
.
msg
;
...
...
@@ -538,19 +544,25 @@ EMSCRIPTEN_BINDINGS(binding_utils)
function
(
"exceptionFromPtr"
,
&
binding_utils
::
exceptionFromPtr
,
allow_raw_pointers
());
#ifdef HAVE_OPENCV_IMGPROC
function
(
"minEnclosingCircle"
,
select_overload
<
binding_utils
::
Circle
(
const
cv
::
Mat
&
)
>
(
&
binding_utils
::
minEnclosingCircle
));
#endif
function
(
"minMaxLoc"
,
select_overload
<
binding_utils
::
MinMaxLoc
(
const
cv
::
Mat
&
,
const
cv
::
Mat
&
)
>
(
&
binding_utils
::
minMaxLoc
));
function
(
"minMaxLoc"
,
select_overload
<
binding_utils
::
MinMaxLoc
(
const
cv
::
Mat
&
)
>
(
&
binding_utils
::
minMaxLoc_1
));
#ifdef HAVE_OPENCV_IMGPROC
function
(
"morphologyDefaultBorderValue"
,
&
cv
::
morphologyDefaultBorderValue
);
#endif
function
(
"CV_MAT_DEPTH"
,
&
binding_utils
::
cvMatDepth
);
#ifdef HAVE_OPENCV_VIDEO
function
(
"CamShift"
,
select_overload
<
emscripten
::
val
(
const
cv
::
Mat
&
,
Rect
&
,
TermCriteria
)
>
(
&
binding_utils
::
CamShiftWrapper
));
function
(
"meanShift"
,
select_overload
<
emscripten
::
val
(
const
cv
::
Mat
&
,
Rect
&
,
TermCriteria
)
>
(
&
binding_utils
::
meanShiftWrapper
));
#endif
function
(
"getBuildInformation"
,
&
binding_utils
::
getBuildInformation
);
...
...
modules/js/src/embindgen.py
View file @
8ecc5e6f
...
...
@@ -141,7 +141,7 @@ features2d = {'Feature2D': ['detect', 'compute', 'detectAndCompute', 'descriptor
'AKAZE'
:
[
'create'
,
'setDescriptorType'
,
'getDescriptorType'
,
'setDescriptorSize'
,
'getDescriptorSize'
,
'setDescriptorChannels'
,
'getDescriptorChannels'
,
'setThreshold'
,
'getThreshold'
,
'setNOctaves'
,
'getNOctaves'
,
'setNOctaveLayers'
,
'getNOctaveLayers'
,
'setDiffusivity'
,
'getDiffusivity'
,
'getDefaultName'
],
'DescriptorMatcher'
:
[
'add'
,
'clear'
,
'empty'
,
'isMaskSupported'
,
'train'
,
'match'
,
'knnMatch'
,
'radiusMatch'
,
'clone'
,
'create'
],
'BFMatcher'
:
[
'isMaskSupported'
,
'create'
],
''
:
[
'
FAST'
,
'AGAST'
,
'
drawKeypoints'
,
'drawMatches'
]}
''
:
[
'drawKeypoints'
,
'drawMatches'
]}
def
makeWhiteList
(
module_list
):
wl
=
{}
...
...
modules/js/test/test_features2d.js
0 → 100644
View file @
8ecc5e6f
// This file is part of OpenCV project.
// It is subject to the license terms in the LICENSE file found in the top-level directory
// of this distribution and at http://opencv.org/license.html.
if
(
typeof
module
!==
'undefined'
&&
module
.
exports
)
{
// The envrionment is Node.js
var
cv
=
require
(
'./opencv.js'
);
// eslint-disable-line no-var
}
function
generateTestFrame
(
width
,
height
)
{
let
w
=
width
||
200
;
let
h
=
height
||
200
;
let
img
=
new
cv
.
Mat
(
h
,
w
,
cv
.
CV_8UC1
,
new
cv
.
Scalar
(
0
,
0
,
0
,
0
));
let
s
=
new
cv
.
Scalar
(
255
,
255
,
255
,
255
);
let
s128
=
new
cv
.
Scalar
(
128
,
128
,
128
,
128
);
let
rect
=
new
cv
.
Rect
(
w
/
4
,
h
/
4
,
w
/
2
,
h
/
2
);
img
.
roi
(
rect
).
setTo
(
s
);
img
.
roi
(
new
cv
.
Rect
(
w
/
2
-
w
/
8
,
h
/
2
-
h
/
8
,
w
/
4
,
h
/
4
)).
setTo
(
s128
);
cv
.
rectangle
(
img
,
new
cv
.
Point
(
w
/
8
,
h
/
8
),
new
cv
.
Point
(
w
-
w
/
8
,
h
-
h
/
8
),
s
,
5
);
cv
.
rectangle
(
img
,
new
cv
.
Point
(
w
/
5
,
h
/
5
),
new
cv
.
Point
(
w
-
w
/
5
,
h
-
h
/
5
),
s128
,
3
);
cv
.
line
(
img
,
new
cv
.
Point
(
-
w
,
0
),
new
cv
.
Point
(
w
/
2
,
h
/
2
),
s128
,
5
);
cv
.
line
(
img
,
new
cv
.
Point
(
2
*
w
,
0
),
new
cv
.
Point
(
w
/
2
,
h
/
2
),
s
,
5
);
return
img
;
}
QUnit
.
module
(
'Features2D'
,
{});
QUnit
.
test
(
'Detectors'
,
function
(
assert
)
{
let
image
=
generateTestFrame
();
let
kp
=
new
cv
.
KeyPointVector
();
let
orb
=
new
cv
.
ORB
();
orb
.
detect
(
image
,
kp
);
assert
.
equal
(
kp
.
size
(),
67
,
'ORB'
);
let
mser
=
new
cv
.
MSER
();
mser
.
detect
(
image
,
kp
);
assert
.
equal
(
kp
.
size
(),
7
,
'MSER'
);
let
brisk
=
new
cv
.
BRISK
();
brisk
.
detect
(
image
,
kp
);
assert
.
equal
(
kp
.
size
(),
191
,
'BRISK'
);
let
ffd
=
new
cv
.
FastFeatureDetector
();
ffd
.
detect
(
image
,
kp
);
assert
.
equal
(
kp
.
size
(),
12
,
'FastFeatureDetector'
);
let
afd
=
new
cv
.
AgastFeatureDetector
();
afd
.
detect
(
image
,
kp
);
assert
.
equal
(
kp
.
size
(),
67
,
'AgastFeatureDetector'
);
let
gftt
=
new
cv
.
GFTTDetector
();
gftt
.
detect
(
image
,
kp
);
assert
.
equal
(
kp
.
size
(),
168
,
'GFTTDetector'
);
let
kaze
=
new
cv
.
KAZE
();
kaze
.
detect
(
image
,
kp
);
assert
.
equal
(
kp
.
size
(),
159
,
'KAZE'
);
let
akaze
=
new
cv
.
AKAZE
();
akaze
.
detect
(
image
,
kp
);
assert
.
equal
(
kp
.
size
(),
52
,
'AKAZE'
);
});
QUnit
.
test
(
'BFMatcher'
,
function
(
assert
)
{
// Generate key points.
let
image
=
generateTestFrame
();
let
kp
=
new
cv
.
KeyPointVector
();
let
descriptors
=
new
cv
.
Mat
();
let
orb
=
new
cv
.
ORB
();
orb
.
detectAndCompute
(
image
,
new
cv
.
Mat
(),
kp
,
descriptors
);
assert
.
equal
(
kp
.
size
(),
67
);
// Run a matcher.
let
dm
=
new
cv
.
DMatchVector
();
let
matcher
=
new
cv
.
BFMatcher
();
matcher
.
match
(
descriptors
,
descriptors
,
dm
);
assert
.
equal
(
dm
.
size
(),
67
);
});
modules/js/test/tests.html
View file @
8ecc5e6f
...
...
@@ -28,6 +28,7 @@
<script
type=
"application/javascript"
src=
"test_imgproc.js"
></script>
<script
type=
"application/javascript"
src=
"test_objdetect.js"
></script>
<script
type=
"application/javascript"
src=
"test_video.js"
></script>
<script
type=
"application/javascript"
src=
"test_features2d.js"
></script>
<script
type=
'text/javascript'
>
QUnit
.
config
.
autostart
=
false
;
...
...
@@ -68,11 +69,5 @@
};
};
</script>
<!--
TODO
<script type="application/javascript" src="test_features2d.js"></script>
-->
</body>
</html>
modules/js/test/tests.js
View file @
8ecc5e6f
...
...
@@ -45,7 +45,7 @@ testrunner.run(
{
code
:
'opencv.js'
,
tests
:
[
'test_mat.js'
,
'test_utils.js'
,
'test_imgproc.js'
,
'test_objdetect.js'
,
'test_video.js'
],
'test_objdetect.js'
,
'test_video.js'
,
'test_features2d.js'
],
},
function
(
err
,
report
)
{
console
.
log
(
report
.
failed
+
' failed, '
+
report
.
passed
+
' passed'
);
...
...
platforms/js/build_js.py
View file @
8ecc5e6f
...
...
@@ -112,6 +112,7 @@ class Builder:
"-DWITH_GPHOTO2=OFF"
,
"-DWITH_LAPACK=OFF"
,
"-DWITH_ITT=OFF"
,
"-DWITH_QUIRC=OFF"
,
"-DBUILD_ZLIB=ON"
,
"-DBUILD_opencv_apps=OFF"
,
"-DBUILD_opencv_calib3d=ON"
,
# No bindings provided. This module is used as a dependency for other modules.
...
...
@@ -128,9 +129,11 @@ class Builder:
"-DBUILD_opencv_superres=OFF"
,
"-DBUILD_opencv_stitching=OFF"
,
"-DBUILD_opencv_java=OFF"
,
"-DBUILD_opencv_java_bindings_generator=OFF"
,
"-DBUILD_opencv_js=ON"
,
"-DBUILD_opencv_python2=OFF"
,
"-DBUILD_opencv_python3=OFF"
,
"-DBUILD_opencv_python_bindings_generator=OFF"
,
"-DBUILD_EXAMPLES=OFF"
,
"-DBUILD_PACKAGE=OFF"
,
"-DBUILD_TESTS=OFF"
,
...
...
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