[Insight-users] New to ITK
Luis Ibanez
luis.ibanez at kitware.com
Mon, 19 Apr 2004 09:52:19 -0400
Hi Alex,
You could create a filter that computes the weighted sum of your two
input images, and then pass the output of this filter as input to
the FuzzyConnectedness image filter.
It is very easy to create such a filter. Simply use the
BinaryFunctorImageFilter.
http://www.itk.org/Insight/Doxygen/html/classitk_1_1BinaryFunctorImageFilter.html
With this filter you only need to define the pixel-wise operation that
will combine your two input images.
For an example of a filter implemented using the BinaryFunctor, please
look at the code of
http://www.itk.org/Insight/Doxygen/html/classitk_1_1AddImageFilter.html
You wil find it under:
Insight/Code/BasicFilters
Regards,
Luis
---------------------
Alex Houston wrote:
> Hi All
> I am new to ITK . I have ran most of examples in ImageIO and
> Segmentation to get a feel of ITK. I am trying to run the simple fuzzy
> connectedness and ran it suceessfully.
> My question is now the input is image, what if I want to use function of
> image and image itself.
> Like say Image and its gradient. How do I use it simple fuzzy ..to take
> weighted sum of both components.
>
> Thanks
> Alex
>