-
Notifications
You must be signed in to change notification settings - Fork 98
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
Relative Hausdorff distance #178
Comments
It is good to check if the definition of the distance is more appropriate to a specific type like a graph or an image. For example, I have implemented the Hausdorff distance for images here as it doesn't make sense for general vectors of numbers: https://github.com/JuliaImages/ImageDistances.jl Maybe the paper discusses a similar distance applied to graphs? |
I will check the implementation in ImageDistances.jl (do you have a reference about its use for images?). For graphs, it just takes two vectors with the degree distribution. The cumulative form is computed and uses linear interpolation for missing values over 1 to the highest number of degrees in either graph domain. The distance is computed based on those two |
The README.md there has a reference. The original paper where the distance
was introduced I can try to find it later.
…On Fri, Sep 18, 2020, 08:18 José Bayoán Santiago Calderón < ***@***.***> wrote:
I will check the implementation in ImageDistances.jl (do you have a
reference about its use for images?).
For graphs, it just takes two vectors for same length with the number of
nodes with that many degrees. The cumulative form is computed and uses
linear interpolation for missing values over 1 to the highest number of
degrees in either graph domain. The distance is computed based on those two
AbstractVector{<:Real}.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#178 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAZQW3NAEAE5S3MDHWRERJDSGM6YDANCNFSM4RR2AMPA>
.
|
Relative Hausdorff distance. It is used in many applications including graphs. A linear time algorithm is available here.
The text was updated successfully, but these errors were encountered: