📄 itkimageregiontest.cxx
字号:
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkImageRegionTest.cxx,v $
Language: C++
Date: $Date: 2003-09-10 14:30:09 $
Version: $Revision: 1.6 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
#include <iostream>
#include "itkImageRegion.h"
int itkImageRegionTest(int, char* [] )
{
const unsigned int dimension = 3;
typedef itk::ImageRegion< dimension > RegionType;
typedef RegionType::IndexType IndexType;
typedef RegionType::SizeType SizeType;
bool passed;
SizeType sizeA = {{ 10, 20, 30 }};
SizeType sizeB = {{ 5, 10, 15 }};
IndexType startA = {{ 12, 12, 12 }};
IndexType startB = {{ 14, 14, 14 }};
RegionType regionA;
RegionType regionB;
regionA.SetSize( sizeA );
regionA.SetIndex( startA );
regionB.SetSize( sizeB );
regionB.SetIndex( startB );
if( regionA.IsInside( regionB ) )
{
passed = true;
}
else
{
passed = false;
}
if( passed )
{
if( regionB.IsInside( regionA ) )
{
passed = false;
}
else
{
passed = true;
}
}
if (passed)
{
std::cout << "ImageRegion test passed." << std::endl;
return EXIT_SUCCESS;
}
else
{
std::cout << "ImageRegion test failed." << std::endl;
return EXIT_FAILURE;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -