ITK  4.8.0
Insight Segmentation and Registration Toolkit
WikiExamples/Images/ImageRegion.cxx
#include "itkImageRegion.h"
#include "itkIndex.h"
#include "itkSize.h"
int main(int, char *[])
{
size.Fill(3);
index.Fill(1);
typedef itk::ImageRegion<2> RegionType;
RegionType region(index,size);
std::cout << region << std::endl;
return EXIT_SUCCESS;
}