Examples of copyDataToRaster()


Examples of com.lightcrafts.mediax.jai.RasterAccessor.copyDataToRaster()

        }

        if (d.needsClamping()) {
            d.clampDataArrays();
        }
        d.copyDataToRaster();
    }

    private void computeRectByte(RasterAccessor src,
                                 RasterAccessor dst) {
  initByteTable();
View Full Code Here

Examples of com.lightcrafts.mediax.jai.RasterAccessor.copyDataToRaster()

            break;
        }

        if (d.isDataCopy()) {
            d.clampDataArrays();
            d.copyDataToRaster();
        }
    }

    private void computeRectByte(RasterAccessor src1,
                                 RasterAccessor src2,
View Full Code Here

Examples of com.lightcrafts.mediax.jai.RasterAccessor.copyDataToRaster()

            // If the RasterAccessor object set up a temporary buffer for the
            // op to write to, tell the RasterAccessor to write that data
            // to the raster no that we're done with it.
            if (dstAccessor.isDataCopy()) {
                dstAccessor.clampDataArrays();
                dstAccessor.copyDataToRaster();
            }
        }
    }

    private void byteLoop(RasterAccessor src, RasterAccessor dst) {
View Full Code Here

Examples of com.lightcrafts.mediax.jai.RasterAccessor.copyDataToRaster()

        if (d.needsClamping()) {
            d.clampDataArrays();
        }

        d.copyDataToRaster();
    }

    private void computeRectByte(RasterAccessor src1,
                                 RasterAccessor src2,
                                 RasterAccessor dst) {
View Full Code Here

Examples of com.lightcrafts.mediax.jai.RasterAccessor.copyDataToRaster()

        // If the RasterAccessor object set up a temporary buffer for the
        // op to write to, tell the RasterAccessor to write that data
        // to the raster no that we're done with it.
        if (dstAccessor.isDataCopy()) {
            dstAccessor.clampDataArrays();
            dstAccessor.copyDataToRaster();
        }
    }

    private void preComputePositionsInt(Rectangle destRect,
      int srcRectX, int srcRectY,
View Full Code Here

Examples of com.lightcrafts.mediax.jai.RasterAccessor.copyDataToRaster()

        case DataBuffer.TYPE_DOUBLE:
            computeRectDouble(s, d, a, roiRaster);
            break;
        }

        d.copyDataToRaster();
    }

    private void computeRectByte(RasterAccessor[] src,
                                 RasterAccessor dst,
                                 RasterAccessor[] alfa,
View Full Code Here

Examples of com.lightcrafts.mediax.jai.RasterAccessor.copyDataToRaster()

        if (dstAccessor.needsClamping()) {
            dstAccessor.clampDataArrays();
        }

        // Make sure that the output data is copied to the destination.
        dstAccessor.copyDataToRaster();
    }
}
View Full Code Here

Examples of com.lightcrafts.mediax.jai.RasterAccessor.copyDataToRaster()

            break;
        }

        if (d.isDataCopy()) {
            d.clampDataArrays();
            d.copyDataToRaster();
        }
    }

    private void computeRectByte(PlanarImage src, RasterAccessor dst) {
        RandomIter iter = RandomIterFactory.create(src, src.getBounds());
View Full Code Here

Examples of com.lightcrafts.mediax.jai.RasterAccessor.copyDataToRaster()

        // If the RasterAccessor object set up a temporary buffer for the
        // op to write to, tell the RasterAccessor to write that data
        // to the raster no that we're done with it.
        if (dstAccessor.isDataCopy()) {
            dstAccessor.clampDataArrays();
            dstAccessor.copyDataToRaster();
        }
    }

    /** Performs min filtering using the subclass's mask on byte data */
    protected abstract void byteLoop(RasterAccessor src,
View Full Code Here

Examples of com.lightcrafts.mediax.jai.RasterAccessor.copyDataToRaster()

        // If the RasterAccessor object set up a temporary buffer for the
        // op to write to, tell the RasterAccessor to write that data
        // to the raster no that we're done with it.
        if (dstAccessor.isDataCopy()) {
            dstAccessor.clampDataArrays();
            dstAccessor.copyDataToRaster();
        }
    }

    /** Performs median filtering using the subclass's mask on byte data */
    protected abstract void byteLoop(RasterAccessor src,
View Full Code Here
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.