All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.micromanager.acqj.example.WorthlessImageProcessor Maven / Gradle / Ivy

There is a newer version: 0.38.1
Show newest version
package org.micromanager.acqj.example;

import mmcorej.TaggedImage;
import org.micromanager.acqj.util.ImageProcessorBase;

public class WorthlessImageProcessor extends ImageProcessorBase {


   /**
    * This is a minimal implementation of an ImageProcessor meant for demonstration purposes only.
    * This ImageProcessor simply takes an example TaggedImage and passes it along, without
    * actually doing any processing. In practice, ImageProcessors should do something useful:
    * e.g., analyze the image and take some action, modify the image, or divert the image
    * to a customized savaing pipeline.
    */
   @Override
   protected TaggedImage processImage(TaggedImage img) {
      // TODO: do something with the image
      System.out.println("Processing an image");
      return img;
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy