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
c235bbfc
Commit
c235bbfc
authored
Jun 30, 2017
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9050 from alalek:dnn_binding_fixes
parents
a84a5e8f
6ea6e4bc
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
6 deletions
+18
-6
dict.hpp
modules/dnn/include/opencv2/dnn/dict.hpp
+2
-0
common.cmake
modules/python/common.cmake
+7
-3
gen2.py
modules/python/src2/gen2.py
+1
-1
hdr_parser.py
modules/python/src2/hdr_parser.py
+8
-2
No files found.
modules/dnn/include/opencv2/dnn/dict.hpp
View file @
c235bbfc
...
...
@@ -46,6 +46,8 @@
#include <map>
#include <ostream>
#include <opencv2/dnn/dnn.hpp>
namespace
cv
{
namespace
dnn
{
CV__DNN_EXPERIMENTAL_NS_BEGIN
...
...
modules/python/common.cmake
View file @
c235bbfc
...
...
@@ -32,13 +32,16 @@ foreach(m ${OPENCV_PYTHON_MODULES})
endforeach
(
m
)
# header blacklist
ocv_list_filterout
(
opencv_hdrs
"modules/.*.h$"
)
ocv_list_filterout
(
opencv_hdrs
"modules/.*
\\\\
.h$"
)
ocv_list_filterout
(
opencv_hdrs
"modules/core/.*/cuda"
)
ocv_list_filterout
(
opencv_hdrs
"modules/cuda.*"
)
ocv_list_filterout
(
opencv_hdrs
"modules/cudev"
)
ocv_list_filterout
(
opencv_hdrs
"modules/core/.*/hal/"
)
ocv_list_filterout
(
opencv_hdrs
"modules/.+/utils/.*"
)
ocv_list_filterout
(
opencv_hdrs
"modules/.*/detection_based_tracker.hpp"
)
# Conditional compilation
ocv_list_filterout
(
opencv_hdrs
"modules/.*
\\\\
.inl
\\\\
.h*"
)
ocv_list_filterout
(
opencv_hdrs
"modules/.*_inl
\\\\
.h*"
)
ocv_list_filterout
(
opencv_hdrs
"modules/.*
\\\\
.details
\\\\
.h*"
)
ocv_list_filterout
(
opencv_hdrs
"modules/.*/detection_based_tracker
\\\\
.hpp"
)
# Conditional compilation
set
(
cv2_generated_hdrs
"
${
CMAKE_CURRENT_BINARY_DIR
}
/pyopencv_generated_include.h"
...
...
@@ -47,7 +50,8 @@ set(cv2_generated_hdrs
"
${
CMAKE_CURRENT_BINARY_DIR
}
/pyopencv_generated_type_reg.h"
"
${
CMAKE_CURRENT_BINARY_DIR
}
/pyopencv_generated_ns_reg.h"
)
file
(
WRITE
"
${
CMAKE_CURRENT_BINARY_DIR
}
/headers.txt"
"
${
opencv_hdrs
}
"
)
string
(
REPLACE
";"
"
\n
"
opencv_hdrs_
"
${
opencv_hdrs
}
"
)
file
(
WRITE
"
${
CMAKE_CURRENT_BINARY_DIR
}
/headers.txt"
"
${
opencv_hdrs_
}
"
)
add_custom_command
(
OUTPUT
${
cv2_generated_hdrs
}
COMMAND
${
PYTHON_DEFAULT_EXECUTABLE
}
"
${
PYTHON_SOURCE_DIR
}
/src2/gen2.py"
${
CMAKE_CURRENT_BINARY_DIR
}
"
${
CMAKE_CURRENT_BINARY_DIR
}
/headers.txt"
"
${
PYTHON
}
"
...
...
modules/python/src2/gen2.py
View file @
c235bbfc
...
...
@@ -977,6 +977,6 @@ if __name__ == "__main__":
if
len
(
sys
.
argv
)
>
1
:
dstdir
=
sys
.
argv
[
1
]
if
len
(
sys
.
argv
)
>
2
:
srcfiles
=
open
(
sys
.
argv
[
2
],
'r'
)
.
read
()
.
split
(
';'
)
srcfiles
=
[
f
.
strip
()
for
f
in
open
(
sys
.
argv
[
2
],
'r'
)
.
readlines
()]
generator
=
PythonWrapperGenerator
()
generator
.
gen
(
srcfiles
,
dstdir
)
modules/python/src2/hdr_parser.py
View file @
c235bbfc
...
...
@@ -769,7 +769,7 @@ class CppHeaderParser(object):
for
l0
in
linelist
:
self
.
lineno
+=
1
#print
self.lineno
#print
(state, self.lineno, l0)
l
=
l0
.
strip
()
...
...
@@ -798,8 +798,13 @@ class CppHeaderParser(object):
l
=
l
[
pos
+
2
:]
state
=
SCAN
if
l
.
startswith
(
'CV__'
):
# just ignore this lines
#print('IGNORE: ' + l)
state
=
SCAN
continue
if
state
!=
SCAN
:
print
(
"Error at
%
d: invlid state =
%
d"
%
(
self
.
lineno
,
state
))
print
(
"Error at
%
d: inv
a
lid state =
%
d"
%
(
self
.
lineno
,
state
))
sys
.
exit
(
-
1
)
while
1
:
...
...
@@ -848,6 +853,7 @@ class CppHeaderParser(object):
stmt
=
(
block_head
+
" "
+
l
[:
pos
])
.
strip
()
stmt
=
" "
.
join
(
stmt
.
split
())
# normalize the statement
#print(stmt)
stack_top
=
self
.
block_stack
[
-
1
]
if
stmt
.
startswith
(
"@"
):
...
...
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