Uses of Class
ij.process.ByteProcessor

Packages that use ByteProcessor
ij.plugin.filter   
ij.process   
 

Uses of ByteProcessor in ij.plugin.filter
 

Methods in ij.plugin.filter that return ByteProcessor
 ByteProcessor MaximumFinder.findMaxima(ImageProcessor ip, double tolerance, double threshold, int outputType, boolean excludeOnEdges, boolean isEDM)
          Here the processing is done: Find the maxima of an image (does not find minima)
(package private)  ByteProcessor MaximumFinder.make8bit(ImageProcessor ip, ByteProcessor typeP, boolean isEDM, float globalMin, float globalMax, double threshold)
          Create an 8-bit image by scaling the pixel values of ip (background 0) and mark maximum areas as 255.
 

Methods in ij.plugin.filter with parameters of type ByteProcessor
(package private)  void MaximumFinder.analyzeAndMarkMaxima(ImageProcessor ip, ByteProcessor typeP, MaximumFinder.MaxPoint[] maxPoints, boolean excludeEdgesNow, boolean isEDM, float globalMin, double tolerance)
          Check all maxima in list maxPoints, mark type of the points in typeP
(package private)  void MaximumFinder.cleanupMaxima(ByteProcessor outIp, ByteProcessor typeP, MaximumFinder.MaxPoint[] maxPoints)
          eliminate unmarked maxima for use by watershed.
(package private)  void MaximumFinder.deleteEdgeParticles(ByteProcessor ip, ByteProcessor typeP)
          delete particles corresponding to edge maxima
(package private)  void MaximumFinder.deleteParticle(int x, int y, ByteProcessor ip, ij.gui.Wand wand)
          delete a particle (set from value 255 to current fill value).
(package private)  MaximumFinder.MaxPoint[] MaximumFinder.getSortedMaxPoints(ImageProcessor ip, ByteProcessor typeP, boolean excludeEdgesNow, boolean isEDM, float globalMin, double threshold)
          Find all local maxima (irrespective whether they finally qualify as maxima or not)
(package private)  ByteProcessor MaximumFinder.make8bit(ImageProcessor ip, ByteProcessor typeP, boolean isEDM, float globalMin, float globalMax, double threshold)
          Create an 8-bit image by scaling the pixel values of ip (background 0) and mark maximum areas as 255.
 

Uses of ByteProcessor in ij.process
 

Subclasses of ByteProcessor in ij.process
 class BinaryProcessor
          This class processes binary images.
 

Methods in ij.process that return ByteProcessor
(package private)  ByteProcessor TypeConverter.convertFloatToByte()
          Converts a FloatProcessor to a ByteProcessor.
(package private)  ByteProcessor TypeConverter.convertRGBToByte()
          Converts a ColorProcessor to a ByteProcessor.
(package private)  ByteProcessor TypeConverter.convertShortToByte()
          Converts a ShortProcessor to a ByteProcessor.
 

Constructors in ij.process with parameters of type ByteProcessor
BinaryProcessor(ByteProcessor ip)
          Creates a BinaryProcessor from a ByteProcessor.
ByteBlitter(ByteProcessor ip)
          Constructs a ByteBlitter from a ByteProcessor.