commit | 4fe44ea7303e990e98f254f11265bd1b08e25198 | [log] [tgz] |
---|---|---|
author | Brian Silverman <bsilver16384@gmail.com> | Sun Feb 02 12:56:42 2020 -0800 |
committer | Brian Silverman <bsilver16384@gmail.com> | Sun Feb 02 12:57:44 2020 -0800 |
tree | 69a4f9efcbb0e8fe55e913da3392b71454203f17 | |
parent | 7d6008f0cff087e27c700f05712c307462cb743c [diff] |
Add a python-wrapped opencv, complete with SIFT support Change-Id: I06cd05a8974670fb886123ef24e4c44c2a985362
diff --git a/debian/opencv_python.BUILD b/debian/opencv_python.BUILD new file mode 100644 index 0000000..5afa180 --- /dev/null +++ b/debian/opencv_python.BUILD
@@ -0,0 +1,10 @@ +py_library( + name = "python_opencv", + srcs = glob(["**/*.py"]), + data = glob( + include = ["**/*"], + exclude = ["**/*.py"], + ), + imports = ["."], + visibility = ["//visibility:public"], +)