Giter VIP home page Giter VIP logo

Comments (3)

Jingnan-Jia avatar Jingnan-Jia commented on August 19, 2024

@jhlegarreta Thank you for pointing it out! I am checking and fixing this issue.

from segmentation_metrics.

Jingnan-Jia avatar Jingnan-Jia commented on August 19, 2024

@jhlegarreta Thank you for your advice again. I updated the package and now you can get the correct volume similarity sign by updating the package to the latest version (>=1.2.8)
pip install --upgrade seg-metrics

Details of update: I removed the old code dicecomputer.Execute(labelPred > 0.5, labelTrue > 0.5) because it relied on ITK which was not explicit enough (the document of ITK for Python is not complete as well). I added the following code to explicitly calculate VS (also added the check of extreme conditions):

v_pred = np.sum(labelPred > 0.5)
v_gdth = np.sum(labelTrue > 0.5)
if v_pred + v_gdth == 0: # prediction results and ground truth are all 0
    vs = 0
else:
    vs = 2 * (v_pred - v_gdth) / (v_pred + v_gdth)

If you have more advice, please let me know.

from segmentation_metrics.

jhlegarreta avatar jhlegarreta commented on August 19, 2024

@Jingnan-Jia sounds good. Thanks for the update. Closing the issue as resolved after bc37480.

from segmentation_metrics.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.