-
-
Notifications
You must be signed in to change notification settings - Fork 471
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build!: update OpenCV version to 4.10.0 (#1295)
* build: build OpenCV 4 for Linux * build: enable optflow * build: OpenCV 4 for macOS * build: OpenCV 4 for iOS * build: OpenCV 4.5.5 -> 4.10.0 * fix: OpenCV lib path on Windows * build: link self-built OpenCV framework by default
- Loading branch information
Showing
18 changed files
with
1,153 additions
and
36 deletions.
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
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
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
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
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,5 @@ | ||
filegroup( | ||
name = "all", | ||
srcs = glob(["**"]), | ||
visibility = ["//visibility:public"], | ||
) |
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,13 @@ | ||
diff --git a/modules/objc/generator/gen_objc.py b/modules/objc/generator/gen_objc.py | ||
index 58b7dd555c..6a90ebbc72 100755 | ||
--- a/modules/objc/generator/gen_objc.py | ||
+++ b/modules/objc/generator/gen_objc.py | ||
@@ -1661,7 +1661,7 @@ if __name__ == "__main__": | ||
h_files += [os.path.join(root, filename) for filename in fnmatch.filter(filenames, '*.h')] | ||
hpp_files += [os.path.join(root, filename) for filename in fnmatch.filter(filenames, '*.hpp')] | ||
srcfiles = h_files + hpp_files | ||
- srcfiles = [f for f in srcfiles if not re_bad.search(f.replace('\\', '/'))] | ||
+ srcfiles = [f for f in srcfiles if not re_bad.search(f.removeprefix(module_location).replace('\\', '/'))] | ||
logging.info("\nFiles (%d):\n%s", len(srcfiles), pformat(srcfiles)) | ||
|
||
common_headers_fname = os.path.join(misc_location, 'filelist_common') |
Oops, something went wrong.