#include "QmitkBasicImageProcessingView.h"
#include <qlabel.h>
#include <qspinbox.h>
#include <qpushbutton.h>
#include <qcheckbox.h>
#include <qgroupbox.h>
#include <qradiobutton.h>
#include <qmessagebox.h>
#include <berryISelectionService.h>
#include <berryIWorkbenchWindow.h>
#include "QmitkStdMultiWidget.h"
#include "QmitkDataNodeSelectionProvider.h"
#include "mitkDataNodeObject.h"
#include "mitkNodePredicateDataType.h"
#include "mitkNodePredicateDimension.h"
#include "mitkNodePredicateAnd.h"
#include "mitkImageTimeSelector.h"
#include "mitkVectorImageMapper2D.h"
#include "mitkProperties.h"
#include "mitkImageCast.h"
#include "mitkITKImageImport.h"
#include <itkVectorImage.h>
#include <itkBinaryBallStructuringElement.h>
#include <itkGrayscaleDilateImageFilter.h>
#include <itkGrayscaleErodeImageFilter.h>
#include <itkGrayscaleMorphologicalOpeningImageFilter.h>
#include <itkGrayscaleMorphologicalClosingImageFilter.h>
#include <itkMedianImageFilter.h>
#include <itkDiscreteGaussianImageFilter.h>
#include <itkTotalVariationDenoisingImageFilter.h>
#include <itkBinaryThresholdImageFilter.h>
#include <itkInvertIntensityImageFilter.h>
#include <itkGradientMagnitudeRecursiveGaussianImageFilter.h>
#include <itkLaplacianImageFilter.h>
#include <itkSobelEdgeDetectionImageFilter.h>
#include <itkResampleImageFilter.h>
#include <itkNearestNeighborInterpolateImageFunction.h>
#include <itkAddImageFilter.h>
#include <itkSubtractImageFilter.h>
#include <itkMultiplyImageFilter.h>
#include <itkDivideImageFilter.h>
#include <itkOrImageFilter.h>
#include <itkAndImageFilter.h>
#include <itkXorImageFilter.h>
Go to the source code of this file.
Typedefs | |
typedef itk::Image< short, 3 > | ImageType |
typedef itk::Image< double, 3 > | FloatImageType |
typedef itk::Image < itk::Vector< float, 3 >, 3 > | VectorImageType |
typedef itk::BinaryBallStructuringElement < ImageType::PixelType, 3 > | BallType |
typedef itk::GrayscaleDilateImageFilter < ImageType, ImageType, BallType > | DilationFilterType |
typedef itk::GrayscaleErodeImageFilter < ImageType, ImageType, BallType > | ErosionFilterType |
typedef itk::GrayscaleMorphologicalOpeningImageFilter < ImageType, ImageType, BallType > | OpeningFilterType |
typedef itk::GrayscaleMorphologicalClosingImageFilter < ImageType, ImageType, BallType > | ClosingFilterType |
typedef itk::MedianImageFilter < ImageType, ImageType > | MedianFilterType |
typedef itk::DiscreteGaussianImageFilter < ImageType, ImageType > | GaussianFilterType |
typedef itk::TotalVariationDenoisingImageFilter < FloatImageType, FloatImageType > | TotalVariationFilterType |
typedef itk::TotalVariationDenoisingImageFilter < VectorImageType, VectorImageType > | VectorTotalVariationFilterType |
typedef itk::BinaryThresholdImageFilter < ImageType, ImageType > | ThresholdFilterType |
typedef itk::InvertIntensityImageFilter < ImageType, ImageType > | InversionFilterType |
typedef itk::GradientMagnitudeRecursiveGaussianImageFilter < ImageType, ImageType > | GradientFilterType |
typedef itk::LaplacianImageFilter < FloatImageType, FloatImageType > | LaplacianFilterType |
typedef itk::SobelEdgeDetectionImageFilter < FloatImageType, FloatImageType > | SobelFilterType |
typedef itk::ResampleImageFilter < ImageType, FloatImageType > | ResampleImageFilterType |
typedef itk::AddImageFilter < ImageType, ImageType, ImageType > | AddFilterType |
typedef itk::SubtractImageFilter < ImageType, ImageType, ImageType > | SubtractFilterType |
typedef itk::MultiplyImageFilter < ImageType, ImageType, ImageType > | MultiplyFilterType |
typedef itk::DivideImageFilter < ImageType, ImageType, FloatImageType > | DivideFilterType |
typedef itk::OrImageFilter < ImageType, ImageType > | OrImageFilterType |
typedef itk::AndImageFilter < ImageType, ImageType > | AndImageFilterType |
typedef itk::XorImageFilter < ImageType, ImageType > | XorImageFilterType |
typedef itk::AddImageFilter< ImageType, ImageType, ImageType > AddFilterType |
Definition at line 117 of file QmitkBasicImageProcessingView.cpp.
typedef itk::AndImageFilter< ImageType, ImageType > AndImageFilterType |
Definition at line 123 of file QmitkBasicImageProcessingView.cpp.
typedef itk::BinaryBallStructuringElement<ImageType::PixelType, 3> BallType |
Definition at line 97 of file QmitkBasicImageProcessingView.cpp.
typedef itk::GrayscaleMorphologicalClosingImageFilter<ImageType, ImageType, BallType> ClosingFilterType |
Definition at line 101 of file QmitkBasicImageProcessingView.cpp.
typedef itk::GrayscaleDilateImageFilter<ImageType, ImageType, BallType> DilationFilterType |
Definition at line 98 of file QmitkBasicImageProcessingView.cpp.
typedef itk::DivideImageFilter< ImageType, ImageType, FloatImageType > DivideFilterType |
Definition at line 120 of file QmitkBasicImageProcessingView.cpp.
typedef itk::GrayscaleErodeImageFilter<ImageType, ImageType, BallType> ErosionFilterType |
Definition at line 99 of file QmitkBasicImageProcessingView.cpp.
typedef itk::Image<double, 3> FloatImageType |
Definition at line 94 of file QmitkBasicImageProcessingView.cpp.
typedef itk::DiscreteGaussianImageFilter< ImageType, ImageType> GaussianFilterType |
Definition at line 104 of file QmitkBasicImageProcessingView.cpp.
typedef itk::GradientMagnitudeRecursiveGaussianImageFilter< ImageType, ImageType > GradientFilterType |
Definition at line 111 of file QmitkBasicImageProcessingView.cpp.
typedef itk::Image<short, 3> ImageType |
Definition at line 93 of file QmitkBasicImageProcessingView.cpp.
typedef itk::InvertIntensityImageFilter< ImageType, ImageType > InversionFilterType |
Definition at line 109 of file QmitkBasicImageProcessingView.cpp.
typedef itk::LaplacianImageFilter< FloatImageType, FloatImageType > LaplacianFilterType |
Definition at line 112 of file QmitkBasicImageProcessingView.cpp.
typedef itk::MedianImageFilter< ImageType, ImageType > MedianFilterType |
Definition at line 103 of file QmitkBasicImageProcessingView.cpp.
typedef itk::MultiplyImageFilter< ImageType, ImageType, ImageType > MultiplyFilterType |
Definition at line 119 of file QmitkBasicImageProcessingView.cpp.
typedef itk::GrayscaleMorphologicalOpeningImageFilter<ImageType, ImageType, BallType> OpeningFilterType |
Definition at line 100 of file QmitkBasicImageProcessingView.cpp.
typedef itk::OrImageFilter< ImageType, ImageType > OrImageFilterType |
Definition at line 122 of file QmitkBasicImageProcessingView.cpp.
typedef itk::ResampleImageFilter< ImageType, FloatImageType > ResampleImageFilterType |
Definition at line 115 of file QmitkBasicImageProcessingView.cpp.
typedef itk::SobelEdgeDetectionImageFilter< FloatImageType, FloatImageType > SobelFilterType |
Definition at line 113 of file QmitkBasicImageProcessingView.cpp.
typedef itk::SubtractImageFilter< ImageType, ImageType, ImageType > SubtractFilterType |
Definition at line 118 of file QmitkBasicImageProcessingView.cpp.
typedef itk::BinaryThresholdImageFilter< ImageType, ImageType > ThresholdFilterType |
Definition at line 108 of file QmitkBasicImageProcessingView.cpp.
typedef itk::TotalVariationDenoisingImageFilter<FloatImageType, FloatImageType> TotalVariationFilterType |
Definition at line 105 of file QmitkBasicImageProcessingView.cpp.
typedef itk::Image<itk::Vector<float,3>, 3> VectorImageType |
Definition at line 95 of file QmitkBasicImageProcessingView.cpp.
typedef itk::TotalVariationDenoisingImageFilter<VectorImageType, VectorImageType> VectorTotalVariationFilterType |
Definition at line 106 of file QmitkBasicImageProcessingView.cpp.
typedef itk::XorImageFilter< ImageType, ImageType > XorImageFilterType |
Definition at line 124 of file QmitkBasicImageProcessingView.cpp.