Integration of third party DICOM Reader with VTK.

Hello, our company has our own DICOM Reader. (MFC)
This DICOM Reader allows some non-standard DICOM files.
I want to read the DICOM file through this DICOM Reader and pass the PixelData and Image information to the VTK to implement MPR.
MPR example using vtkDICOMImageReader is complete. (https://vtk.org/gitweb?p=VTK.git;a=tree;f=Examples/GUI/Qt/FourPaneViewer;h=cf9360f7952bcf1b40fb2086fd376303006a4b12;hb=HEAD)

Are there any other examples to use with third-party DICOM Reader?

Thank you.

I know of @dgobbi’s DICOM project here: https://github.com/dgobbi/vtk-dicom

I think the OP might be looking for something like vtkImageImport, which is demonstrated in the following example:

https://lorensen.github.io/VTKExamples/site/Cxx/Images/ImageImport/

1 Like

Thank you!! dgobbi!!

Thank you for the feedback.
Resolved from David gobbi’s comment.