From: Hanneke S. <H.S...@ge...> - 2004-04-07 12:58:02
|
Dear all, I wanted to let you know that the solution proposed by Francesc as stated below works for my problem concerning reading image data in H5 format! Thanks a lot for your quick help Francesc! Regards, Hanneke Schuurmans >On another hand, if all you want is to access only to the data as a >2-dimensional array, without the advantages that represents the IMAGE >object, you can apply the next patch: > >--- tables/Group.py.orig 2004-04-06 19:33:57.000000000 +0200 >+++ tables/Group.py 2004-04-06 19:34:00.000000000 +0200 >@@ -219,6 +219,8 @@ > return Table() > elif class_ == "ARRAY": > return Array() >+ elif class_ == "IMAGE": >+ return Array() > elif class_ == "EARRAY": > return EArray() > elif class_ == "VLARRAY": |