Changes between Version 4 and Version 5 of ControlSystems/SoftwareTeam/Training/GettingStarted/Overlays


Ignore:
Timestamp:
Nov 28, 2019, 11:13:23 PM (6 years ago)
Author:
David Albert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ControlSystems/SoftwareTeam/Training/GettingStarted/Overlays

    v4 v5  
    4343                    continue;
    4444                  }
    45                   // Put a red rectangle on the image
     45                  // Draw a red rectangle on the frame image
    4646                  Imgproc.rectangle(mat,                                    // mat to operate on
    4747                                    new Point(160,120), new Point(480,360), // rectangle coords
    4848                                    new Scalar(0,0,255),                    // OpenCV uses BGR
    4949                                    5);                                     // line thickness
    50                   // Give the output stream a new image to display
     50                  // Give the output stream the new image to display
    5151                  outputStream.putFrame(mat);
    5252              }