Add DoubleAnnotation retrieval to OMERO.matlab
Posted: Fri Nov 07, 2014 1:44 pm
Hi Sebastian,
Can you please add DoubleAnnotation to the retrieval types for OMERO.matlab? The quick fix is:
but you might also want to add a function getImageDoubleAnnotations.
Thanks! - gary
Can you please add DoubleAnnotation to the retrieval types for OMERO.matlab? The quick fix is:
- Code: Select all
function types = getAnnotationTypes()
% GYOMERO fix for doubles
names = {'tag', 'file', 'comment', 'xml', 'double'};
classnames = {'TagAnnotation', 'FileAnnotation', 'CommentAnnotation',...
'XmlAnnotation','DoubleAnnotation'};
types = createObjectDictionary(names, classnames);
but you might also want to add a function getImageDoubleAnnotations.
Thanks! - gary