BBTK Package itk 1.0.0

Description : Basic itk-based boxes
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Author(s) :
Version : 1.0.0
bbtk Version : 0.9.3

Black Boxes :

Adaptors :


Top

BinaryThresholdImageFilter

Description : Binarizes an image by thresholding (generic bbification of itk::BinaryThresholdImageFilter)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  filter  image 
To use it : include itk

Inputs
 In 
 Input image. Can be any itk::Image* 
<bbtk::any<bbitk::ImagePointer>>
 InsideValue 
 Output value for pixels inside thresholds 
<double>
 LowerThreshold 
 Lower threshold 
<double>
 OutsideValue 
 Output value for pixels outside thresholds 
<double>
 UpperThreshold 
 Upper threshold 
<double>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output image. Of the same type and dimension than the input image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

DICOMDirReader

Description : Reads a series from a DICOM directory as a 3D itk image
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : complex box  image  read/write  dicom 
To use it : include /usr/local/bin/../share/bbtk/bbs/itk/boxes/bbDICOMDirReader.bbs  [source]
Uses : itk::DICOMSeriesFileNames itk::ImageSeriesReader

Inputs
 In 
 The input DICOM directory 
<std::string>
Outputs
 Out 
 The image read 
<bbtk::any<bbitk::ImagePointer>>


Top

DICOMSeriesFileNames

Description : Reads a DICOM directory and generates an ordered sequence of filenames based on the DICOM tags in the files. Files can be sorted based on image number, slice location, or patient position. The files in the specified directory are grouped by SeriesUID. The list of SeriesUIDs can be queried and the filenames for a specific series extracted.
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  read/write  image  dicom 
To use it : include itk

Inputs
 In 
 DICOM directory 
<std::string>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Vector of file names 
<std::vector<std::string, std::allocator<std::string> >>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

ExtractImageFilter

Description : Decrease the image size by cropping the image to the selected region bounds (bbification of itk::ExtractImageFilter)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  image  filter 
To use it : include itk

Inputs
 In 
 Input image 
<bbtk::any<bbitk::ImagePointer>>
 Region 
 Extraction region 
<bbtk::any<bbitk::ImageRegion>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

ImageCrop

Description : Extracts a sub-image of an image
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : complex box  application 
To use it : include /usr/local/bin/../share/bbtk/bbs/itk/appli/ImageCrop.bbs  [source]
Uses : itk::ExtractImageFilter itk::ImageReader itk::ImageRegion itk::ImageWriter

Inputs
 I 
 Input file name 
<std::string>
 O 
 Output file name 
<bbtk::any<bbitk::ImagePointer>>
 P 
 Position of the crop region 
<std::vector<long, std::allocator<long> >>
 S 
 Size of the crop region 
<std::vector<long, std::allocator<long> >>
Outputs


Top

ImageInfo

Description : Gives information on the input image (pixel type, dimension, size, spacing)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : complex box  application  image 
To use it : include /usr/local/bin/../share/bbtk/bbs/itk/appli/ImageInfo.bbs  [source]
Uses : itk::ImageProperties std::PrependDataPath itk::ImageReader

Inputs
 I 
 Input image file 
<std::string>
Outputs


Top

ImageProperties

Description : Outputs different properties of an image (type, dimension, size, spacing, ...)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  image 
To use it : include itk

Inputs
 In 
 Input image 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Dimension 
 Dimension 
<unsigned int>
 Index 
 Origin of the image 
<std::vector<int, std::allocator<int> >>
 LargestPossibleRegion 
 Global extent of the image 
<bbtk::any<bbitk::ImageRegion>>
 Size 
 Size in each dimension 
<std::vector<int, std::allocator<int> >>
 Spacing 
 Size of the voxels 
<std::vector<float, std::allocator<float> >>
 TypeName 
 Pixel type name 
<std::string>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

ImageReader

Description : Generic itk image reader
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  image  read/write 
To use it : include itk

Inputs
 In 
 filename with complete path 
<std::string>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

ImageRegion

