I have a numpy array and want to convert it into an ITK image for further processing. How do I do this without using the PyBuffer extension to WrapITK. I can't use that because I get a bunch of errors when compiling:

.../ExternalProjects/PyBuffer/itkPyBuffer.txx: In static member function ‘static PyObject* itk::PyBuffer<TImage>::GetArrayFromImage(TImage*) [with TImage = itk::Image<float, 2u>]’:
.../ExternalProjects/PyBuffer/wrap_itkPyBufferPython.cxx:1397:   instantiated from here
.../ExternalProjects/PyBuffer/itkPyBuffer.txx:64: error: cannot convert ‘int*’ to ‘npy_intp*’ in argument passing

I could use an idea about either how to fix the compilation errors or another way to convert my python objects.

link|improve this question

75% accept rate
It looks like you found the answer, polyatomic.org/2010/10/28/doing-the-obvious. You should probably either answer the question yourself and accept it, or just delete the question so other people don't waste time on it. By the way, I did find that it probably only is a problem on 64-bit systems because of the difference in the size of int. – Justin Peel Oct 28 '10 at 5:00
Since npy_intp has been around for so long, I figured they would have changed it in the ITK source by now if it was the problem. I can't be the only person to come against this bug. – tkerwin Oct 28 '10 at 14:57
No, I saw one other person who came across it, but they did something slightly different - used an alternative function or some such. – Justin Peel Oct 29 '10 at 4:41
feedback

2 Answers

up vote 1 down vote accepted

Just change

int dimensions[ ImageDimension ];

to

npy_intp dimensions[ ImageDimension ];

and recompile.

link|improve this answer
feedback

You may be very interested in the recent SimpleITK work that is occuring.

There is much information at www.simpleitk.org.

The source code and much documentation can be found at http://www.github.com/SimpleITK.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.