We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0279efb commit fed2178Copy full SHA for fed2178
setup.py
@@ -93,7 +93,7 @@ def main():
93
# Path regexes with forward slashes relative to CMake install dir.
94
rearrange_cmake_output_data = {
95
"cv2": (
96
- [r"bin/opencv_ffmpeg\d{3,4}%s\.dll" % ("_64" if x64 else "")]
+ [r"bin/opencv_videoio_ffmpeg\d{3}%s\.dll" % ("_64" if x64 else "")]
97
if os.name == "nt"
98
else []
99
)
@@ -106,7 +106,7 @@ def main():
106
% {"ext": re.escape(sysconfig.get_config_var("EXT_SUFFIX"))}
107
],
108
"cv2.data": [ # OPENCV_OTHER_INSTALL_PATH
109
- ("etc" if os.name == "nt" else "share/OpenCV") + r"/haarcascades/.*\.xml"
+ ("etc" if os.name == "nt" else "share/opencv4") + r"/haarcascades/.*\.xml"
110
111
}
112
0 commit comments