程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> java將圖片朋分為幾個部門示例

java將圖片朋分為幾個部門示例

編輯:關於JAVA

java將圖片朋分為幾個部門示例。本站提示廣大學習愛好者:(java將圖片朋分為幾個部門示例)文章只能為提供參考,不一定能成為您想要的結果。以下是java將圖片朋分為幾個部門示例正文


以下代碼應用java將圖片朋分為幾個部門,年夜家參考應用吧


public class SegmentationImage{

   public static Icon Segmentation(String imagename,int Width,int Height,int height,int width) throws Exception{
  // 預備朋分圖片

     BufferedImage img1=ImageIO.read(new File(imagename));
     int half_w=img1.getWidth();
   int rgb[]=new int[half_w*img1.getHeight()];
   img1.getRGB(0, 0, half_w, img1.getHeight(), rgb, 0, half_w);
   BufferedImage img_half=new BufferedImage(half_w, img1.getHeight(), BufferedImage.TYPE_INT_ARGB);
   img_half.setRGB(Width,Height,height,img1.getHeight(), rgb,width,half_w);
   Icon returnIcon = new ImageIcon(img_half);
      return returnIcon;
}
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved