Marius Staring
Marius Staring
I have no idea. I think this requires debugging.
At the moment we have no resources to work on this issue ourselves.
Just to be clear, we are not working on this issue ourselves. We welcome PRs though :-)
https://github.com/SuperElastix/elastix/blob/e868fcc45703ab110722c6498b30248335ad5b3c/Common/OpenCL/Filters/itkGPURecursiveGaussianImageFilter.hxx#L51 @dpshamonin Can we modify the code like this: this->m_DeviceLocalMemorySize = (localMemSize / 3) / sizeof(float); --> this->m_DeviceLocalMemorySize = std::min( (localMemSize / 3) / sizeof(float), 1024 ); And add a...
If the difference is only at the border, could it be due to the decision when we are at the border and when not? This could be an region->IsInside( x...
Then I propose to follow the ITK. Can we do it in such a way that we automatically pick up new modifications as well, e.g. by using inheritance?
ok, let's discuss during our sprint. The major re-design may be put in an issue to work on later.
that is intended due to the nature of the cyclic transform
@N-Dekker Would you have time to have a look later?
I suspect that the seed we set in the executable is not set in the library. We will put it on our list of todo's ...