Giter Site home page Giter Site logo

Comments (6)

LucasKre avatar LucasKre commented on July 30, 2024 1

@ztbian-bzt I added an inference script that can be used to predict the labels for a given instance in the dataset and save the output as color-coded meshes (see Readme Inferencing). Afterwards you can inspect the meshes using MeshLab or https://3dviewer.net/)

from dilated_tooth_seg_net.

ztbian-bzt avatar ztbian-bzt commented on July 30, 2024 1

I solved the above problem and thank you for your help.

from dilated_tooth_seg_net.

ztbian-bzt avatar ztbian-bzt commented on July 30, 2024

@LucasKre Thanks a lot for your reply.

from dilated_tooth_seg_net.

ztbian-bzt avatar ztbian-bzt commented on July 30, 2024
    def get_model():
          return LitDilatedToothSegmentationNetwork() 


    model = get_model()
    if use_gpu:
        model = model.cuda()
    model = model.load_from_checkpoint(ckpt_path)

This coda may lead to the error "TypeError: The classmethod LitDilatedToothSegmentationNetwork.load_from_checkpoint cannot be called on an instance. Please call it on the class type and make sure the return value is used." I change it as follows so that it won't get this error.

    model = LitDilatedToothSegmentationNetwork.load_from_checkpoint(ckpt_path)
    if use_gpu:
        model = model.cuda()

In addition, visualization causes the teeth to elongate. How can I fix this.
data_00OMSZGW_lower

from dilated_tooth_seg_net.

supgy avatar supgy commented on July 30, 2024

I solved the above problem and thank you for your help.

I have encountered the same problem as you, can you teach me how to make it look regular thanks a lot

from dilated_tooth_seg_net.

mykakus avatar mykakus commented on July 30, 2024

I have encountered the same problem as you, can you teach me how to make it look regular thanks a lot

You need to reverse normalization steps in PreTransform class (in preprocessing.py).

 # normalize coordinate
            x[:, i] = (x[:, i] - means[i]) / stds[i]  # point 1
            x[:, i + 3] = (x[:, i + 3] - means[i]) / stds[i]  # point 2
            x[:, i + 6] = (x[:, i + 6] - means[i]) / stds[i]  # point 3
            x[:, i + 9] = (x[:, i + 9] - mins[i]) / (maxs[i] - mins[i])  # centre
            # normalize normal vector
            x[:, i + 12] = (x[:, i + 12] - nmeans[i]) / nstds[i]  # normal1
            x[:, i + 15] = (x[:, i + 15] - nmeans[i]) / nstds[i]  # normal2
            x[:, i + 18] = (x[:, i + 18] - nmeans[i]) / nstds[i]  # normal3
            x[:, i + 21] = (x[:, i + 21] - nmeans_f[i]) / nstds_f[i]  # face normal

reverse

  #  coordinate
        x[:, i] = (x[:, i] + means[i]) * stds[i]  # point 1
        x[:, i + 3] = (x[:, i + 3] + means[i]) * stds[i]  # point 2
        x[:, i + 6] = (x[:, i + 6] + means[i]) * stds[i]  # point 3
        x[:, i + 9] = (x[:, i + 9] + mins[i]) * (maxs[i] - mins[i])  # centre
  #  normal vector
        x[:, i + 12] = (x[:, i + 12] + nmeans[i]) * nstds[i]  # normal1
        x[:, i + 15] = (x[:, i + 15] + nmeans[i]) * nstds[i]  # normal2
        x[:, i + 18] = (x[:, i + 18] + nmeans[i]) * nstds[i]  # normal3
        x[:, i + 21] = (x[:, i + 21] + nmeans_f[i]) * nstds_f[i]  # face normal

Keep in mind that original maxs, mins, means etc. values have be stored before normalization and when used to reverse it.

from dilated_tooth_seg_net.

Related Issues (5)

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.