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
blob_LoG
The correct scale normalization for LoG should be -σ^2 instead of -σ in the multiLoG function called by blob_LoG.
-σ^2
-σ
multiLoG
In addition, the docstring of BlobLoG says:
BlobLoG
radius is equal to σ√2
but
radius is equal to σ√N for a N-dimensional image
is more accurate.
This error is easy to fix and I can handle it on my own (please note that this will be my first PR so any guidance is much appreciated!).
The text was updated successfully, but these errors were encountered:
Fix JuliaImages#278: simply replace -σ by -σ^2 in multiLoG and update…
734671a
… the docstring of BlobLoG.
No branches or pull requests
The correct scale normalization for LoG should be
-σ^2
instead of-σ
in themultiLoG
function called byblob_LoG
.In addition, the docstring of
BlobLoG
says:but
is more accurate.
This error is easy to fix and I can handle it on my own (please note that this will be my first PR so any guidance is much appreciated!).
The text was updated successfully, but these errors were encountered: