Skip to content

MUN104: Plantar pressure distribution template

License

Notifications You must be signed in to change notification settings

0todd0000/mun104

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mun104

MUN104: Plantar pressure distribution template computed from 104 individuals from Munster University, Germany.

Overview

These are the MUN104 left- and right- plantar pressure distribution templates, computed from 104 subjects at the University of Münster, Germany.

Recommended uses: as a datum for comparisons with individuals and/or other populations.

Data

MUN104.h5.zip (for Matlab, Python, C, etc.) MUN104.csv.zip (comma-separated ASCII format)

Reference

Pataky TC, Bosch K, Mu T, Keijsers NLW, Segers V, Rosenbaum D, Goulermas JY (2011). An anatomically unbiased foot template for inter-subject plantar pressure evaluation. Gait and Posture 33(3): 418-422.

Loading and viewing the data (MATLAB)

file_name = 'MUN104L.h5'; 
I = hdf5read(file_name, '/I'); 
I = double( I' ); 
h = pcolor(I); 
set(h, 'facecolor','flat', 'edgecolor','none') 
axis image

Loading and viewing the data (Python)

import tables 
import matplotlib.pyplot as plt
file_name = 'MUN104L.h5' 
with tables.open_file(file_name, 'r') as h:
	I = h.root.I.read()
plt.imshow(I, origin='lower', interpolation='nearest')
plt.show()

Data format

HDF5 is an open data format, excellent for the fast reading-and-writing of large datasets. Please find more information at: www.hdfgroup.org/HDF5 (for Matlab, Python, C, etc.)

Copyright (c) 2011 Todd Colin Pataky, Kerstin Bosch, and Dieter Rosenbaum

About

MUN104: Plantar pressure distribution template

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published