-
Notifications
You must be signed in to change notification settings - Fork 107
UI Overview
The main window primarily consists of three views: the preview, the palette, and the pipeline.
This is where you can search for operations to add to your pipeline. You can add a new step to your pipeline by clicking on an operation in the palette.
The most important of the three views is the pipeline. The pipeline shows you a diagram of all of the steps, sockets, and connections in your pipeline.
A step is an instance of a computer vision operation in a pipeline. A step can do an operation such as Gaussian blur, threshold, or detect lines.
Steps have inputs on the left and output on the right. Inputs and outputs include both Mats (images) and other parameters such as blur radius and threshold values.
You can remove a step or change its position in the pipeline using the small buttons
Most inputs can be set with some sort of control. As an example, the "Blur" operation has a slider for changing the blur radius.
Inputs such as images are often passed into a step from the output of a previous step.
You can make a connection between two steps by clicking and dragging sockets (as shown below). It can be deleted by clicking either of the sockets.
Preview buttons look like this:
The preview button toggles a view of the image at that step in the pipeline. For example, a simple image filter like a Gaussian blur would have a preview that displays the result after the image is passed through the Gaussian blur filter. You can use the preview to see what the data looks like after each step to help debug your algorithm.
This is where you can see the previews of certain outputs. Click the preview button next to an output to make it show up in the preview pane.
If you change the inputs of a step (such as by moving a slider), you can see the results change in real-time..