Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Opening a DCM file with VTK
Forum Update on Monday, May 27th 2025

Opening a DCM file with VTK

Scheduled Pinned Locked Moved Unsolved General and Desktop
vtkc++ qtwidgetimage displayimage processin
4 Posts 3 Posters 2.8k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • GenyunusG Offline
    GenyunusG Offline
    Genyunus
    wrote on last edited by
    #1

    Hello, I'm pretty new with qt and vtk. However I managed to have vtk and qt together. Now I'm need to open a dcm file with a slider so that user can use the toolbar to slide between slices.

    I don't know where to start what to do as of. Any kind of help would be appreciated!

    Thank you

    1 Reply Last reply
    0
    • mrjjM Offline
      mrjjM Offline
      mrjj
      Lifetime Qt Champion
      wrote on last edited by
      #2

      hi and welcome
      since you are using VTK,
      you should should maybe be looking into some samples loading dcm and display.
      Later you can find out how to use a slider.
      Even you made it run inside/with Qt then its still normal VTK calls so you should find some sample
      of how to use VTk.

      1 Reply Last reply
      1
      • sankarapandiyanS Offline
        sankarapandiyanS Offline
        sankarapandiyan
        wrote on last edited by
        #3

        first yu have to build a vtk in your machine

        1 Reply Last reply
        0
        • sankarapandiyanS Offline
          sankarapandiyanS Offline
          sankarapandiyan
          wrote on last edited by sankarapandiyan
          #4

          you have to download dicom folders with images
          and then copy this code there ,

          #include <vtkSmartPointer.h>
          #include <vtkImageViewer2.h>
          #include <vtkDICOMImageReader.h>
          #include <vtkRenderWindow.h>
          #include <vtkRenderWindowInteractor.h>
          #include <vtkRenderer.h>

          int main(int argc, char* argv[])
          {
          std::string inputFilename ="path of dicomm images/xr_hands.dcm";

          // Read all the DICOM files in the specified directory.
          vtkSmartPointer<vtkDICOMImageReader> reader =
          vtkSmartPointer<vtkDICOMImageReader>::New();
          reader->SetFileName(inputFilename.c_str());
          reader->Update();

          // Visualize
          vtkSmartPointer<vtkImageViewer2> imageViewer =
          vtkSmartPointer<vtkImageViewer2>::New();
          imageViewer->SetInputConnection(reader->GetOutputPort());
          vtkSmartPointer<vtkRenderWindowInteractor> renderWindowInteractor =
          vtkSmartPointer<vtkRenderWindowInteractor>::New();
          imageViewer->SetupInteractor(renderWindowInteractor);
          imageViewer->Render();
          imageViewer->GetRenderer()->ResetCamera();
          imageViewer->Render();

          renderWindowInteractor->Start();

          return EXIT_SUCCESS;
          }

          it will definetly runs without error .. you must gave a riht path of dicom images

          1 Reply Last reply
          0

          • Login

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • Users
          • Groups
          • Search
          • Get Qt Extensions
          • Unsolved