I’d like to postprocess a gifti file written by the CAT toolbox (matlab). It contains one data array with scalar values, one data array with vertices and a third data array with triangles. itk::MeshFileReader offers readers for cells and points but not for scalar values.
I could use gifticlib in addition to ITK to read the scalar values. Is there a way to combine scalar values and mesh data in ITK?
Meshes can have point data and cell (triangle) data. And ITK should already read both from a GIFTI file. Can you double check that? If not read properly, can you debug to find out what is the problem?
My question was if there is a way to combine scalar data with mesh data (e.g. cortical thickness values across a brain surface). Point data seem to be transposed, I’ll open an issue for that.
Just to double check that I understand the gifti format correctly: In row major order “1 2 3 4” means two 2D points P1(1 3) and P2(2 4), in column major order P1(1 2) and P2(3 4).
(screenshot taken from GIFTI_Surface_Format.pdf, p6)
Fine, then I’ll try to get points with values working.
row/column major order: I just want to be sure, that “1 2 3 4” in row major order means P(1|3) and Q(2|4). When reading the file with itk::MeshFileReader and printing the points accessed with GetPoint() the output is [1 2] and [3 4] what would be expected with column major order (and vice versa).