vote up 2 vote down star
1

For a current project I have to use and do mathemetics on information provided in matrices as well as use ITK/VTK functions for displaying medical information / renders. Basically I have to use both matlab routines and VTK/ITK in a (I guess) 50/50 way. The problem is that, since I have to use both, I want to decide in advance which method to use:

  1. Import ITK and VTK libs into matlab: for this you have to build your own VTK as a start. Then, by this example the whole idea is to write your VTK-code in .mex files. These are files in which you can program c-code as a function of matlab.

  2. Import matlab functions in ITK/VTK environment: for this I would use a language, probably python, to do matrix calculations. I could make use of Numpy. This is a matlab-kind-of calculation module in Python and convert vtk data to numpy data and I can make use of matplotlib to make plots.

Pros / cons ITK/VTK imported in matlab
+ easy to do matlab calculations and plotting
+ matlab is one of most powerfull tools for working with matrices
+ have used matlab before (subjective)

- Have to have matlab installed
- running matlab burdens your pc

Pros / cons matlab imported in ITK/VTK environment
+ no need to have matlab installed
+ less of a strain for PC, and since medical datasets require alot from your pc this is nice.
+ ITK/VTK environment already set up in this case (currently using it this way, but never with matlab/matrices .mat)

- have heard stories it is hard to do matlab calculations in this way. Bit messy.
- less experience in python (in combination with matlab 0)

So...? concluding
Actually I am looking for people who have been working in one of the two environments but since I think there are such a few of them I love to hear suggestions what to look for before making the final choice. It will cost a lot of time to get it working in a way I need it so it would be a waste of time to try both (also have a deadline).

extra notes
- I have tried Simulink for matlab in combination with VTK/ITK libs but I do not like it.
- Although a solution to the problem is ofcourse the best I can get here I am also happy with people having experience in making choices which are in base the same as this one. What are keypoints to look for when making such a choice? Am I missing a keypoint in my pros and cons?

flag

75% accept rate

3 Answers

vote up 2 vote down

VTK comes with Python bindings (one description). I'm assuming ITK does too. If you don't already have a lot of code in Matlab, I'm guessing you'd have a much easier time seamlessly integrating VTK/ITK with python's numpy, matplotlib, etc.

EDIT:

In my opinion, non-trivial MEX functions are a pain to write. The tradeoff can often be writing new MEX functions for each task or taking extra time to write a lot of interfacing code.

Depending on what you're doing, scipy (a bundle of python packages including matplotlib, numpy, etc.) does a lot of what Matlab does. There are subtle differences and various tradeoffs. Automatic broadcasting is so incredibly useful, once you get the hang of it. MathWorks has recently added BSXFUN, but it's automatic with numpy. If you're doing a lot of work with sparse matrices or calling a lot of the more advanced linear algebra functions, check the numpy docs to see if what you need exists yet.

Depending on what you've done with your environment so far, I'd suggest trying out the Python approach for a few weeks. See if its plotting capabilities and math functions are sufficient for your needs. Expect to bang your head against the wall a little in the beginning because the documentation isn't as mature as Matlab's.

link|flag
I already have a working environment where I have python program modules as well as ITK/VTK imported. The problem for me was in the last guess you make, is it really easier and why. – bastijn May 28 at 5:41
vote up 2 vote down

This might help: mlabwrap is a fairly sophisticated way to call Matlab form Python. http://mlabwrap.sourceforge.net/

link|flag
Wow, thanks for the late reply :). This looks promising. – bastijn Aug 20 at 9:07
vote up 0 vote down

It took me some time to get both versions tested but to conclude on this matter:

I have chosen to use python combined with numpy/scipy and matplotlib. There is only one main reason why I have chosen to use this. When you import itk and vtk in Matlab you have to use Mex functions to program your C code in. These mex files are in the routine in the following way:

alt text

Now, when the routine comes to the point where the mex file is, it hands control to this mex file and fires it like a function, the mex file is like a black box. After the Mex file has done its thing it hands control back to matlab and the routine continues. But you cannot do any matlab operations while the Mex file is being fired or acces variables in this mexfile from matlab. So it is impossible to run some itk/vtk code, notice it doesn't work and alter some of the variables used in the mex file (created there, but they will also die there because of the black box only returning your result) for speed testing what does work. You have to fire the whole mex function again.

This is a major downside, as you need to rerun the complete mex file (C function) for all little changes. There are busy fixing this major constriction but since they are not ready yet and I do need it now I have chosen to take the python tour.

link|flag

Your Answer

Get an OpenID
or

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