Description : Creates a generic ImageRegion (bbtk::any) from two vectors providing the index and size of the region. The dimension D of the actual itk::ImageRegion created is the max of the sizes of Index and Size (the smallest vector is padded by zeros).
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  image 
To use it : include itk

Inputs
 Index 
 Vector of region indices 
<std::vector<long, std::allocator<long> >>
 Size 
 Vector of region sizes 
<std::vector<long, std::allocator<long> >>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic region 
<bbtk::any<bbitk::ImageRegion>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

ImageSeriesReader

Description : Generic itk image series reader
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  image  read/write 
To use it : include itk

Inputs
 FileNames 
 vector of file names with complete paths 
<std::vector<std::string, std::allocator<std::string> >>
 XSpacing 
 if images don't contain information 
<float>
 YSpacing 
 if images don't contain information 
<float>
 ZSpacing 
 if images don't contain information 
<float>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output itk::image with type T and dimension D determined by the content of the files + vector size 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

ImageWriter

Description : Generic itk image writer
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  image  read/write 
To use it : include itk

Inputs
 Filename 
 filename with complete path 
<std::string>
 In 
 Image to write 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

ResampleImageFilter

Description : Resamples an image
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  image  filter 
To use it : include itk

Inputs
 In 
 Input image. Can be any itk::Image* 
<bbtk::any<bbitk::ImagePointer>>
 Interpolation 
 Interpolation 
<std::string>
 Spacing 
 Spacing 
<std::vector<double, std::allocator<double> >>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output image. Of the same type and dimension than the input image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerRelay

Description : Just copies the value of its input to its output. Usefull to plug an input of a complex box into different internal boxes.
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  misc 
To use it : include itk

Inputs
 In 
 Input 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToString

