[Insight-users] Noise simulation

Oleksandr Dzyubak adzyubak at gmail.com
Thu Mar 25 20:20:37 EDT 2010


I see. So it would only work with ITK-3.18 and up.

Thanks,
Alex


Gaëtan Lehmann wrote:
>
> Le 25 mars 10 à 21:59, Oleksandr Dzyubak a écrit :
>
>>
>> Hi Gaëtan,
>>
>
> Hi Alex,
>
>> What version of ITK did you use? After corrections I made,
>> it successfully runs only on a single Linux box where I keep ITK cvs.
>> The rest ones with ITK-3.16 and older keep complaining about itk::Math.
>>
>
> I used ITK cvs, with the hope it can be released soon.
>
> Gaëtan
>
>> Regards,
>> Alex
>>
>>
>> Oleksandr Dzyubak wrote:
>>>
>>> Hi Gaëtan,
>>>
>>> Nice and long awaited work.
>>> I found a tiny typo in your code that prevents the submitted codes from
>>> being compiled.
>>> At least on my Linux box. The typo is sitting in your median.cxx and 
>>> the
>>> fix is below.
>>>
>>> // Part that gives the errors.
>>> /*
>>>  FilterType::RadiusType r;
>>>  r.Fill(2);
>>> //  filter->SetRadius(r);
>>> */
>>>
>>>  //  this fix solves the problem.
>>>  IType::SizeType r;
>>>  r[0] = 1;
>>>  r[1] = 1;
>>>  filter->SetRadius(r);
>>>
>>> Could you please add the fix and upload the code?
>>>
>>> Thanks,
>>> Alex
>>>
>>> _____________________________________
>>> Powered by www.kitware.com
>>>
>>> Visit other Kitware open-source projects at
>>> http://www.kitware.com/opensource/opensource.html
>>>
>>> Kitware offers ITK Training Courses, for more information visit:
>>> http://www.kitware.com/products/protraining.html
>>>
>>> Please keep messages on-topic and check the ITK FAQ at:
>>> http://www.itk.org/Wiki/ITK_FAQ
>>>
>>> Follow this link to subscribe/unsubscribe:
>>> http://www.itk.org/mailman/listinfo/insight-users
>>>
>>>
>>
>> -- 
>> View this message in context: 
>> http://old.nabble.com/Noise-simulation-tp27990624p28034784.html
>> Sent from the ITK - Users mailing list archive at Nabble.com.
>>
>> _____________________________________
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Kitware offers ITK Training Courses, for more information visit:
>> http://www.kitware.com/products/protraining.html
>>
>> Please keep messages on-topic and check the ITK FAQ at:
>> http://www.itk.org/Wiki/ITK_FAQ
>>
>> Follow this link to subscribe/unsubscribe:
>> http://www.itk.org/mailman/listinfo/insight-users
>



More information about the Insight-users mailing list