Ejemplo n.º 1
0
 public void testExtraction() throws IOException {
   CEDD sch = new CEDD();
   BufferedImage image = ImageIO.read(new FileInputStream(testFilesPath + testFiles[0]));
   System.out.println("image = " + image.getWidth() + " x " + image.getHeight());
   sch.extract(image);
   System.out.println("sch = " + sch.getStringRepresentation());
 }