MRI_SCALP_MESH: Find the scalp surface of an Analyze volume (avw) Useage: [FV] = mri_scalp_mesh(avw) FV is a struct with fields, vertices and faces.
0001 function [FV] = mri_scalp_mesh(avw) 0002 0003 % MRI_SCALP_MESH: Find the scalp surface of an Analyze volume (avw) 0004 % 0005 % Useage: [FV] = mri_scalp_mesh(avw) 0006 % 0007 % FV is a struct with fields, vertices and faces. 0008 % 0009 % 0010 0011 0012 FV = isosurface(avw.img,10); 0013 0014 return