VG3 Software Manual
Software Update Log
Software Introduction
VisionGroup3 Vision Software Platform
Menu Bar
Quick Options Preview
Flow Tree and Global Flow Tree
Function Tree
Software Version Description
Function Addition Tree
Function Information
Image Display Area
AI Model Tree
Global Variable Tree
Camera
Coordinate System Tree
Hardware Communication Configuration
Usage and Troubleshooting of Various Communication Simulation Software
Hardware Management Device Connection Test
String Monitor Operation
Digital IO Monitor Operation
Register Monitor Operation
Image Processing
Image Acquisition and Display
Camera Image Acquisition
Camera Label Image Acquisition
Display Image
Window Clear
Read Camera Image
Video Processing
Video Reading
Video Download
Video Acquisition
Video Generation
Color Detection
Color Image Cropping
Color Selection
KNN Color Selection
Color Conversion
Block Sequence Detection
Color Blob Detection
Category Color
Image Preprocessing
Image Cropping
Image Merge
Image Ring Unfold
Image Filtering
Image Transformation
Camera Distortion Calibration
Perspective Distortion Calibration
Image Correction
Region Processing
Geometry to Region
Region Transformation
Region Screening
Region Operation
Blob Region
Region Creation
Region Generation
Simple Detection
Blob Detection
Blob Multi-Region Detection
Image Contrast
Image Brightness
Line Burr Detection
Circular Burr Detection
Pixel Difference Detection
Positioning and Measurement
Matching
Feature Matching
Optimized Feature Matching
Single Target Template Matching
Multi-Template Feature Matching
Geometric Extraction
Extract Line
Extract Circle
Extract Arc
Extract Ellipse
Edge Extraction
Extract Parallel Lines
Line Intersection
Extract Quadrilateral
Point-Line Caliper
Line-Line Caliper
Edge Distance Counting
Measurement Calibration
Farthest Nearest Point Extraction
Geometric Calculation
Custom Point
Custom Line
Custom Circle
Custom Pose
Custom Rotated Rectangle
Custom Coordinate System
Custom Rectangle Array
Line-Line Intersection
Line-Line Angle
Angle Bisector
Line-Line Distance
Point-Point Distance
Point-Line Distance
Point-Circle Distance
Point-Circle Tangent
Line-Circle Distance
Line-Circle Intersection
Circle-Circle Intersection
Position Correction
Point + Angle Correction
Two-Point Position Correction
Two-Line Position Correction
Positioning Guide
Camera Calibration
Long Radius Calibration (Auto)
Long Radius Calibration (Manual)
Camera Simple Calibration
N-Point Calibration
Calibration Transfer
Calibration Verification
Calibration Reference
Calibration Calculation
Calibration Conversion
Camera Calibration Conversion
Mapping
Mapping Reference
Mapping Conversion
Mechanical Transfer
UVW Calculation
Learn Reference Target
Single Camera Pick
Single Camera Pick (Eye-in-Hand)
Single Camera Pick and Place
Single Camera Correction
Multi-Camera Correction
Dual Camera Alignment
Mechanical Point Alignment
Multi-Camera Alignment
Mechanical Point Alignment (Weight)
Multi-Region Alignment
Identification Tools
Code Reading Tool
1D Barcode Quick Recognition
2D Barcode Quick Recognition
All Type Code Reading
Barcode Grading (AI)
Character Recognition
Matching Character Recognition
Deep Learning
Detection
Object Detection (AI)
Rotated Object Detection (AI)
Human Keypoint Detection[AI]
Segmentation
Image Segmentation AI
Classification
Image Classification[AI]
Recognition
Character Recognition[AI]
Auxiliary Tools
AI-Assisted Annotation
Auxiliary Tools
Control Statements
Flow Unit
Conditional Detection
Complex Condition Detection
Loop Detection
Break
Continue
Combo Box
Flow Delay
Jump Module
Flow Reset
Stop Software
Start Detection
Pause Software
Process Trigger
Async Flow Trigger
Recipe switching
Loop Position Filtering
System Tool
DEBUG INFO
System Time
System Info
Sequence Tools
Data Sequence
Data Sequence Calculation
Continuous state change
Continuous status confirmation
Spatial Displacement Change
Sequence Action
Mathematics and Data
Logical relationship
Arithmetic Operations
Relational Judgment
Absolute Value
Relative Value
Trigonometric Functions
Integer Bitwise Operation
Data Processing
Data Summary
Label Filters
Rotated Label Filtering
Multi-ROI Rotated Label Filtering
Data Calculation
Lua Script Tool
Variable Processing
Linear Variable Creation
Linear Variable Writing
Linear Variable Array Insertion
Linear Variable Array Deletion
Linear Variable Array Value Setting
Global Variable Reading
Global Variable Writing
Global Variable Invalidation
Global Variable Array Insertion
Global Variable Array Deletion
Global Variable Array Value Setting
Global Image Array Preview
Data Binding
Data Unbinding
Array and String
Array Insert
Array Slice
Array Remove
Array Get Value
Array and Data Concatenation
String Split/Conversion
Data to String
String to Data
String Split
String Find
String Substring
Result Analysis
Display Data
Display Array Data
Save Image
Statistical Counting
Display Result on Image
Display Results on Window
Detection Screenshot
Hardware Control
String Communication Read
String Command Control
String Communication Write
Register Communication Read
Register Communication Write
Register Command Control
Siemens DB Block Read
Siemens DB Block Write
Light Controller Control
Digital Input Read
Digital Output Read
Wait for Digital Input
Wait for Digital Output
Digital Output Write
Voice Broadcast
Motion Control
Axis Motion
Stop Axis
Wait for Axis Stop
Set Axis Parameters
Axis Enable
Multi Axis Motion
AI Trainer
AI Trainer Operation Guide
Deep Learning Labeling Principles and Details
Run Interface Edit
Enter Design Interface
Understanding Interface Composition
Object List
Main Menu
Others Design Window Property List Event Script
Widget List
Image Widget
Run Control Widget
Button Widget
Status Monitor Widget
Label Widget
Condition Label Widget
BOOL Setting Widget
Integer Setting Widget
Float Setting Widget
String Setting Widget
Dropdown Setting Control Widget
Integer Slider Widget
Float Slider Widget
Container Widget
Combo Box Widget
Tab Widget
Vertical Layout Widget
Horizontal Layout Widget
Vertical Spacer Widget
Horizontal Spacer Widget
Login Widget
Image Box Widget
Log Widget
Pie Chart Widget
Bar Line Chart Widget
Static Table Widget
Dynamic Table Widget
Circular Progress Widget
Preview Mode
Script Mode
Run Mode
Custom Logo
Software FAQ
How to Solve Global Camera Fly Shooting Smear Problem
Maximize Graphics Card Performance Settings
Method to Enable Virtual Memory
Vision Software Freeze Troubleshooting Steps
Secondary Development
VisionGroup3 CSharp Secondary Development Manual
VG3 SDK Development Guide V1.0 Cpp
VG3 Module Plugin Development
本站点使用 MrDoc 构建
-
+
首页
Flow Tree and Global Flow Tree
## Flow Tree and Global Flow Tree Any vision inspection project in VG3 is composed of flows. The flow arranges the inspection steps through functions, so as to adapt to different inspection scenarios. VG3 supports the creation of multiple flows, and each flow does not interfere with each other. At the same time, cross-flow data interaction and execution logic can also be designed through global flows and global variables. ## General Understanding of Project, Recipe, Flow, and Module VG3 takes Project as the highest naming. Multiple recipes can be created in a project. There are two types of recipes, ***one is General Recipe, and the other is Global Recipe***. There can be only one global recipe, which is composed of multiple global flows. There can be multiple general recipes, and each general recipe can create multiple flows. Please see the structure diagram below for better understanding. ```mermaid graph TD Project --> Global_Recipe --> Flow1 --> Module1 Flow1 --> Module3 Global_Recipe --> Flow2 --> Module2 Flow2 --> Module4 Flow2 --> Module5 Project --> General_Recipe1 --> Flow3 --> Module6 Flow3 --> Module7 Flow3 --> Module8 General_Recipe1 --> Flow4 --> Module9 Flow4 --> Module10 Project --> General_Recipe2 --> Flow5 --> Module11 Flow5 --> Module12 General_Recipe2 --> Flow6 --> Module13 ``` ## Flow Tree Interface ### Normal Flow   #### ①: Flow Settings: Includes flow name modification, flow search, flow prohibition running setting, flow prohibition display, flow execution mode, flow trigger ID, flow trigger interval time, whether to print logs (if yes is selected, the log print will be saved to the hard disk file, please check the latest file starting with info under VisionGroup2/logFile folder information) >d **Deprecated** > > Whether it is a sub-flow, if there is a sub-flow, sub-flow input and output settings  #### ②: Recipe Name #### ③: Flow Online Editing For details, please refer to the [Online Editing](#h3-Online-Editing) introduction below #### ④: Function Drag Enable After locking, dragging inside the function list will be prohibited #### ⑤: New Folder Create a new folder and place some associated flows in different groups under folders to make the project easier to understand and maintain. #### ⑥: Add Flow Add a new flow under the current recipe #### ⑦: Add Sub-flow >d **Deprecated** > > Add sub-flow function, clicking it to create a flow is consistent with the effect of a normal normal flow. ### Global Flow  ### Online Editing Select a flow and click this icon to display the function tree editing interface of the currently selected flow in full screen.  **Highlight some parameters or operations that are different from the editing interface:**  #### ①: Replace Flow Replace the modification of this flow to the current project. Click this button to save the modified parameters and replace them in real time. **Note that the flow compilation must be successful before the replace flow operation can be successful.** #### ②: Save Project Replace the modification of this flow to the current project, and save the modification of the entire project at the same time. #### ③: Compile Flow Check the port connection, data structure, function logic, etc. in the flow. If there is a problem, the compilation will fail, and all error messages will be displayed in the software prompt information area. #### ④: Detection Settings You can set some types of functions to be skipped during detection or continuous detection.  >i **You can check other relevant detailed introductions of the editing interface in the software introduction part** >[Function Addition Tree](/doc/297) >[Image Display Area](/doc/320) >[Function Information](/doc/300) >[Function Tree](/doc/298) ### Flow Right-click Menu Options  Flow supports import and export, reset (all functions under the flow will be cleared after reset), and other operations can be understood literally. --- Click here to jump to the corresponding Chinese manual page: [Flow Tree and Global Flow Tree](/doc/296)
唐红
2026年3月12日 11:53
转发文档
收藏文档
上一篇
下一篇
手机扫码
复制链接
手机扫一扫转发分享
复制链接
Markdown文件
PDF文档(打印)
分享
链接
类型
密码
更新密码