dorianps

Results 110 comments of dorianps

Still looking for a solution to this. Opened also a thread on Stackoverflow, maybe R experts come up with an idea. https://stackoverflow.com/questions/54613330/update-single-common-variable-in-parallel-foreach-loop The issue is simple: there is no way...

Well... the problem is not what each `foreach` worker is returning, they may return NULL for what I care. The problem is that the workers should update the same antsImage...

@1alebra2 Can you share with others as well, I would be interested to have ANTsR in Windows, and probably a good chunk of the imaging community would. Dorian On Tue,...

@muschellij2 , no I haven't, and compiling applications in Windows or R isn't really my cup of tea. It would need some considerable time on my side and I don't...

I was under the impression that a Windows built was already available, albeit from 1-year old code. I was just curious to try it out, but other than that we...

I find this issue quite disturbing. Has anybody tried to check all three options to see which one resolves the problem, or whether they are all valid approaches to enhance...

I am also interested in having a reproducible=TRUE in antsRegistration(). Would be good to have ANTsR itself take care of the needed arguments (seed and threads) to achieve it, and...

Thanks muratmaga, great news. Let's wait for it to pass the Windows Insider stages before we add to the Wiki. I don't go into those beta releases unless necessary, it...

Here is a quick workaround for now (not a solution): ``` # assuming your image is img tempimg = img*0+1 tempimg = iMath(tempimg, 'PadImage', 5) padimg = iMath(img, 'PadImage', 5)...