Coder Social home page Coder Social logo

Change zSlice of vtkImageMapper about vtk-js HOT 3 CLOSED

kitware avatar kitware commented on July 19, 2024
Change zSlice of vtkImageMapper

from vtk-js.

Comments (3)

martinken avatar martinken commented on July 19, 2024

Give this a shot

#234

Also you might want to look at the changes I make to the example. The interactor style image can now be set to control slices as well.

from vtk-js.

laurennlam avatar laurennlam commented on July 19, 2024

@martinken It looks good, thanks a lot !
As I understand, the slice can only be changed on Z axis, is it right ?
Do you advise any method to do the same thing for X and Y axis ?

from vtk-js.

martinken avatar martinken commented on July 19, 2024

YOu could add some functionality to the slice mapper to support something like

//@{
/**

  • Set the orientation of the slices to display. The default
  • orientation is 2, which is Z.
    */
    vtkSetClampMacro(Orientation, int, 0, 2);
    vtkGetMacro(Orientation, int);
    void SetOrientationToX() { this->SetOrientation(0); }
    void SetOrientationToY() { this->SetOrientation(1); }
    void SetOrientationToZ() { this->SetOrientation(2); }
    //@}

You would need to reorder the data before sending it to OpenGL. My gut would be to make a copy of the data and reorder it everytime the data updates. Then in the mapper you just use that data. The second alternative is to reorder the data for each slice as it is sent to OpenGL but given that people scroll through slices a lot I would suspect that would get slow. The third alternative is to add a cache to the opengl slice mapper and reorder and cache as requested. Making it a tad slow for the first scroll through as it reorders but fast after that. I would go with option 1 or 3. I would put the orientation option in the Core class and the actual reorder code in the OpenGL class. Update the setslicefromfocalPoint to handle the orientation setting as well.

from vtk-js.

Related Issues (20)

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.