We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Thanks for putting together this library, it's great to have a version that can be imported and that has type support.
Now I'm using it in a strictly type-checked project I've found an incorrect type. minMaxLoc is reported as
minMaxLoc
function minMaxLoc(src: cv.Mat, minVal: any, maxVal?: any, minLoc?: any, maxLoc?: any, mask?: cv.Mat | undefined): void (+1 overload)
but when I use it it returns an object
const minMaxLoc = cv.minMaxLoc(grayImage)
The text was updated successfully, but these errors were encountered:
Incorrect type for minMaxLoc #21
e244baa
Fixed in v4.8.0-release.6
Sorry, something went wrong.
No branches or pull requests
Thanks for putting together this library, it's great to have a version that can be imported and that has type support.
Now I'm using it in a strictly type-checked project I've found an incorrect type.
minMaxLoc
is reported asbut when I use it it returns an object
The text was updated successfully, but these errors were encountered: