Package chunmap.raster.grid.operate

Examples of chunmap.raster.grid.operate.ImageCut


  public void cut() {
    init(100, 80);

    String path = "D:\\Temp\\chunmapData";
    try {
      ImageCut imageCut = new ImageCut(map, path);
      imageCut.cut(2, "hello");

    } catch (IOException e) {
      e.printStackTrace();
    }
  }
View Full Code Here


  public GridLayer autoCut() {
    init(500, 400);

    String path = "D:\\Temp\\chunmapData";
    try {
      ImageCut imageCut = new ImageCut(map, path);
      return imageCut.autoCut(3, 3);

    } catch (IOException e) {
      e.printStackTrace();
    }
View Full Code Here

TOP

Related Classes of chunmap.raster.grid.operate.ImageCut

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.