Hi all,
How should I insert/manage multiple input images to a method in my module?
Until now, I inserted only *one* input image by
accessIntegralPixelTypeByItk and simply insert that image in my method like
this:
//=======================
void myFilter::GenerateData()
{
mitk::Image::ConstPointer image = this->GetInput(0);
try
{
AccessInterslPixelTypeByItk_n(image, myMethod, (some_Inputs...))
}
}
//=======================
template<typename TPixel, unsigned int VImageDimension>
void myMethod (itk::Image<TPixel, VImageDimension>* image, some_Inputs)
{...}
//========================
Now, I'd like to insert *multiple images *(actually, four images) to my
method.
How should I do this?
Thanks.
------------------------------------------------------------------------------
RSA(R) Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1
_______________________________________________
mitk-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mitk-users