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
The validPixROI param in C++ :
validPixROI
Rect * validPixROI = 0,
It should corresponds in Rust:
valid_pix_roi: Option<&mut Rect>,
I want send null pointer (as in C++) into function, but it is impossible with current API.
Current Rust API C++ API
The text was updated successfully, but these errors were encountered:
You are right, thanks for the report! I’ll try to fix it asap
Sorry, something went wrong.
9b45452
This should now be fixed in v0.66.0, thanks!
Generate valid_pix_roi argument of get_optimal_new_camera_matrix …
valid_pix_roi
get_optimal_new_camera_matrix
b978d79
…as optional argument (fixes twistedfall#349)
No branches or pull requests
The
validPixROI
param in C++ :It should corresponds in Rust:
I want send null pointer (as in C++) into function, but it is impossible with current API.
Current Rust API
C++ API
The text was updated successfully, but these errors were encountered: