Version: 5.1.4-ice35-b55

OmeroBlitz Api
Home Previous Up Next Index

omero::api::RoiResult

Overview

class RoiResult

Returned by most search methods. The RoiOptions is the options object passed into a method, possibly modified by the server if some value was out of range. The RoiList contains all the Rois which matched the given query. The individual shapes of the Rois which matched can be found in the indexes. For example, all the shapes on z=1 can by found by: ShapeList shapes = byZ.get(1); Shapes which are found on all z, t, or do not belong to a group can be found with: byZ.get(-1); byT.get(-1); byG.get(""); respectively. The groups string-string map provides the hierarchy of the group strings using unix-style filesystem paths. That is, if a returned shape is in the group "/a/b", then there will be an entry in the groups map: ...TBD...

Used By

LongRoiResultMap
IRoi::findByImage
IRoi::findByPlane
IRoi::findByRoi
IRoi::getMeasuredRois

Data Member Index

opts
rois
byZ
byT
byG
groups

Data Members

RoiOptions opts;

RoiList rois;

IntShapeListMap byZ;

IntShapeListMap byT;

StringShapeListMap byG;

StringStringMap groups;


Home Previous Up Next Index