Page 1 of 1

Add DoubleAnnotation retrieval to OMERO.matlab

PostPosted: Fri Nov 07, 2014 1:44 pm
by gyellen
Hi Sebastian,
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

Re: Add DoubleAnnotation retrieval to OMERO.matlab

PostPosted: Fri Nov 07, 2014 2:01 pm
by gyellen
And TimestampAnnotations, too.
g

Re: Add DoubleAnnotation retrieval to OMERO.matlab

PostPosted: Mon Nov 10, 2014 11:58 am
by sbesson
Hi Gary,

adding these functionalities to OMERO.matlab certainly makes sense. I can add them in the future but we are quite busy at the moment. If you have the necessart fixes ready, feel free to open a Pull Request against GitHub directly or send us a patch of the required changes for inclusion.

Best,
Sebastien