OME::Image - an OME image
use OME::Image;
# Acquire a factory from your session. See OME::Session for more details
# Load an image
my $image = $factory->loadObject( OME::Image, $imageID );
To come.
accessor/mutator for name
accessor/mutator for creation timestamp
accessor/mutator for timestamp of image import
accessor/mutator for description
accessor/mutator for Experimenter attribute
accessor/mutator for Group attribute
Returns the root features of this image (i.e., those which do not have a parent feature).
$image->datasets();
returns all datasets that the image belongs to
# accessor
$image->DefaultPixels();
# mutator $image->DefaultPixels( $pixels_ID );
This is an accessor/mutator for the default pixels attribute associated with this image. Default pixels should NEVER be used for any computational purpose because they are mutable. They are used by image viewers and other non computational purposes.
The older version of this method (DefaultPixels) still exists for
legacy code. New code should use the default_pixels version, which
takes advantage of underlying DBObject code for reading/writing
attributes.
Douglas Creager <dcreager@alum.mit.edu>, Open Microscopy Environment, MIT