We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
kernel_size
GaussianBlur()
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
For kernel_size parameter, the doc of GaussianBlur() doesn't explain which is width or height as shown below so we don't know which is which:
Parameters: kernel_size (int or sequence) β Size of the Gaussian kernel.
Parameters:
So the doc should explain which is width or height as shown below:
Parameters: kernel_size (int or sequence) β Size of the Gaussian kernel [width, height].
[width, height]
Or:
Parameters: kernel_size (int or sequence) β Size of the Gaussian kernel [height, width].
[height, width]
The text was updated successfully, but these errors were encountered:
It will always be H and W as in pytorch, but feel free to submit a PR to make this clearer
Sorry, something went wrong.
No branches or pull requests
π The doc issue
For
kernel_size
parameter, the doc ofGaussianBlur()
doesn't explain which is width or height as shown below so we don't know which is which:Suggest a potential alternative/fix
So the doc should explain which is width or height as shown below:
Or:
The text was updated successfully, but these errors were encountered: