📜  JavaFx |高斯模糊类

📅  最后修改于: 2022-05-13 01:55:50.374000             🧑  作者: Mango

JavaFx |高斯模糊类

GaussianBlur 是 JavaFX 的一部分。 GaussianBlur 是一种使用高斯卷积核的模糊效果实现,具有可配置的半径。

类的构造函数:

  1. GaussianBlur() : 创建一个新的 GaussianBlur 对象。
  2. GaussianBlur(double r) :创建一个新的具有指定半径的 GaussianBlur 对象。

常用方法:

MethodExplanation
getRadius()Return the value of the property radius.
getInput()Return the value of the property input.
setInput(Effect val)Sets the value of the property input.
setRadius(double val)Sets the value of the property radius.

下面的程序说明了 GaussianBlur 类的使用:

  1. 导入图像并为其添加 GaussianBlur 效果的Java程序:在该程序中,创建FileInputStream并将图像作为文件的输入。名为image的图像是使用来自文件输入流的输入创建的。从图像中,创建图像视图对象并将其添加到VBox 。然后将VBox添加到场景中,并将场景添加到舞台上。使用作为参数传递的指定级别创建GaussianBlur效果,并使用setEffect()函数将效果设置为图像视图。
    // Java program to import an image 
    // and add Gaussian Blur effect to it
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.*;
    import javafx.scene.layout.*;
    import javafx.stage.Stage;
    import javafx.scene.image.*;
    import javafx.scene.effect.*;
    import java.io.*;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
      
    public class gaussian_blur_1 extends Application {
      
        // launch the application
        public void start(Stage stage) throws Exception
        {
      
            // set title for the stage
            stage.setTitle("GussianBlur Example");
      
            // create a input stream
            FileInputStream input = new FileInputStream("D:\\GFG.png");
      
            // create a image
            Image image = new Image(input);
      
            // create a image View
            ImageView imageview = new ImageView(image);
      
            // create a gaussian blur effect
            GaussianBlur gaussian_blur = new GaussianBlur();
      
            // set effect
            imageview.setEffect(gaussian_blur);
      
            // create a VBox
            VBox vbox = new VBox(imageview);
      
            // create a scene
            Scene scene = new Scene(vbox, 200, 200);
      
            // set the scene
            stage.setScene(scene);
      
            stage.show();
        }
      
        // Main Method
        public static void main(String args[])
        {
      
            // launch the application
            launch(args);
        }
    }
    

    输入图像:

    输出:

  2. 用于导入图像并以指定半径为其添加 GaussianBlur 效果的Java程序:在此程序中,创建FileInputStream并将图像作为文件的输入。名为image的图像是使用来自文件输入流的输入创建的。从图像中,创建图像视图对象并将其添加到VBox 。然后将 VBox 添加到场景中,并将场景添加到舞台上。使用作为参数传递的指定级别创建 GaussianBlur 效果,并使用setEffect()函数将效果设置为图像视图。 GaussianBlur的半径是使用setRadius()函数指定的。
    // Java program to import an image and
    // add Gaussian Blur effect to it with
    // a specified radius
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.*;
    import javafx.scene.layout.*;
    import javafx.stage.Stage;
    import javafx.scene.image.*;
    import javafx.scene.effect.*;
    import java.io.*;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
      
    public class gaussian_blur_2 extends Application {
      
        // launch the application
        public void start(Stage stage) throws Exception
        {
      
            // set title for the stage
            stage.setTitle("GaussianBlur Example");
      
            // create a input stream
            FileInputStream input = new FileInputStream("D:\\GFG.png");
      
            // create a image
            Image image = new Image(input);
      
            // create a image View
            ImageView imageview = new ImageView(image);
      
            // create a gaussian blur effect
            GaussianBlur gaussian_blur = new GaussianBlur();
      
            // set radius for gaussian blur
            gaussian_blur.setRadius(20.0f);
      
            // set effect
            imageview.setEffect(gaussian_blur);
      
            // create a VBox
            VBox vbox = new VBox(imageview);
      
            // create a scene
            Scene scene = new Scene(vbox, 200, 200);
      
            // set the scene
            stage.setScene(scene);
      
            stage.show();
        }
      
        // Main Method
        public static void main(String args[])
        {
      
            // launch the application
            launch(args);
        }
    }
    

    输入图像:

    输出:

注意:上述程序可能无法在在线 IDE 中运行。请使用离线编译器。

参考: https://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/GaussianBlur.html