Cortical Mesh MNI format

Description 

The following MATLAB code will load MNI cortical mesh format into matlab. It only read ASCII-based MNI format. MNI surface mesh format  always ends with *obj extension.

MATLAB Codes and sample cortical mesh (MATLAB 6.1. implementation)

[tri,coord,nbr,normal]=mni_getmesh('outersurface.obj');
load thickness.data;
output=hk_smooth(thickness',tri,coord,nbr,1,200);
trisurf(tri, coord(1,:),coord(2,:),coord(3,:),output);

Documentation
The cortical mesh format has been used in the following  studies.

Images


Created 05/09/2006.