Package net.sourceforge.jiu.color.promotion

Source Code of net.sourceforge.jiu.color.promotion.PromotionGray16

/*
* PromotionGray16
*
* Copyright (c) 2003 Marco Schmidt.
* All rights reserved.
*/

package net.sourceforge.jiu.color.promotion;

import net.sourceforge.jiu.data.BilevelImage;
import net.sourceforge.jiu.data.Gray16Image;
import net.sourceforge.jiu.data.Gray8Image;
import net.sourceforge.jiu.data.MemoryGray16Image;
import net.sourceforge.jiu.data.PixelImage;
import net.sourceforge.jiu.ops.ImageToImageOperation;
import net.sourceforge.jiu.ops.MissingParameterException;
import net.sourceforge.jiu.ops.WrongParameterException;

/**
* Converts BilevelImage and Gray8Image objects to Gray16Image objects.
* Promotion is a lossless operation that will lead to an output image
* that holds the same image in a way that demands more memory.
* @author Marco Schmidt
* @since 0.11.0
*/
public class PromotionGray16 extends ImageToImageOperation
{
  private void prepare(PixelImage in) throws
    MissingParameterException,
    WrongParameterException
  {
    if (in == null)
    {
      throw new MissingParameterException("Missing input image.");
    }
    if (!
         (
          (in instanceof BilevelImage) ||
          (in instanceof Gray8Image)
         )
       )
    {
      throw new WrongParameterException("Unsupported input image type: " + in.getClass().getName());
    }
    PixelImage out = getOutputImage();
    if (out == null)
    {
      setOutputImage(new MemoryGray16Image(in.getWidth(), in.getHeight()));
    }
    else
    {
      if (!(out instanceof Gray16Image))
      {
        throw new WrongParameterException("Specified output image type must be of class Gray16Image; got " + in.getClass().getName());
      }
      if (in.getWidth() != out.getWidth())
      {
        throw new WrongParameterException("Specified output image must have same width as input image.");
      }
      if (in.getHeight() != out.getHeight())
      {
        throw new WrongParameterException("Specified output image must have same height as input image.");
      }
    }
  }

  private void process(BilevelImage in, Gray16Image out)
  {
    final int WIDTH = in.getWidth();
    final int HEIGHT = in.getHeight();
    final short MAX = (short)out.getMaxSample(0);
    final short MIN = 0;
    for (int y = 0; y < HEIGHT; y++)
    {
      for (int x = 0; x < WIDTH; x++)
      {
        if (in.isBlack(x, y))
        {
          out.putShortSample(0, x, y, MIN);
        }
        else
        {
          out.putShortSample(0, x, y, MAX);
        }
      }
      setProgress(y, HEIGHT);
    }
  }

  private void process(Gray8Image in, Gray16Image out)
  {
    final int WIDTH = in.getWidth();
    final int HEIGHT = in.getHeight();
    for (int y = 0; y < HEIGHT; y++)
    {
      for (int x = 0; x < WIDTH; x++)
      {
        int sample = in.getSample(x, y);
        out.putSample(x, y, sample | (sample << 8));
      }
      setProgress(y, HEIGHT);
    }
  }

  public void process() throws
    MissingParameterException,
    WrongParameterException
  {
    PixelImage in = getInputImage();
    prepare(in);
    Gray16Image out = (Gray16Image)getOutputImage();
    if (in instanceof BilevelImage)
    {
      process((BilevelImage)in, out);
    }
    else
    if (in instanceof Gray8Image)
    {
      process((Gray8Image)in, out);
    }
  }
}
TOP

Related Classes of net.sourceforge.jiu.color.promotion.PromotionGray16

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.