Package org.encog.platformspecific.j2se.data.image

Examples of org.encog.platformspecific.j2se.data.image.ImageMLDataSet


    g.setColor(Color.WHITE);
    g.fillRect(0, 0, 5, 5);
    g.dispose();
   
    Downsample downsample = new SimpleIntensityDownsample();
    ImageMLDataSet set = new ImageMLDataSet(downsample,true,-1,1);
    BasicMLData ideal = new BasicMLData(1);
    ImageMLData input = new ImageMLData(image);
    set.add(input,ideal);
    set.downsample(2,2);
    Iterator<MLDataPair> itr = set.iterator();
    MLDataPair pair = (MLDataPair)itr.next();
    MLData data = pair.getInput();
    double[] d = data.getData();
    //Assert.assertEquals(d[0],-1.0, 0.1);
    //Assert.assertEquals(d[5],1, 0.1);
View Full Code Here

TOP

Related Classes of org.encog.platformspecific.j2se.data.image.ImageMLDataSet

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.