") into a typed itk image ("+
bbtk::HumanTypeName<T>()+"*)");
BBTK_DEFAULT_ADAPTOR();
+ BBTK_CATEGORY("adaptor;image");
BBTK_TEMPLATE_INPUT(AnyImageToTypedImage,In,
"Input generic image",anyImagePointer);
BBTK_TEMPLATE_OUTPUT(AnyImageToTypedImage,Out,
BBTK_BEGIN_DESCRIBE_BLACK_BOX(BinaryThresholdImageFilterGeneric,
bbtk::UserBlackBox);
BBTK_NAME("BinaryThresholdImageFilter");
- BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
+ BBTK_AUTHOR("laurent.guigues at creatis.insa-lyon.fr");
+ BBTK_CATEGORY("filter;image");
BBTK_DESCRIPTION("Binarizes an image by thresholding (generic bbification of itk::BinaryThresholdImageFilter)");
BBTK_INPUT(BinaryThresholdImageFilterGeneric,In,
"Input image. Can be any itk::Image<T,D>*",anyImagePointer);
BBTK_BEGIN_DESCRIBE_BLACK_BOX(ExtractImageFilterGeneric,bbtk::UserBlackBox);
BBTK_NAME("ExtractImageFilter");
- BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
+ BBTK_AUTHOR("laurent.guigues at creatis.insa-lyon.fr");
+ BBTK_CATEGORY("image;filter");
BBTK_DESCRIPTION("Decrease the image size by cropping the image to the selected region bounds (bbification of itk::ExtractImageFilter)");
BBTK_INPUT(ExtractImageFilterGeneric,In,"Input image",anyImagePointer);
BBTK_INPUT(ExtractImageFilterGeneric,Region,"Extraction region",anyImageRegion);
Program: bbtk
Module: $RCSfile: bbitkImageProperties.h,v $
Language: C++
- Date: $Date: 2008/02/05 12:03:01 $
- Version: $Revision: 1.1 $
+ Date: $Date: 2008/02/05 12:11:51 $
+ Version: $Revision: 1.2 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
// UserBlackBox description
BBTK_BEGIN_DESCRIBE_BLACK_BOX(ImageProperties,bbtk::UserBlackBox);
BBTK_NAME("ImageProperties");
- BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
- BBTK_DESCRIPTION("Extracts the different properties of an image (type, dimension, size, spacing, ...)");
+ BBTK_AUTHOR("laurent.guigues at creatis.insa-lyon.fr");
+ BBTK_CATEGORY("image")
+ BBTK_DESCRIPTION("Outputs different properties of an image (type, dimension, size, spacing, ...)");
BBTK_INPUT(ImageProperties,In,"Input image",anyImagePointer);
BBTK_OUTPUT(ImageProperties,TypeName,"Pixel type name",std::string);
BBTK_OUTPUT(ImageProperties,Dimension,"Dimension",unsigned int);
Program: bbtk
Module: $RCSfile: bbitkImageReader.h,v $
Language: C++
- Date: $Date: 2008/02/05 12:03:01 $
- Version: $Revision: 1.1 $
+ Date: $Date: 2008/02/05 12:11:51 $
+ Version: $Revision: 1.2 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
// UserBlackBox description
BBTK_BEGIN_DESCRIBE_BLACK_BOX(ImageReader,bbtk::UserBlackBox);
BBTK_NAME("ImageReader");
- BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
+ BBTK_AUTHOR("laurent.guigues at creatis.insa-lyon.fr");
+ BBTK_CATEGORY("image;read/write");
BBTK_DESCRIPTION("Generic itk image reader");
BBTK_INPUT(ImageReader,Filename,
"filename with complete path",std::string);
Program: bbtk
Module: $RCSfile: bbitkImageSeriesReader.h,v $
Language: C++
- Date: $Date: 2008/02/05 12:03:02 $
- Version: $Revision: 1.1 $
+ Date: $Date: 2008/02/05 12:11:51 $
+ Version: $Revision: 1.2 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
// UserBlackBox description
BBTK_BEGIN_DESCRIBE_BLACK_BOX(ImageSeriesReader,bbtk::UserBlackBox);
BBTK_NAME("ImageSeriesReader");
- BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
+ BBTK_AUTHOR("laurent.guigues at creatis.insa-lyon.fr");
BBTK_DESCRIPTION("Generic itk image series reader");
+ BBTK_CATEGORY("image;read/write");
typedef std::vector<std::string> vectorofstring;
BBTK_INPUT(ImageSeriesReader,FileNames,
"vector of file names with complete paths",vectorofstring);
Program: bbtk
Module: $RCSfile: bbitkImageWriter.h,v $
Language: C++
- Date: $Date: 2008/02/05 12:03:02 $
- Version: $Revision: 1.1 $
+ Date: $Date: 2008/02/05 12:11:51 $
+ Version: $Revision: 1.2 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
// UserBlackBox description
BBTK_BEGIN_DESCRIBE_BLACK_BOX(ImageWriter,bbtk::UserBlackBox);
BBTK_NAME("ImageWriter");
- BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
+ BBTK_AUTHOR("laurent.guigues at creatis.insa-lyon.fr");
BBTK_DESCRIPTION("Generic itk image writer");
+ BBTK_CATEGORY("image;read/write");
BBTK_INPUT(ImageWriter,Filename,
"filename with complete path",std::string);
BBTK_INPUT(ImageWriter,In,"Image to write",anyImagePointer);
BBTK_BEGIN_DESCRIBE_BLACK_BOX(ResampleImageFilter,
bbtk::UserBlackBox);
BBTK_NAME("ResampleImageFilter");
- BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
+ BBTK_AUTHOR("laurent.guigues at creatis.insa-lyon.fr");
BBTK_DESCRIPTION("Resamples an image");
+ BBTK_CATEGORY("image;filter");
BBTK_INPUT(ResampleImageFilter,In,
"Input image. Can be any itk::Image<T,D>*",anyImagePointer);
BBTK_INPUT(ResampleImageFilter,Spacing,
BBTK_BEGIN_DESCRIBE_TEMPLATE_BLACK_BOX(TypedImageToAnyImage);
BBTK_NAME(bbtk::HumanTypeName<T>()
+ "To" + bbtk::HumanTypeName<anyImagePointer>());
- BBTK_AUTHOR("laurent.guigues@creatis.insa-lyon.fr");
+ BBTK_AUTHOR("laurent.guigues at creatis.insa-lyon.fr");
BBTK_DESCRIPTION("Transforms a typed itk image ("+bbtk::HumanTypeName<T>()+
") into a generic itk image ("+
bbtk::HumanTypeName<anyImagePointer>()+")");
+ BBTK_CATEGORY("adaptor;image");
BBTK_DEFAULT_ADAPTOR();
BBTK_TEMPLATE_INPUT(TypedImageToAnyImage,In,
"Input typed image",T);