[Insight-users] read a region of DICOM IMAGE 3D
Luis Ibanez
luis.ibanez at kitware.com
Thu, 04 Mar 2004 22:04:24 -0500
Hi Aissa,
At this point, ImageIO objects are not supporting
reading restricted regions of the image.
Probably the best option is to read the full image
and then extract a region using one of the following
filters:
- ExtractImageFilter
http://www.itk.org/Insight/Doxygen/html/classitk_1_1ExtractImageFilter.html
- RegionOfInterestImageFilter
http://www.itk.org/Insight/Doxygen/html/classitk_1_1RegionOfInterestImageFilter.html
You will find examples of both filters under
Insight/Examples/IO
Regards,
Luis
------------------
aissa arar wrote:
> Hi
> i can read Dicom volume but i don't know how to read only a region of
> this volume. /is there anyone can help me? /
> /This is the important part of my program :/
> /
> typedef itk::Image<unsigned short ,3> Image3DType;
> /
> / typedef itk::ImageSeriesReader<Image3DType> ReaderType;
> typedef itk::ImageToVTKImageFilter<Image3DType> ConnectorType;
>
>
> itk::DICOMImageIO2::Pointer io = itk::DICOMImageIO2::New();
>
> // /
> /
>
> itk::DICOMSeriesFileNames::Pointer names =
> itk::DICOMSeriesFileNames::New();/
> / names->SetDirectory("my Directory"); /
> /
> ReaderType::Pointer reader = ReaderType::New();
> ConnectorType::Pointer connector= ConnectorType::New();/
> / reader->SetFileNames( names->GetFileNames() );
> reader->SetImageIO( io );/
>
> /Thanks/
>
> /Aissa/
>
> /
> /
> / /
>
> ------------------------------------------------------------------------
> Yahoo! Mail : votre e-mail personnel et gratuit qui vous suit partout !
> Créez votre Yahoo! Mail
> <http://fr.rd.yahoo.com/mail/mail_taglines/default/*http://fr.benefits.yahoo.com/>
>
>
> Dialoguez en direct avec vos amis grâce à Yahoo! Messenger !
> <http://fr.rd.yahoo.com/messenger/mail_taglines/default/*http://fr.messenger.yahoo.com/>
>