Replies: 6 comments 2 replies
-
My initial feeling is that, for Matlab, "seems confusing" seems the most appropriate option(!) So, for a Matlab variable named "data": ndarray: double[channel, z, y, x] matrix: double[row, col] arrayOfMatrices: double[count, row, col] My reasoning is that it is very common, in Matlab, for the first index to refer to a "vertical" coordinate (e.g. "row" or "y") and the second index to be the "horizontal" coordinate (e.g. "column" or "x"). This holds for matrices, matrix pages, 2D images and 3D volumes formed from arrays of 2D images. The following help pages have some relevant examples. https://uk.mathworks.com/help/matlab/ref/pagetranspose.html |
Beta Was this translation helpful? Give feedback.
-
I would lean towards not breaking what users currently expect to get from the ISMRMRD's MATLAB API. I feel like debugging an array dimension order bug is likely to cause more headaches ... If there are compelling performance reasons to change this (i.e. the expected output of the MATLAB API), then that change would have to be pretty prominently high-lighted ... My (inflation-adjusted) $0.03 ... |
Beta Was this translation helpful? Give feedback.
-
For the original ISMRMRD, I remember we did try to keep it consistent between Matlab and Python - at that time, by making python use the Fortran order. We later came to regret that decision, as it just made "Pythonic" code really hard to write. |
Beta Was this translation helpful? Give feedback.
-
Would this convention break existing gadgetron-matlab reading? I think currently the data comes in as [x channel], but we send images back as [channel row col]? |
Beta Was this translation helpful? Give feedback.
-
Well, the existing situation is already confusing with MRD across languages, so it's a tricky starting point. The It's worth pointing out that when creating an MRD image from Python using
This does come with an associated deprecation warning:
Calling it with the
On the MATLAB side, the reference code in the ismrmrd repo doesn't actually have any code related to how the dimensions of image data is stored in +ismrmrd/Image.m. Whether you'd assume that implied In my fork, I mirrored the "transpose" of the Python
The Gadgetron fork the constructor for the Image class says My personal opinion is that putting aside serialization and efficiency, accessing the data array as I agree with @ojosephs' point that
I also do this is MATLAB, though I guess I didn't put that one on GitHub yet. This is particularly important for integrating existing image processing code where it probably assumes That said, I think the data inside the actual MRD class should be either |
Beta Was this translation helpful? Give feedback.
-
A lot of the comments here are related to ISMRMRD. We are using yardl for PETSIRD (and have no backwards compatibility issues). In any case, yardl could/will be used for many other projects. So I strongly suggest yardl-MATLAB handling should be logical in itself, and not be dictated by previous ISMRMRD conventions. (Of course, "logical" is virtually impossible with MATLAB in my opinion 😄.) In MATLAB, swapping the first 2 dimensions is done in some functions, but not all. (I believe this is largely because MATLAB was designed for 2D, and then had to think how to extend it without breaking too many things.) An example is IMO, the yardl-generated API should not do any swapping/permuting of data, for 2 reasons:
I therefore 100% agree with this statement, and hence disagree with @ojosephs. In my opinion, using (The fact that matricesIn yardl, there is no syntactic difference between If this is a problem for matrix calculations, then in my opinion the only way around that would be to create a yardl vectorsThis discussion hasn't touched on what to do for 1D arrays, which don't exist in MATLAB (at least, last time I checked). Is it a |
Beta Was this translation helpful? Give feedback.
-
TLDR:
Given the following example yardl types, what is the desired shape of each corresponding multidmensional array in Matlab?
Yardl currently serializes and deserializes multidimensional arrays in C-order (the last index varies the fastest as you traverse the array).
Matlab, of course, uses Fortran order (the first index varies the fastest as you traverse the array).
This means that the most efficient way for yardl to deserialize a multidimensional array in Matlab is to first reverse the dimensions as specified in the model. For example, given the model:
or, using yardl's expanded syntax:
In Python and C++, elements of an ImageData
data
are accessed usingdata[channel, z, y, x]
.In Matlab, however, elements of
data
are accessed usingdata[x, y, z, channel]
.This reversed order of dimensions is "correct" in terms of indexing multidimensional arrays in Matlab.
Thus, it is reasonable to establish a convention in yardl that Matlab N-dimensional arrays always have reversed dimensions with respect to the model.
However, this may lead to user errors when operating on matrices.
A matrix always has two dimensions: rows and columns.
In C++, Python, and Matlab, the entry in the
i
th row andj
th column is atmatrix[i, j]
Example:
matrix[r:3, c:5]
has 3 rows and 5 columns...If we define this matrix in Python and serialize it:
Then, to get the same matrix in Matlab, we need to read the array in reverse dimension order and transpose it:
Transposing the matrix in Matlab breaks the "convention" that multidimensional arrays have reversed dimensions.
Likewise, if a user serializes an array of matrices:
data
would have the shape[col, row, count]
. The inner matrices may need to be transposed prior to any matrix operations.[count, row, col]
, but this is counterintuitive in Matlab, since thecount
dimension (which represents pages of matrices) should be the last dimension.[row, col, count]
, but this would result in the original exampleImageData
ndarray having shape[y, x, z, channel]
which, again, seems confusing.So, given the following example yardl types, what is the desired shape of each corresponding multidimensional array in Matlab?
Beta Was this translation helpful? Give feedback.
All reactions