Description : Converts a anyItkImagePointer (bbtk::any) into a string
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output 
<std::string>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageChar2cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageChar2cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<signed char, 2u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageChar2ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageChar2ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<signed char, 2u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageChar3cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageChar3cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<signed char, 3u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageChar3ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageChar3ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<signed char, 3u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageChar4cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageChar4cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<signed char, 4u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageChar4ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageChar4ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<signed char, 4u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageDouble2cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageDouble2cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<double, 2u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageDouble2ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageDouble2ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<double, 2u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageDouble3cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageDouble3cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<double, 3u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageDouble3ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageDouble3ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<double, 3u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageDouble4cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageDouble4cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<double, 4u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageDouble4ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageDouble4ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<double, 4u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageFloat2cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageFloat2cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<float, 2u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageFloat2ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageFloat2ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<float, 2u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageFloat3cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageFloat3cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<float, 3u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageFloat3ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageFloat3ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<float, 3u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageFloat4cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageFloat4cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<float, 4u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageFloat4ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageFloat4ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<float, 4u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageInt2cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageInt2cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<int, 2u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageInt2ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageInt2ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<int, 2u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageInt3cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageInt3cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<int, 3u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageInt3ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageInt3ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<int, 3u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageInt4cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageInt4cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<int, 4u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageInt4ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageInt4ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<int, 4u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageShort2cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageShort2cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<short, 2u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageShort2ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageShort2ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<short, 2u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageShort3cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageShort3cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<short, 3u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageShort3ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageShort3ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<short, 3u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageShort4cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageShort4cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<short, 4u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageShort4ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageShort4ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<short, 4u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUChar2cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageUChar2cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<unsigned char, 2u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUChar2ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageUChar2ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<unsigned char, 2u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUChar3cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageUChar3cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<unsigned char, 3u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUChar3ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageUChar3ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<unsigned char, 3u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUChar4cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageUChar4cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<unsigned char, 4u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUChar4ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageUChar4ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<unsigned char, 4u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUInt2cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageUInt2cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<unsigned int, 2u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUInt2ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageUInt2ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<unsigned int, 2u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUInt3cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageUInt3cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<unsigned int, 3u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUInt3ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageUInt3ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<unsigned int, 3u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUInt4cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageUInt4cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<unsigned int, 4u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUInt4ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageUInt4ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<unsigned int, 4u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUShort2cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageUShort2cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<unsigned short, 2u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUShort2ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageUShort2ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<unsigned short, 2u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUShort3cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageUShort3cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<unsigned short, 3u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUShort3ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageUShort3ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<unsigned short, 3u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUShort4cptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a const typed itk image pointer (itkImageUShort4cptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output const typed image pointer 
<itk::Image<unsigned short, 4u> const*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

anyItkImagePointerToitkImageUShort4ptr

Description : Converts a generic itk image pointer (anyItkImagePointer) into a typed itk image pointer (itkImageUShort4ptr)
Author(s) : laurent.guigues@creatis.insa-lyon.fr
Category(s) : atomic box  adaptor 
To use it : include itk

Inputs
 In 
 Input generic image pointer 
<bbtk::any<bbitk::ImagePointer>>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output typed image pointer 
<itk::Image<unsigned short, 4u>*>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageChar2cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageChar2cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<signed char, 2u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageChar2ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageChar2ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<signed char, 2u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageChar3cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageChar3cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<signed char, 3u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageChar3ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageChar3ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<signed char, 3u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageChar4cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageChar4cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<signed char, 4u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageChar4ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageChar4ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<signed char, 4u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageDouble2cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageDouble2cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<double, 2u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageDouble2ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageDouble2ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<double, 2u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageDouble3cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageDouble3cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<double, 3u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageDouble3ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageDouble3ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<double, 3u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageDouble4cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageDouble4cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<double, 4u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageDouble4ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageDouble4ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<double, 4u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageFloat2cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageFloat2cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<float, 2u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageFloat2ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageFloat2ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<float, 2u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageFloat3cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageFloat3cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<float, 3u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageFloat3ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageFloat3ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<float, 3u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageFloat4cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageFloat4cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<float, 4u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageFloat4ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageFloat4ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<float, 4u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageInt2cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageInt2cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<int, 2u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageInt2ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageInt2ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<int, 2u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageInt3cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageInt3cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<int, 3u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageInt3ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageInt3ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<int, 3u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageInt4cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageInt4cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<int, 4u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageInt4ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageInt4ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<int, 4u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageShort2cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageShort2cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<short, 2u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageShort2ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageShort2ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<short, 2u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageShort3cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageShort3cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<short, 3u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageShort3ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageShort3ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<short, 3u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageShort4cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageShort4cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<short, 4u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageShort4ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageShort4ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<short, 4u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUChar2cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUChar2cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned char, 2u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUChar2ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUChar2ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned char, 2u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUChar3cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUChar3cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned char, 3u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUChar3ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUChar3ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned char, 3u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUChar4cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUChar4cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned char, 4u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUChar4ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUChar4ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned char, 4u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUInt2cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUInt2cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned int, 2u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUInt2ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUInt2ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned int, 2u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUInt3cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUInt3cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned int, 3u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUInt3ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUInt3ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned int, 3u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUInt4cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUInt4cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned int, 4u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUInt4ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUInt4ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned int, 4u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUShort2cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUShort2cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned short, 2u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUShort2ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUShort2ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned short, 2u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUShort3cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUShort3cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned short, 3u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUShort3ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUShort3ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned short, 3u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUShort4cptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUShort4cptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned short, 4u> const*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Top

itkImageUShort4ptrToanyItkImagePointer

Description : Converts a typed itk image pointer (itkImageUShort4ptr) into a generic itk image pointer (anyItkImagePointer)
Author(s) : laurent.guigues at creatis.insa-lyon.fr
Category(s) : atomic box  adaptor  adaptor 
To use it : include itk

Inputs
 In 
 Input typed image 
<itk::Image<unsigned short, 4u>*>
 BoxExecute 
 Any signal received by this input executes the box 
<bbtk::Void>
 BoxProcessMode 
 Sets the processing mode of the box (Pipeline | Always | Reactive) 
<std::string>
Outputs
 Out 
 Output generic image 
<bbtk::any<bbitk::ImagePointer>>
 BoxChange 
 Signals modifications of the box 
<bbtk::Void>


Automatically generated by bbtk on 3/1/2010 - 9:58 GMT