Version: 5.4.9-ice35-b101

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 or t can be found with: byZ.get(-1); byT.get(-1); respectively.

Used By

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

Data Member Index

opts
rois
byZ
byT

Data Members

RoiOptions opts;

RoiList rois;

IntShapeListMap byZ;

IntShapeListMap byT;


Home Previous Up Next Index