com.github.ojil.algorithm.Gray8Shrink Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ojil-core Show documentation
Show all versions of ojil-core Show documentation
Open Java Imaging Library.
/*
* Gray8Shrink.java.
* Reduces an image to a new size by averaging the pixels nearest each
* target pixel's pre-image. This is done in two passes, first averaging
* horizontally and then vertically. The horizontal average is done with the
* pixel values shifted 8 bits for accuracy.
*
* Created on October 13, 2007, 2:21 PM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*
* Copyright 2007 by Jon A. Webb
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the Lesser GNU General Public License
* along with this program. If not, see .
*
*/
package com.github.ojil.algorithm;
import com.github.ojil.core.Error;
import com.github.ojil.core.Gray32Image;
import com.github.ojil.core.Gray8Image;
import com.github.ojil.core.Image;
import com.github.ojil.core.PipelineStage;
/**
* Shrinks an input Gray8Image to a given new size. The shrinking is done with
* proper averaging so each output pixel is the average of the corresponding
* rectangular region in the input.
* @author webb
*/
public class Gray8Shrink extends PipelineStage {
private int cHeight;
private int cWidth;
/** Creates a new instance of GrayRectStretch.
*
* @param cWidth new image width
* @param cHeight new image height
* @throws com.github.ojil.core.Error if either is less than or equal to zero.
*/
public Gray8Shrink(int cWidth, int cHeight)
throws com.github.ojil.core.Error {
setWidth(cWidth);
setHeight(cHeight);
}
/** Gets current target height
*
* @return current height
*/
public int getHeight() {
return this.cHeight;
}
/** Gets current target width
*
* @return current width
*/
public int getWidth() {
return this.cWidth;
}
/**
* Process an input Gray8Image, producing a new shrunk output image.
* @param image The input Gray8Image.
* @throws com.github.ojil.core.Error if input is not a Gray8Image, or the input image size is smaller (either
* horizontally or vertically) than the desired size.
*/
public void push(Image image) throws com.github.ojil.core.Error {
if (!(image instanceof Gray8Image)) {
throw new Error(
Error.PACKAGE.ALGORITHM,
ErrorCodes.IMAGE_NOT_GRAY8IMAGE,
image.toString(),
null,
null);
}
if (image.getWidth() < this.cWidth || image.getHeight() < this.cHeight) {
throw new Error(
Error.PACKAGE.ALGORITHM,
ErrorCodes.SHRINK_OUTPUT_LARGER_THAN_INPUT,
image.toString(),
this.toString(),
null);
}
Gray8Image input = (Gray8Image) image;
/* horizontal shrink */
Gray32Image horiz = shrinkHoriz(input);
/* vertical shrink */
Gray8Image result = shrinkVert(horiz);
super.setOutput(result);
}
/** Changes target height
*
* @param cHeight the new target height.
* @throws com.github.ojil.core.Error if height is not positive
*/
public void setHeight(int cHeight) throws com.github.ojil.core.Error {
if (cHeight <= 0) {
throw new Error(
Error.PACKAGE.ALGORITHM,
ErrorCodes.OUTPUT_IMAGE_SIZE_NEGATIVE,
new Integer(cHeight).toString(),
this.toString(),
null);
}
this.cHeight = cHeight;
}
/** Changes target width
*
* @param cWidth the new target width.
* @throws com.github.ojil.core.Error if height is not positive
*/
public void setWidth(int cWidth) throws com.github.ojil.core.Error {
if (cWidth <= 0) {
throw new Error(
Error.PACKAGE.ALGORITHM,
ErrorCodes.OUTPUT_IMAGE_SIZE_NEGATIVE,
new Integer(cWidth).toString(),
this.toString(),
null);
}
this.cWidth = cWidth;
}
/** Horizontal shrink. Shrinks the input from
* (input.getWidth(),input.getHeight()) to (this.cWidth,input.getHeight())
* by averaging the pixels that are nearest each target pixel's pre-image.
* The mapping is x -> x * this.cWidth / input.getWidth() or in inverse
* y -> y * input.getWidth() / this.cWidth
*
* @param input the input image
* @return the shrunk image
*/
private Gray32Image shrinkHoriz(Gray8Image input) {
/* horizontal shrink */
Gray32Image horiz = new Gray32Image(this.cWidth, input.getHeight());
Byte[] inData = input.getData();
Integer[] outData = horiz.getData();
Integer[] nPixelSum = new Integer[input.getHeight()];
for (int i=0; i= nNextPos) {
for (int i=0; i x * this.cHeight / input.getHeight() or in inverse
* y -> y * input.getHeight() / this.cHeight
*
* @param input the input image.
* @returns the shrunk image.
*/
private Gray8Image shrinkVert(Gray32Image input) {
/* vertical shrink */
Gray8Image vert = new Gray8Image(input.getWidth(), this.cHeight);
Integer[] inData = input.getData();
Byte[] outData = vert.getData();
Integer[] nPixelSum = new Integer[input.getWidth()];
for (int i=0; i= nNextPos) {
for (int i=0; i= this.cHeight) {
break;
}
nNextPos += input.getHeight() * 256 / this.cHeight;
nCount = 0;
}
}
return vert;
}
/** Return a string describing the shrinking operation.
*
* @return the string describing the shrinking operation.
*/
public String toString() {
return super.toString() + " (" + this.cWidth + "," + this.cHeight + ")"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy