ImageHandler image_handler = new ImageHandler("影像路徑");
BufferedImage origin_image = image_handler.loadImage();
String image_path = "影像路徑";
ImageHandler image_handler = new ImageHandler(image_path);
image_handler.outputImage(影像檔, "測試輸出");
Filter.toGray(影像檔);
Filter.toNegative(影像檔);
Filter.setGamma(影像檔, gamma 值);
Filter.saltpepper(影像檔);
Filter.median_filter(影像檔);
Filter.mean_filter(影像檔);
Filter.sobel_filter(影像檔)
Filter.scale_2_binary(影像檔);