Terminology Concepts

Before using the software, please understand the following concepts to better understand and use the software.

  • Algorithm Graph

    The graph is an algorithm processing flow described by the combination of different operators.

    Main features of the graph:

    • Visualization of algorithm flow: Graphically display each step of the algorithm processing flow to help you intuitively understand the data flow path.

    • Modular design: Allows you to flexibly build and modify the algorithm flow by combining different operators.

    • Debugging and optimization: By observing the data flow in the graph, you can easily find bottlenecks or errors in the algorithm, so as to optimize and debug.

  • Operator

    The operator is the algorithm processing module in the graph, and each operator performs a specific data processing task.

    Main features of the operator:

    • Data processing: The operator is responsible for receiving input data, performing specific processing operations, and outputting results.

    • Modularity: Each operator is an independent functional module that can be debugged and tested separately.

    • Connection and combination: Operators can be connected through input and output ports, and data flows from the output port of one operator to the input port of another operator. Connecting different operators enables the gradual processing and transfer of data.

  • Operator Parameters

    Operator parameters are control variables that change the execution performance of operators. By adjusting operator parameters, you can control the behavior and performance of operators to achieve the best processing effect.