1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
// Doxygen SDK groups creation
/**
* @defgroup group_cepimaging CEP Imaging
* The CEP Imaging gathers CamiTK image processing extensions.
* It requires ITK in order to work.
* @note
* By default, this CEP is not configured using CMake, please select it at the configuration step if you wish to compile it.
*
*
* @defgroup group_cepimaging_actions Actions
* @ingroup group_cepimaging
* Image processing actions.
* The CEP Imaging actions are based on ITK.
*
*
* @defgroup group_cepimaging_actions_itkfilters ITK Filters
* @ingroup group_cepimaging_actions
* ITK filters based actions.
* Those actions works on volumic images, i.e. @ref camitk::ImageComponent "ImageComponent".
*
* \image html actions/itkfilters.png "The ITK filters actions contextual menu."
*
*
* @defgroup group_cepimaging_actions_itksegmentation ITK Segmentation
* @ingroup group_cepimaging_actions
* ITK segmentation filters based actions.
* Those actions works on volumic images, i.e. @ref camitk::ImageComponent "ImageComponent".
*
* \image html actions/itksegmentation.png "The ITK segmentation filters actions contextual menu."
*
*
* @defgroup group_cepimaging_components Components
* @ingroup group_cepimaging
* Specific @ref camitk::ImageComponent "ImageComponent"
* The following @ref camitk::ImageComponent "ImageComponent" are derived classes, useful to handle specific type of volumic image.
*
*
* @defgroup group_cepimaging_components_dicom DICOM
* @ingroup group_cepimaging_components
* Old DICOM @ref camitk::Component "Component" to handle DICOM image opened from a directory using ITK.
*
*
* @defgroup group_cepimaging_components_dicomdirectory DICOM directory
* @ingroup group_cepimaging_components
* DICOM @ref camitk::Component "Component" to handle a bunch of DICOM images stored in a directory.
* @note This component uses the external component GDCM.
*
*
* @defgroup group_cepimaging_components_dicomimage DICOM Image
* @ingroup group_cepimaging_components
* DICOM @ref camitk::Component "Component" to handle a single DICOM image.
* @note Typically, the file extension used for single DICOM image is .dcm. This component uses the external component GDCM.
*
*
* @defgroup group_cepimaging_components_itkimage ITK Image
* @ingroup group_cepimaging_components
* This @ref camitk::Component "Component" uses ITK to handle several volumic image (i.e @ref camitk::ImageComponent).
*
*
**/
|