Package net.sourceforge.jiu.color.analysis

Examples of net.sourceforge.jiu.color.analysis.MeanDifference


    BMPCodec codec = new BMPCodec();
    codec.setImage(removal.getOutputImage());
    codec.setFile(args[1], CodecMode.SAVE);
    codec.process();
    codec.close();
    MeanDifference diff = new MeanDifference();
    diff.setImages(inputImage, removal.getOutputImage());
    diff.process();
    System.out.println("Mean difference: " + diff.getDifference());
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.jiu.color.analysis.MeanDifference

Copyright © 2018 www.massapicom. 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.