ITK
4.8.0
Insight Segmentation and Registration Toolkit
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
SphinxExamples/src/Core/Common/ObserveAnEvent/Code.cxx
#include "
itkImage.h
"
#include "
itkBinaryNotImageFilter.h
"
#include "
itkCommand.h
"
class
MyCommand :
public
itk::Command
{
public
:
itkNewMacro( MyCommand );
void
Execute
(
itk::Object
*caller,
const
itk::EventObject
& event)
{
Execute
( (
const
itk::Object
*)caller, event);
}
void
Execute
(
const
itk::Object
*,
const
itk::EventObject
&)
{
std::cout <<
"Command called."
<< std::endl;
}
};
int
main(
int
,
char
*[])
{
const
unsigned
int
Dimension = 2;
typedef
unsigned
char
PixelType;
typedef
itk::Image< PixelType, Dimension >
ImageType;
ImageType::Pointer image = ImageType::New();
typedef
itk::BinaryNotImageFilter< ImageType >
BinaryNotImageFilterType;
BinaryNotImageFilterType::Pointer filter =
BinaryNotImageFilterType::New();
filter->SetInput(image);
MyCommand::Pointer myCommand = MyCommand::New();
filter->AddObserver(itk::ProgressEvent(), myCommand);
filter->Update();
return
EXIT_SUCCESS;
}
Generated on Fri Jul 3 2015 02:47:23 for ITK by
1.8.5