Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cv2 missing function imwritemulti #279

Closed
kwsp opened this issue May 24, 2023 · 1 comment · Fixed by #292
Closed

cv2 missing function imwritemulti #279

kwsp opened this issue May 24, 2023 · 1 comment · Fixed by #292

Comments

@kwsp
Copy link

kwsp commented May 24, 2023

imwritemulti is missing from the type stubs.

However, the corresponding imreadmulti is present.

Looks like this overloaded function was merged into OpenCV 4.5.1:

The current cv2 type stubs are generated from 4.4.0. When will it be time to update to a newer version? OpenCV stable is at 4.7.0 already.

@Avasam
Copy link
Contributor

Avasam commented Jun 13, 2023

Given that opencv can now generates python stubs and opencv-python has been updated to ship them, you can try the in-development version using pip install git+https://github.com/opencv/opencv-python.git.

You can set the appropriate environment variables first if you'd like to install a specific package (like headless, contrib or healdless-contrib):

ENABLE_CONTRIB=1
ENABLE_HEADLESS=1

It should work as-is with pyright and mypy, but for Pylance you'll have to remove the bundled stubs every time you update the extension. It can be found at: %HOMEPATH%\.vscode\extensions\ms-python.vscode-pylance-<VERSION>\dist\bundled\stubs\cv2-stubs (where <VERSION> is your current Pylance version).

If the issue persists, you can raise it upstream.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants