Examples of FloatProcessor


Examples of com.googlecode.jcsv.annotations.processors.FloatProcessor

    registerValueProcessor(String.class, new StringProcessor());
    registerValueProcessor(Boolean.class, new BooleanProcessor());
    registerValueProcessor(Byte.class, new ByteProcessor());
    registerValueProcessor(Character.class, new CharacterProcessor());
    registerValueProcessor(Double.class, new DoubleProcessor());
    registerValueProcessor(Float.class, new FloatProcessor());
    registerValueProcessor(Integer.class, new IntegerProcessor());
    registerValueProcessor(Long.class, new LongProcessor());
    registerValueProcessor(Short.class, new ShortProcessor());
    registerValueProcessor(Date.class, new DateProcessor(DateFormat.getDateInstance()));
  }
View Full Code Here

Examples of ij.process.FloatProcessor

     *                 accuracy needs slightly more computing time.
     */
    public void blurGaussian(ImageProcessor ip, double sigmaX, double sigmaY, double accuracy) {
        if (nPasses<=1)
            nPasses = ip.getNChannels() * (sigmaX>0 && sigmaY>0 ? 2 : 1);
        FloatProcessor fp = null;
        for (int i=0; i<ip.getNChannels(); i++) {
            fp = ip.toFloat(i, fp);
            if (Thread.currentThread().isInterrupted()) return; // interruption for new parameters during preview?
            blurFloat(fp, sigmaX, sigmaY, accuracy);
            if (Thread.currentThread().isInterrupted()) return;
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.