PhysioNet  ·  PhysioBank  ·  PhysioToolkit

PhysioNet
the research resource for
complex physiologic signals

Advanced Search | Tour | Mirrors
How to Cite | Contributing | FAQ
Publications  ·  Tutorials  ·  Challenges  ·  Discussions  ·  Contributors  ·  Events  ·  Sponsors  ·  About PhysioNet  ·  What's New? Site Map

Return to Challenge 2007 data main page

Case 3 Triangulated Torso and Heart Geometry

These files, and the notes below, were prepared by A. van Oosterom and P. van Dam. The geometry files are text files. Matlab code for reading and manipulating the .tri files is also provided here.

Geometry (.tri) files: (ascii files)

All the above: consistent coordinate system; heart in natural position

In addition, here is the model containing the nodes that should be referenced for challenge event 5:

Auxiliary files

Descriptive trailers are included in these files:

These files are described below:

Using .tri files in Matlab

Each .tri file can be opened in Matlab as

   [VER,ITRI]=loadtri('filename.tri);

Strip the first column, which contains vertex/triangle labels. VER are coordinates of all nodes of the mesh, and ITRI are ordered triples of the triangles.

The ECG potential data may be imported in Matlab by using:

   PHI=loadmat('ecgs_case3.asc');

After stripping the first 3 columns by:

   PHI=PHI(:,4:355);
the potentials (units 1 microV) are a matrix of potential data, with the rows at 1 ms intervals. The first 3 columns are leads Vr, Vl, and Vf (non-augmented amplitudes!); the next 120 columns are the potentials at the 120 electode array; and the remaining columns are the potentials at a regular 352 array.

Potentials at all 370 nodes representing the thorax can be computed by using the transfer matrix:

    T=loadmat('transfer_370_123.mat');
which yields a Laplacian based interpolation (see intripol.m):
    PSI=T*PHI;

Finally, the files savemat.m and savetri.m are scripts for storing any similar output data.


Return to Challenge 2007 data main page

Send feedback about this page to PhysioNet

Your comments and suggestions are welcome. We encourage you to use our feedback form to comment on this page. If you would like to receive a reply, please send your comments by email to webmaster@physionet.org, or post them to:

PhysioNet
MIT Room E25-505A
77 Massachusetts Avenue
Cambridge, MA 02139 USA

Updated Friday, 28-Sep-2007 21:00:36 EDT National Institute of Biomedical Imaging and Bioengineering National Institutes of Health National Institute of General Medical Sciences