-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ✨ Add `opencv_extras` recipe * 🚧 Test `opencv_extras` build via github actions * ⏪ Revert "🚧 Test `opencv_extras` build via github actions" This reverts commit eb6cc6b * 👌 Remove unneeded development inline comment
- Loading branch information
Showing
2 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
from pythonforandroid.recipe import Recipe | ||
|
||
|
||
class OpenCVExtrasRecipe(Recipe): | ||
""" | ||
OpenCV extras recipe allows us to build extra modules from the | ||
`opencv_contrib` repository. It depends on opencv recipe and all the build | ||
of the modules will be performed inside opencv recipe build directory. | ||
.. note:: the version of this recipe should be the same than opencv recipe. | ||
.. warning:: Be aware that these modules are experimental, some of them | ||
maybe included in opencv future releases and removed from extras. | ||
.. seealso:: https://github.com/opencv/opencv_contrib | ||
""" | ||
version = '4.0.1' | ||
url = 'https://github.com/opencv/opencv_contrib/archive/{version}.zip' | ||
depends = ['opencv'] | ||
|
||
|
||
recipe = OpenCVExtrasRecipe() |