]> Creatis software - bbtk.git/blob - packages/itk/src/bbitkImageStatistics.cxx
Issue #1959 - New black box to calculate the minimum, maximum, std
[bbtk.git] / packages / itk / src / bbitkImageStatistics.cxx
1
2 /*
3  # ---------------------------------------------------------------------
4  #
5  # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
6  #                        pour la SantÈ)
7  # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
8  # Previous Authors : Laurent Guigues, Jean-Pierre Roux
9  # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
10  #
11  #  This software is governed by the CeCILL-B license under French law and
12  #  abiding by the rules of distribution of free software. You can  use,
13  #  modify and/ or redistribute the software under the terms of the CeCILL-B
14  #  license as circulated by CEA, CNRS and INRIA at the following URL
15  #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
16  #  or in the file LICENSE.txt.
17  #
18  #  As a counterpart to the access to the source code and  rights to copy,
19  #  modify and redistribute granted by the license, users are provided only
20  #  with a limited warranty  and the software's author,  the holder of the
21  #  economic rights,  and the successive licensors  have only  limited
22  #  liability.
23  #
24  #  The fact that you are presently reading this means that you have had
25  #  knowledge of the CeCILL-B license and that you accept its terms.
26  # ------------------------------------------------------------------------ */
27
28
29 /*=========================================================================
30   Program:   bbtk
31   Module:    $RCSfile: bbitkImageStatistics.h,v $
32   Language:  C++
33   Date:      $Date: 2013/03/27 $
34   Version:   $Revision: 1.0 $
35   Modified by: Ricardo A Corredor (RaC)
36 =========================================================================*/
37
38
39 /**
40  * \file
41  * \brief class ITKImageStatistics : generic ITKImage statistics
42  */
43 /**
44  * \class bbtk::ITKImageStatistics
45  * \brief Generic ITKImage statictis
46  */
47
48 #ifdef _USE_ITK_
49 //===== 
50 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
51 //===== 
52 #include "bbitkImageStatistics.h"
53 #include "bbitkPackage.h"
54 namespace bbitk
55 {
56
57 BBTK_ADD_BLACK_BOX_TO_PACKAGE(itk,ImageStatistics)
58 BBTK_BLACK_BOX_IMPLEMENTATION(ImageStatistics,bbtk::AtomicBlackBox);
59 //===== 
60 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
61 //===== 
62
63 //===== 
64 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
65 //===== 
66 void ImageStatistics::bbUserSetDefaultValues()
67 {
68         bbSetOutputMin(0);
69         bbSetOutputMax(0);
70         bbSetOutputMean(0);
71         bbSetOutputStdDev(0);
72
73   
74 }
75 //===== 
76 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
77 //===== 
78 void ImageStatistics::bbUserInitializeProcessing()
79 {
80
81
82
83   
84 }
85 //===== 
86 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
87 //===== 
88 void ImageStatistics::bbUserFinalizeProcessing()
89 {
90   
91 }
92 }
93 // EO namespace bbitk
94 #endif
95