Diferencia entre revisiones de «GIC-experimental-databases/Whole OASIS deformation feature vectors»
De Grupo de Inteligencia Computacional (GIC)
Sin resumen de edición |
Sin resumen de edición |
||
Línea 3: | Línea 3: | ||
[http://data.sands-social-network-mockup.com FTP] | [http://data.sands-social-network-mockup.com FTP] | ||
- Reference: | |||
:- Alexandre Savio, Manuel Graña; ''Deformation based feature selection for Computer Aided Diagnosis of Alzheimer’s Disease'', Expert Systems with Applications, Available online 20 September 2012, Volume 40, Issue 5, April 2013, Pages 1619–1628 [http://dx.doi.org/10.1016/j.eswa.2012.09.009][[Media:Alexsavio_eswa12_draft.pdf | draft]] JCR (2011) 2.203 (Q1 in CSAI) | |||
Revisión del 08:21 4 oct 2013
ftp@sands-social-network-mockup.com
- Reference:
- - Alexandre Savio, Manuel Graña; Deformation based feature selection for Computer Aided Diagnosis of Alzheimer’s Disease, Expert Systems with Applications, Available online 20 September 2012, Volume 40, Issue 5, April 2013, Pages 1619–1628 [1] draft JCR (2011) 2.203 (Q1 in CSAI)
- Code snippet for reading HDF5 file from Matlab:
filename = 'modulatedgm.hdf5' finfo = h5info(filename); for i = 1:size(finfo.Datasets,1) varname = finfo.Datasets(i).Name var = genvarname(varname); dsname = ['/' varname]; eval( [var '= h5read(filename, dsname);' ]); end clear i finfo var varname dsname