[Insight-users] vector type image
filters (VectorAnisotropicDiffusionFunction)
Luis Ibanez
luis.ibanez at kitware.com
Sat Mar 19 20:15:11 EST 2005
Hi Ugur,
You are not supposed to use the VectorAnisotropicDiffusionFunction
directly. These functions are used internally by "ImageFilter"s.
such as
http://www.itk.org/Insight/Doxygen/html/classitk_1_1VectorCurvatureAnisotropicDiffusionImageFilter.html
http://www.itk.org/Insight/Doxygen/html/classitk_1_1VectorGradientAnisotropicDiffusionImageFilter.html
Please instantiate the corresponding Image Filter instead of the
"Functions"
If you are interested in examples, please look at
Insight/Examples/Filtering/
VectorCurvatureAnisotropicDiffusionImageFilter.cxx
VectorGradientAnisotropicDiffusionImageFilter.cxx
Regards,
Luis
-------------------------------------------------------------
Ugur BOZKAYA wrote:
> Hi,
>
> I have a vector typed image
>
> typedef itk::Vector< float, 3 > VectorPixelType;
>
> typedef itk::Image< VectorPixelType, 3 > VectorImageType;
>
>
>
> I want to use itk::VectorAnisotropicDiffusionFunction on this image.
> When I try to create a object of this type it gives error.
>
> typedef itk::VectorAnisotropicDiffusionFunction<VectorImageType>
> DiffusionFilterType;
>
> DiffusionFilterType::Pointer diffusion = DiffusionFilterType::New();
>
>
>
> error C2440: 'initializing' : cannot convert from
> 'itk::LightObject::Pointer' to 'itk::SmartPointer<TObjectType>'
>
> with
>
> [
>
>
> TObjectType=itk::VectorAnisotropicDiffusionFunction<VectorImageType>::Self
>
> ]
>
> Then I tried itk::VectorGradientNDAnisotropicDiffusionFunction since the
> above class might be an abstract class. But this time I could not figure
> out how to use this class. There no SetInput function for this class. Is
> there any example code that filters vector type images?
>
> Thanx
>
>
>
> Ugur BOZKAYA
>
>
>
> ________________________________________________
> KabloNET WebMail
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Insight-users mailing list
> Insight-users at itk.org
> http://www.itk.org/mailman/listinfo/insight-users
More information about the Insight-users
mailing list