OMERO Tables and OMERO Columns
Posted: Mon Nov 22, 2010 7:13 pm
If I have a numpy array can I do
or should I
- Code: Select all
features_column = omero.grid.DoubleColumn("value", """Feature value""", features )
or should I
- Code: Select all
features_column = omero.grid.DoubleColumn("value", """Feature value""", [] )
#populate columns
for i in range(len(features)):
features_column.values.append( float(features[i]) )