| Package | Description | 
|---|---|
| org.micromanager.acquisition | 
 This package contains classes for acquiring data and accessing Micro-
 Manager's Acquisition Engine. 
 | 
| org.micromanager.data | 
 This package contains classes related to the storage and internal
 representation of image data and metadata. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Metadata | 
AcquisitionManager.generateMetadata(Image image,
                boolean includeHardwareState)
Generate a new Metadata that contains pre-populated fields based on the
 current state of the program and the provided Image. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Metadata | 
Metadata.MetadataBuilder.build()
Deprecated.  
Construct a Metadata from the MetadataBuilder. 
 | 
Metadata | 
Image.getMetadata()
Retrieve the Metadata for this Image. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Image | 
DataManager.convertTaggedImage(mmcorej.TaggedImage tagged,
                  Coords coords,
                  Metadata metadata)
Given a TaggedImage input, output an Image based on the TaggedImage,
 but with the Coords and/or Metadata optionally overridden. 
 | 
Image | 
Image.copyWith(Coords coords,
        Metadata metadata)
Generate a copy of this Image, except with different coordinates and
 metadata. 
 | 
Image | 
Image.copyWithMetadata(Metadata metadata)
Generate a copy of this Image, except with different metadata. 
 | 
Image | 
ImageJConverter.createImage(ij.process.ImageProcessor processor,
           Coords coords,
           Metadata metadata)
Create a new Image based on the provided ImageProcessor and metadata. 
 | 
Image | 
DataManager.createImage(java.lang.Object pixels,
           int width,
           int height,
           int bytesPerPixel,
           int numComponents,
           Coords coords,
           Metadata metadata)
Generate a new Image with the provided pixel data, rules for interpreting
 that pixel data, coordinates, and metadata. 
 | 
Image | 
DataManager.wrapImage(java.lang.Object pixels,
         int width,
         int height,
         int bytesPerPixel,
         int numComponents,
         Coords coords,
         Metadata metadata)
Generate a new Image with the provided pixel data, rules for interpreting
 that pixel data, coordinates, and metadata. 
 |