Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

82
LINES

< > BotCompany Repo | #1024653 // WholeImageFilter

JavaX fragment (include) [tags: use-pretranspiled]

Libraryless. Click here for Pure Java version (1938L/13K).

/*
Copyright 2006 Jerry Huxtable

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

/**
 * A filter which acts as a superclass for filters which need to have the whole image in memory
 * to do their stuff.
 */
static abstract class WholeImageFilter extends AbstractBufferedImageOp implements IF1<BufferedImage> {

  /**
     * The output image bounds.
     */
    protected Rectangle transformedSpace;

  /**
     * The input image bounds.
     */
  protected Rectangle originalSpace;
  
  /**
   * Construct a WholeImageFilter.
   */
  public WholeImageFilter() {
  }

  public BufferedImage get(BufferedImage src) {
    ret filter(src, null);
  }

    public BufferedImage filter( BufferedImage src, BufferedImage dst ) {
        int width = src.getWidth();
        int height = src.getHeight();
    int type = src.getType();
    WritableRaster srcRaster = src.getRaster();

    originalSpace = new Rectangle(0, 0, width, height);
    transformedSpace = new Rectangle(0, 0, width, height);
    transformSpace(transformedSpace);

        if ( dst == null ) {
            ColorModel dstCM = src.getColorModel();
      dst = new BufferedImage(dstCM, dstCM.createCompatibleWritableRaster(transformedSpace.width, transformedSpace.height), dstCM.isAlphaPremultiplied(), null);
    }
    WritableRaster dstRaster = dst.getRaster();

    int[] inPixels = getRGB( src, 0, 0, width, height, null );
    inPixels = filterPixels( width, height, inPixels, transformedSpace );
    setRGB( dst, 0, 0, transformedSpace.width, transformedSpace.height, inPixels );

        return dst;
    }

  /**
     * Calculate output bounds for given input bounds.
     * @param rect input and output rectangle
     */
  protected void transformSpace(Rectangle rect) {
  }
  
  /**
     * Actually filter the pixels.
     * @param width the image width
     * @param height the image height
     * @param inPixels the image pixels
     * @param transformedSpace the output bounds
     * @return the output pixels
     */
  protected abstract int[] filterPixels( int width, int height, int[] inPixels, Rectangle transformedSpace );
}

download  show line numbers  debug dex  old transpilations   

Travelled to 6 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1024653
Snippet name: WholeImageFilter
Eternal ID of this version: #1024653/3
Text MD5: 0de5d2c846a339688afb242d52a8b79d
Transpilation MD5: b0ccba240d28bf66676ffffafc581f17
Author: stefan
Category: javax / imaging
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2019-08-24 14:26:52
Source code size: 2665 bytes / 82 lines
Pitched / IR pitched: No / No
Views / Downloads: 157 / 522
Version history: 2 change(s)
Referenced in: [show references]