OpenCV 4.9基本绘图

news2024/11/27 6:36:41
  • 返回:OpenCV系列文章目录(持续更新中......)

上一篇:OpenCV使用通用内部函数对代码进行矢量化

下一篇:OpenCV系列文章目录(持续更新中......)

目标

在本教程中,您将学习如何:

  • 使用 OpenCV 函数 line() 画一条线
  • 使用 OpenCV 函数 ellipse()绘制椭圆
  • 使用 OpenCV 函数 rectangle()绘制矩形
  • 使用 OpenCV 函数 circle() 画一个圆
  • 使用 OpenCV 函数 fillPoly()绘制填充多边形

OpenCV理论

在本教程中,我们将大量使用两种结构:cv::P oint 和 cv::Scalar :

它表示一个二维点,由其图像坐标 \(x\) 和 \(y\) 指定。我们可以将其定义为:

C++:

Point pt;
pt.x = 10;
pt.y = 8;

 Java:

Point pt = new Point();
pt.x = 10;
pt.y = 8;

or

C++:

Point pt = Point(10, 8);

 Java: 

Point pt = new Point(10, 8);

标量

  • 表示一个 4 元素向量。Scalar 类型在 OpenCV 中广泛用于传递像素值。
  • 在本教程中,我们将广泛使用它来表示 BGR 颜色值(3 个参数)。如果不打算使用最后一个参数,则无需定义它。
  • 让我们看一个例子,如果我们被要求一个颜色参数,我们给出:
  • Scalar( a, b, c )
    我们将定义一个 BGR 颜色,例如:蓝色 = a绿色 = b 和红色 = c

代码
此代码位于 OpenCV 示例文件夹中。否则你可以从这里下载

C++:

#include <opencv2/core.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/highgui.hpp>
 
#define w 400
 
using namespace cv;
 
void MyEllipse( Mat img, double angle );
void MyFilledCircle( Mat img, Point center );
void MyPolygon( Mat img );
void MyLine( Mat img, Point start, Point end );
 
int main( void ){
 
 char atom_window[] = "Drawing 1: Atom";
 char rook_window[] = "Drawing 2: Rook";
 
 Mat atom_image = Mat::zeros( w, w, CV_8UC3 );
 Mat rook_image = Mat::zeros( w, w, CV_8UC3 );
 
 
 MyEllipse( atom_image, 90 );
 MyEllipse( atom_image, 0 );
 MyEllipse( atom_image, 45 );
 MyEllipse( atom_image, -45 );
 
 MyFilledCircle( atom_image, Point( w/2, w/2) );
 
 
 MyPolygon( rook_image );
 
 rectangle( rook_image,
 Point( 0, 7*w/8 ),
 Point( w, w),
 Scalar( 0, 255, 255 ),
 FILLED,
 LINE_8 );
 
 MyLine( rook_image, Point( 0, 15*w/16 ), Point( w, 15*w/16 ) );
 MyLine( rook_image, Point( w/4, 7*w/8 ), Point( w/4, w ) );
 MyLine( rook_image, Point( w/2, 7*w/8 ), Point( w/2, w ) );
 MyLine( rook_image, Point( 3*w/4, 7*w/8 ), Point( 3*w/4, w ) );
 
 imshow( atom_window, atom_image );
 moveWindow( atom_window, 0, 200 );
 imshow( rook_window, rook_image );
 moveWindow( rook_window, w, 200 );
 
 waitKey( 0 );
 return(0);
}
 
 
void MyEllipse( Mat img, double angle )
{
 int thickness = 2;
 int lineType = 8;
 
 ellipse( img,
 Point( w/2, w/2 ),
 Size( w/4, w/16 ),
 angle,
 0,
 360,
 Scalar( 255, 0, 0 ),
 thickness,
 lineType );
}
 
void MyFilledCircle( Mat img, Point center )
{
 circle( img,
 center,
 w/32,
 Scalar( 0, 0, 255 ),
 FILLED,
 LINE_8 );
}
 
void MyPolygon( Mat img )
{
 int lineType = LINE_8;
 
 Point rook_points[1][20];
 rook_points[0][0] = Point( w/4, 7*w/8 );
 rook_points[0][1] = Point( 3*w/4, 7*w/8 );
 rook_points[0][2] = Point( 3*w/4, 13*w/16 );
 rook_points[0][3] = Point( 11*w/16, 13*w/16 );
 rook_points[0][4] = Point( 19*w/32, 3*w/8 );
 rook_points[0][5] = Point( 3*w/4, 3*w/8 );
 rook_points[0][6] = Point( 3*w/4, w/8 );
 rook_points[0][7] = Point( 26*w/40, w/8 );
 rook_points[0][8] = Point( 26*w/40, w/4 );
 rook_points[0][9] = Point( 22*w/40, w/4 );
 rook_points[0][10] = Point( 22*w/40, w/8 );
 rook_points[0][11] = Point( 18*w/40, w/8 );
 rook_points[0][12] = Point( 18*w/40, w/4 );
 rook_points[0][13] = Point( 14*w/40, w/4 );
 rook_points[0][14] = Point( 14*w/40, w/8 );
 rook_points[0][15] = Point( w/4, w/8 );
 rook_points[0][16] = Point( w/4, 3*w/8 );
 rook_points[0][17] = Point( 13*w/32, 3*w/8 );
 rook_points[0][18] = Point( 5*w/16, 13*w/16 );
 rook_points[0][19] = Point( w/4, 13*w/16 );
 
 const Point* ppt[1] = { rook_points[0] };
 int npt[] = { 20 };
 
 fillPoly( img,
 ppt,
 npt,
 1,
 Scalar( 255, 255, 255 ),
 lineType );
}
 
void MyLine( Mat img, Point start, Point end )
{
 int thickness = 2;
 int lineType = LINE_8;
 
 line( img,
 start,
 end,
 Scalar( 0, 0, 0 ),
 thickness,
 lineType );
}

Java:

import org.opencv.core.*;
import org.opencv.core.Point;
import org.opencv.highgui.HighGui;
import org.opencv.imgproc.Imgproc;
 
import java.util.*;
import java.util.List;
 
class GeometricDrawingRun{
 
 private static final int W = 400;
 
 public void run(){
 String atom_window = "Drawing 1: Atom";
 String rook_window = "Drawing 2: Rook";
 
 Mat atom_image = Mat.zeros( W, W, CvType.CV_8UC3 );
 Mat rook_image = Mat.zeros( W, W, CvType.CV_8UC3 );
 
 MyEllipse( atom_image, 90.0 );
 MyEllipse( atom_image, 0.0 );
 MyEllipse( atom_image, 45.0 );
 MyEllipse( atom_image, -45.0 );
 
 MyFilledCircle( atom_image, new Point( W/2, W/2) );
 
 MyPolygon( rook_image );
 
 Imgproc.rectangle( rook_image,
 new Point( 0, 7*W/8 ),
 new Point( W, W),
 new Scalar( 0, 255, 255 ),
 -1,
 8,
 0 );
 
 MyLine( rook_image, new Point( 0, 15*W/16 ), new Point( W, 15*W/16 ) );
 MyLine( rook_image, new Point( W/4, 7*W/8 ), new Point( W/4, W ) );
 MyLine( rook_image, new Point( W/2, 7*W/8 ), new Point( W/2, W ) );
 MyLine( rook_image, new Point( 3*W/4, 7*W/8 ), new Point( 3*W/4, W ) );
 
 HighGui.imshow( atom_window, atom_image );
 HighGui.moveWindow( atom_window, 0, 200 );
 HighGui.imshow( rook_window, rook_image );
 HighGui.moveWindow( rook_window, W, 200 );
 
 HighGui.waitKey( 0 );
 System.exit(0);
 }
 
 
 private void MyEllipse( Mat img, double angle ) {
 int thickness = 2;
 int lineType = 8;
 int shift = 0;
 
 Imgproc.ellipse( img,
 new Point( W/2, W/2 ),
 new Size( W/4, W/16 ),
 angle,
 0.0,
 360.0,
 new Scalar( 255, 0, 0 ),
 thickness,
 lineType,
 shift );
 }
 
 private void MyFilledCircle( Mat img, Point center ) {
 int thickness = -1;
 int lineType = 8;
 int shift = 0;
 
 Imgproc.circle( img,
 center,
 W/32,
 new Scalar( 0, 0, 255 ),
 thickness,
 lineType,
 shift );
 }
 
 private void MyPolygon( Mat img ) {
 int lineType = 8;
 int shift = 0;
 
 Point[] rook_points = new Point[20];
 rook_points[0] = new Point( W/4, 7*W/8 );
 rook_points[1] = new Point( 3*W/4, 7*W/8 );
 rook_points[2] = new Point( 3*W/4, 13*W/16 );
 rook_points[3] = new Point( 11*W/16, 13*W/16 );
 rook_points[4] = new Point( 19*W/32, 3*W/8 );
 rook_points[5] = new Point( 3*W/4, 3*W/8 );
 rook_points[6] = new Point( 3*W/4, W/8 );
 rook_points[7] = new Point( 26*W/40, W/8 );
 rook_points[8] = new Point( 26*W/40, W/4 );
 rook_points[9] = new Point( 22*W/40, W/4 );
 rook_points[10] = new Point( 22*W/40, W/8 );
 rook_points[11] = new Point( 18*W/40, W/8 );
 rook_points[12] = new Point( 18*W/40, W/4 );
 rook_points[13] = new Point( 14*W/40, W/4 );
 rook_points[14] = new Point( 14*W/40, W/8 );
 rook_points[15] = new Point( W/4, W/8 );
 rook_points[16] = new Point( W/4, 3*W/8 );
 rook_points[17] = new Point( 13*W/32, 3*W/8 );
 rook_points[18] = new Point( 5*W/16, 13*W/16 );
 rook_points[19] = new Point( W/4, 13*W/16 );
 
 MatOfPoint matPt = new MatOfPoint();
 matPt.fromArray(rook_points);
 
 List<MatOfPoint> ppt = new ArrayList<MatOfPoint>();
 ppt.add(matPt);
 
 Imgproc.fillPoly(img,
 ppt,
 new Scalar( 255, 255, 255 ),
 lineType,
 shift,
 new Point(0,0) );
 }
 
 private void MyLine( Mat img, Point start, Point end ) {
 int thickness = 2;
 int lineType = 8;
 int shift = 0;
 
 Imgproc.line( img,
 start,
 end,
 new Scalar( 0, 0, 0 ),
 thickness,
 lineType,
 shift );
 }
}
 
public class BasicGeometricDrawing {
 public static void main(String[] args) {
 // Load the native library.
 System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
 new GeometricDrawingRun().run();
 }
}

Python :

import cv2 as cv
import numpy as np
 
W = 400
 
def my_ellipse(img, angle):
 thickness = 2
 line_type = 8
 
 cv.ellipse(img,
 (W // 2, W // 2),
 (W // 4, W // 16),
 angle,
 0,
 360,
 (255, 0, 0),
 thickness,
 line_type)
 
def my_filled_circle(img, center):
 thickness = -1
 line_type = 8
 
 cv.circle(img,
 center,
 W // 32,
 (0, 0, 255),
 thickness,
 line_type)
 
def my_polygon(img):
 line_type = 8
 
 # Create some points
 ppt = np.array([[W / 4, 7 * W / 8], [3 * W / 4, 7 * W / 8],
 [3 * W / 4, 13 * W / 16], [11 * W / 16, 13 * W / 16],
 [19 * W / 32, 3 * W / 8], [3 * W / 4, 3 * W / 8],
 [3 * W / 4, W / 8], [26 * W / 40, W / 8],
 [26 * W / 40, W / 4], [22 * W / 40, W / 4],
 [22 * W / 40, W / 8], [18 * W / 40, W / 8],
 [18 * W / 40, W / 4], [14 * W / 40, W / 4],
 [14 * W / 40, W / 8], [W / 4, W / 8],
 [W / 4, 3 * W / 8], [13 * W / 32, 3 * W / 8],
 [5 * W / 16, 13 * W / 16], [W / 4, 13 * W / 16]], np.int32)
 ppt = ppt.reshape((-1, 1, 2))
 cv.fillPoly(img, [ppt], (255, 255, 255), line_type)
 # Only drawind the lines would be:
 # cv.polylines(img, [ppt], True, (255, 0, 255), line_type)
 
def my_line(img, start, end):
 thickness = 2
 line_type = 8
 
 cv.line(img,
 start,
 end,
 (0, 0, 0),
 thickness,
 line_type)
 
atom_window = "Drawing 1: Atom"
rook_window = "Drawing 2: Rook"
 
# Create black empty images
size = W, W, 3
atom_image = np.zeros(size, dtype=np.uint8)
rook_image = np.zeros(size, dtype=np.uint8)
 
 
# 1.a. Creating ellipses
my_ellipse(atom_image, 90)
my_ellipse(atom_image, 0)
my_ellipse(atom_image, 45)
my_ellipse(atom_image, -45)
 
# 1.b. Creating circles
my_filled_circle(atom_image, (W // 2, W // 2))
 
 
# 2. Draw a rook
# ------------------
# 2.a. Create a convex polygon
my_polygon(rook_image)
 
cv.rectangle(rook_image,
 (0, 7 * W // 8),
 (W, W),
 (0, 255, 255),
 -1,
 8)
 
 
# 2.c. Create a few lines
my_line(rook_image, (0, 15 * W // 16), (W, 15 * W // 16))
my_line(rook_image, (W // 4, 7 * W // 8), (W // 4, W))
my_line(rook_image, (W // 2, 7 * W // 8), (W // 2, W))
my_line(rook_image, (3 * W // 4, 7 * W // 8), (3 * W // 4, W))
 
cv.imshow(atom_window, atom_image)
cv.moveWindow(atom_window, 0, 200)
cv.imshow(rook_window, rook_image)
cv.moveWindow(rook_window, W, 200)
 
cv.waitKey(0)
cv.destroyAllWindows()

解释

由于我们计划绘制两个示例(一个原子和一个车),我们必须创建两个图像和两个窗口来显示它们。

 C++:

 char atom_window[] = "Drawing 1: Atom";
 char rook_window[] = "Drawing 2: Rook";
 
 Mat atom_image = Mat::zeros( w, w, CV_8UC3 );
 Mat rook_image = Mat::zeros( w, w, CV_8UC3 );

Java:

String atom_window = "Drawing 1: Atom";
 String rook_window = "Drawing 2: Rook"; 
 Mat atom_image = Mat.zeros( W, W, CvType.CV_8UC3 );
 Mat rook_image = Mat.zeros( W, W, CvType.CV_8UC3 );

Python:  

# Windows names
atom_window = "Drawing 1: Atom"
rook_window = "Drawing 2: Rook"
 
# Create black empty images
size = W, W, 3
atom_image = np.zeros(size, dtype=np.uint8)
rook_image = np.zeros(size, dtype=np.uint8)

我们创建了函数来绘制不同的几何形状。例如,为了绘制原子,我们使用了 MyEllipse 和 MyFilledCircle

 MyEllipse( atom_image, 90 );
 MyEllipse( atom_image, 0 );
 MyEllipse( atom_image, 45 );
 MyEllipse( atom_image, -45 );
 
 MyFilledCircle( atom_image, Point( w/2, w/2) );

Java:

 
 MyEllipse( atom_image, 90.0 );
 MyEllipse( atom_image, 0.0 );
 MyEllipse( atom_image, 45.0 );
 MyEllipse( atom_image, -45.0 );
 
 MyFilledCircle( atom_image, new Point( W/2, W/2) );

Python: 

# 1. Draw a simple atom:
# -----------------------
 
# 1.a. Creating ellipses
my_ellipse(atom_image, 90)
my_ellipse(atom_image, 0)
my_ellipse(atom_image, 45)
my_ellipse(atom_image, -45)
 
# 1.b. Creating circles
my_filled_circle(atom_image, (W // 2, W // 2))

为了绘制车,我们使用了 MyLine矩形和 MyPolygon

 MyPolygon( rook_image );
 
 rectangle( rook_image,
 Point( 0, 7*w/8 ),
 Point( w, w),
 Scalar( 0, 255, 255 ),
 FILLED,
 LINE_8 );
 
 MyLine( rook_image, Point( 0, 15*w/16 ), Point( w, 15*w/16 ) );
 MyLine( rook_image, Point( w/4, 7*w/8 ), Point( w/4, w ) );
 MyLine( rook_image, Point( w/2, 7*w/8 ), Point( w/2, w ) );
 MyLine( rook_image, Point( 3*w/4, 7*w/8 ), Point( 3*w/4, w ) );

Java:

 
 MyPolygon( rook_image );
 
 Imgproc.rectangle( rook_image,
 new Point( 0, 7*W/8 ),
 new Point( W, W),
 new Scalar( 0, 255, 255 ),
 -1,
 8,
 0 );
 
 MyLine( rook_image, new Point( 0, 15*W/16 ), new Point( W, 15*W/16 ) );
 MyLine( rook_image, new Point( W/4, 7*W/8 ), new Point( W/4, W ) );
 MyLine( rook_image, new Point( W/2, 7*W/8 ), new Point( W/2, W ) );
 MyLine( rook_image, new Point( 3*W/4, 7*W/8 ), new Point( 3*W/4, W ) );

Python: 

# 2. Draw a rook
# ------------------
# 2.a. Create a convex polygon
my_polygon(rook_image)
 
cv.rectangle(rook_image,
 (0, 7 * W // 8),
 (W, W),
 (0, 255, 255),
 -1,
 8) 
 
# 2.c. Create a few lines
my_line(rook_image, (0, 15 * W // 16), (W, 15 * W // 16))
my_line(rook_image, (W // 4, 7 * W // 8), (W // 4, W))
my_line(rook_image, (W // 2, 7 * W // 8), (W // 2, W))
my_line(rook_image, (3 * W // 4, 7 * W // 8), (3 * W // 4, W))

让我们检查一下这些函数中的每一个都包含什么:

我的线条:
void MyLine( Mat img, Point start, Point end )
{
 int thickness = 2;
 int lineType = LINE_8;
 
 line( img,
 start,
 end,
 Scalar( 0, 0, 0 ),
 thickness,
 lineType );
}

Java:

 private void MyLine( Mat img, Point start, Point end ) {
 int thickness = 2;
 int lineType = 8;
 int shift = 0;
 
 Imgproc.line( img,
 start,
 end,
 new Scalar( 0, 0, 0 ),
 thickness,
 lineType,
 shift );
 }

Python: 

def my_line(img, start, end):
 thickness = 2
 line_type = 8
 
 cv.line(img,
 start,
 end,
 (0, 0, 0),
 thickness,
 line_type)
  • 正如我们所看到的,MyLine 只需调用函数 line() ,它执行以下操作:
    • 从点起点到点终点画一条线
    • 该线显示在图像 img 中
    • 线条颜色由 ( 0, 0, 0 ) 定义,它是与黑色相对应的 RGB 值
    • 线条粗细设置为粗细(在本例中为 2)
    • 该线是 8 连接的线 (lineType = 8)
MyEllipse(椭圆)
void MyEllipse( Mat img, double angle )
{
 int thickness = 2;
 int lineType = 8;
 
 ellipse( img,
 Point( w/2, w/2 ),
 Size( w/4, w/16 ),
 angle,
 0,
 360,
 Scalar( 255, 0, 0 ),
 thickness,
 lineType );
}

Java:

 private void MyEllipse( Mat img, double angle ) {
 int thickness = 2;
 int lineType = 8;
 int shift = 0;
 
 Imgproc.ellipse( img,
 new Point( W/2, W/2 ),
 new Size( W/4, W/16 ),
 angle,
 0.0,
 360.0,
 new Scalar( 255, 0, 0 ),
 thickness,
 lineType,
 shift );
 }

Python: 

def my_ellipse(img, angle):
 thickness = 2
 line_type = 8
 
 cv.ellipse(img,
 (W // 2, W // 2),
 (W // 4, W // 16),
 angle,
 0,
 360,
 (255, 0, 0),
 thickness,
 line_type)
  • 从上面的代码中,我们可以观察到函数 ellipse() 绘制一个椭圆,使得:
    • 椭圆显示在图像 img 中
    • 椭圆中心位于点 (w/2, w/2) 中,并封闭在大小为 (w/4, w/16) 的盒子中
    • 椭圆是旋转角度度数
    • 椭圆在 0 到 360 度之间延伸一条弧线
    • 图形的颜色将是 ( 255, 0, 0 ),表示 BGR 值中的蓝色。
    • 椭圆的厚度为 2。
MyFilledCircle(圆)
void MyFilledCircle( Mat img, Point center )
{
 circle( img,
 center,
 w/32,
 Scalar( 0, 0, 255 ),
 FILLED,
 LINE_8 );
}

Java:

 private void MyFilledCircle( Mat img, Point center ) {
 int thickness = -1;
 int lineType = 8;
 int shift = 0;
 
 Imgproc.circle( img,
 center,
 W/32,
 new Scalar( 0, 0, 255 ),
 thickness,
 lineType,
 shift );
 }

Python: 

def my_filled_circle(img, center):
 thickness = -1
 line_type = 8
 
 cv.circle(img,
 center,
 W // 32,
 (0, 0, 255),
 thickness,
 line_type)
  • 与椭圆函数类似,我们可以观察到 circle 接收为参数:
    • 将显示圆圈的图像(img)
    • 圆的中心表示为点中心
    • 圆的半径:w/32
    • 圆圈的颜色:( 0, 0, 255 ) 在 BGR 中表示红色
    • 由于厚度 = -1,因此圆将被绘制填充。
MyPolygon
void MyPolygon( Mat img )
{
 int lineType = LINE_8;
 
 Point rook_points[1][20];
 rook_points[0][0] = Point( w/4, 7*w/8 );
 rook_points[0][1] = Point( 3*w/4, 7*w/8 );
 rook_points[0][2] = Point( 3*w/4, 13*w/16 );
 rook_points[0][3] = Point( 11*w/16, 13*w/16 );
 rook_points[0][4] = Point( 19*w/32, 3*w/8 );
 rook_points[0][5] = Point( 3*w/4, 3*w/8 );
 rook_points[0][6] = Point( 3*w/4, w/8 );
 rook_points[0][7] = Point( 26*w/40, w/8 );
 rook_points[0][8] = Point( 26*w/40, w/4 );
 rook_points[0][9] = Point( 22*w/40, w/4 );
 rook_points[0][10] = Point( 22*w/40, w/8 );
 rook_points[0][11] = Point( 18*w/40, w/8 );
 rook_points[0][12] = Point( 18*w/40, w/4 );
 rook_points[0][13] = Point( 14*w/40, w/4 );
 rook_points[0][14] = Point( 14*w/40, w/8 );
 rook_points[0][15] = Point( w/4, w/8 );
 rook_points[0][16] = Point( w/4, 3*w/8 );
 rook_points[0][17] = Point( 13*w/32, 3*w/8 );
 rook_points[0][18] = Point( 5*w/16, 13*w/16 );
 rook_points[0][19] = Point( w/4, 13*w/16 );
 
 const Point* ppt[1] = { rook_points[0] };
 int npt[] = { 20 };
 
 fillPoly( img,
 ppt,
 npt,
 1,
 Scalar( 255, 255, 255 ),
 lineType );
}

Java:

 private void MyPolygon( Mat img ) {
 int lineType = 8;
 int shift = 0;
 
 Point[] rook_points = new Point[20];
 rook_points[0] = new Point( W/4, 7*W/8 );
 rook_points[1] = new Point( 3*W/4, 7*W/8 );
 rook_points[2] = new Point( 3*W/4, 13*W/16 );
 rook_points[3] = new Point( 11*W/16, 13*W/16 );
 rook_points[4] = new Point( 19*W/32, 3*W/8 );
 rook_points[5] = new Point( 3*W/4, 3*W/8 );
 rook_points[6] = new Point( 3*W/4, W/8 );
 rook_points[7] = new Point( 26*W/40, W/8 );
 rook_points[8] = new Point( 26*W/40, W/4 );
 rook_points[9] = new Point( 22*W/40, W/4 );
 rook_points[10] = new Point( 22*W/40, W/8 );
 rook_points[11] = new Point( 18*W/40, W/8 );
 rook_points[12] = new Point( 18*W/40, W/4 );
 rook_points[13] = new Point( 14*W/40, W/4 );
 rook_points[14] = new Point( 14*W/40, W/8 );
 rook_points[15] = new Point( W/4, W/8 );
 rook_points[16] = new Point( W/4, 3*W/8 );
 rook_points[17] = new Point( 13*W/32, 3*W/8 );
 rook_points[18] = new Point( 5*W/16, 13*W/16 );
 rook_points[19] = new Point( W/4, 13*W/16 );
 
 MatOfPoint matPt = new MatOfPoint();
 matPt.fromArray(rook_points);
 
 List<MatOfPoint> ppt = new ArrayList<MatOfPoint>();
 ppt.add(matPt);
 
 Imgproc.fillPoly(img,
 ppt,
 new Scalar( 255, 255, 255 ),
 lineType,
 shift,
 new Point(0,0) );
 }

Python: 

def my_polygon(img):
 line_type = 8
 
 # Create some points
 ppt = np.array([[W / 4, 7 * W / 8], [3 * W / 4, 7 * W / 8],
 [3 * W / 4, 13 * W / 16], [11 * W / 16, 13 * W / 16],
 [19 * W / 32, 3 * W / 8], [3 * W / 4, 3 * W / 8],
 [3 * W / 4, W / 8], [26 * W / 40, W / 8],
 [26 * W / 40, W / 4], [22 * W / 40, W / 4],
 [22 * W / 40, W / 8], [18 * W / 40, W / 8],
 [18 * W / 40, W / 4], [14 * W / 40, W / 4],
 [14 * W / 40, W / 8], [W / 4, W / 8],
 [W / 4, 3 * W / 8], [13 * W / 32, 3 * W / 8],
 [5 * W / 16, 13 * W / 16], [W / 4, 13 * W / 16]], np.int32)
 ppt = ppt.reshape((-1, 1, 2))
 cv.fillPoly(img, [ppt], (255, 255, 255), line_type)
 # Only drawind the lines would be:
 # cv.polylines(img, [ppt], True, (255, 0, 255), line_type)
  • 为了绘制一个填充的多边形,我们使用函数 fillPoly() 。我们注意到:
    • 多边形将在 img 上绘制
    • 多边形的顶点是 ppt 中的点集
    • 多边形的颜色由 ( 255, 255, 255 ) 定义,这是白色的 BGR 值
矩形
 rectangle( rook_image,
 Point( 0, 7*w/8 ),
 Point( w, w),
 Scalar( 0, 255, 255 ),
 FILLED,
 LINE_8 );

Java:

 Imgproc.rectangle( rook_image,
 new Point( 0, 7*W/8 ),
 new Point( W, W),
 new Scalar( 0, 255, 255 ),
 -1,
 8,
 0 );

Python:

 

# 2.b. Creating rectangles
cv.rectangle(rook_image,
 (0, 7 * W // 8),
 (W, W),
 (0, 255, 255),
 -1,
 8)
  • 最后,我们有了cv::rectangle函数(我们没有为这个家伙创建一个特殊函数)。我们注意到:
    • 矩形将绘制在rook_image
    • 矩形的两个相对顶点由 ( 0, 7*w/8 ) 和 ( w, w ) 定义
    • 矩形的颜色由 ( 0, 255, 255 ) 给出,它是黄色的 BGR 值
    • 由于厚度值由 FILLED (-1) 给出,因此矩形将被填充。

结果

编译和运行程序应该会得到这样的结果:

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1565101.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

【云呐】固定资产盘点报告表怎么填

报告表以表述清晰为主,避免繁琐,重要数据及问题使用表格形式展示。通过签字对报告负责认同度。内容应全面反映本次盘点,提供参考依据。一、标题 包含单位名称、报告期间等基本信息二、前言 概括本次盘点的目的和任务签署三、盘点范围与时间 明确盘点的固定资产项目和时…

代码签名证书OV跟EV的区别

代码签名证书中的OV和EV分别代表“Organization Validation”&#xff08;组织验证&#xff09;和“Extended Validation”&#xff08;增强验证&#xff09;。这两种类型的代码签名证书均用于对软件或应用程序进行数字签名&#xff0c;确保用户下载的代码来自于经过验证的真实…

git源码泄露

Git 源码泄露 开发人员会使用 git 进行版本控制&#xff0c;对站点自动部署。但如果配置不当&#xff0c;可能会将 .git 文件夹直接部署到线上环境&#xff0c;这就引起了 git 泄露漏洞&#xff0c;我们可以利用这个漏洞直接获得网页源码。 确定是否存在泄漏 &#xff08;1&…

开发必备8套工具都有哪些你知道嘛?

经过多年的使用&#xff0c;收集。我发现大部分的人员都在使用上面的某一种工具来开发。 认识了解上面开发环境工具&#xff0c;有利于你更快的写出高效的代码。没有看错上面是全部的8套 我把他们捆绑在一起。目的就是为了更好的让大家。学习。不管你是java的。.net语言的。p…

目标检测、识别和语义分割的标注工具安装

计算机视觉 图像分类&#xff08;目标检测&#xff09;&#xff1a;一张图像中是否含某种物体物体定位&#xff08;目标检测与目标识别&#xff09;&#xff1a;确定目标位置和所属类别。语义分割&#xff08;目标分割和目标分类&#xff09;&#xff1a;对图像进行像素级分类…

酷开科技不断深耕智能电视领域,用酷开系统带给消费者更多可能性

在这个网络快速发展的时代&#xff0c;电视行业也发生了巨大变革。与以往单纯的“看”电视不同&#xff0c;人们不再满足于现有的状态&#xff0c;消费者对电视娱乐的追求更加丰富&#xff0c;这也就带给智能电视产业无限的发展可能。酷开科技瞄准这一产业趋势&#xff0c;不断…

Android adb ime 调试输入法

目录 前言列出所有输入法仅列出输入法 id列出所有输入法的所有信息 启用/禁用 输入法启用输入法禁用输入法 切换输入法还原输入法 前言 安装多个输入法后&#xff0c;可以在设置里进行切换。 既然是开发&#xff0c;能用命令就就命令~ ime 帮助说明&#xff1a; ime <c…

Linux|centos7|postgresql数据库主从复制之异步还是同步的问题

前言&#xff1a; postgresql数据库是一个比较先进的中型关系型数据库&#xff0c;原本以为repmgr和基于repmgr的主从复制是挺简单的一个事情&#xff0c;但现实很快就给我教育了&#xff0c;原来postgresql和MySQL一样的&#xff0c;也是有异步或者同步的复制区别的 Postgre…

mysql语句学习

SQL Select语句完整的执行顺序&#xff1a; 1、from子句组装来自不同数据源的数据&#xff1b; &#xff08;先join在on&#xff09; 2、where子句基于指定的条件对记录行进行筛选&#xff1b; 3、group by子句将数据划分为多个分组&#xff1b; 4、使用聚集函数进行计算&a…

5.vector容器的使用

文章目录 vector容器1.构造函数代码工程运行结果 2.赋值代码工程运行结果 3.容量和大小代码工程运行结果 4.插入和删除代码工程运行结果 5.数据存取工程代码运行结果 6.互换容器代码工程运行结果 7.预留空间代码工程运行结果 vector容器 1.构造函数 /*1.默认构造-无参构造*/ …

基于Java的商城网站系统设计与实现:Spring Boot后端与Vue.js前端

本文介绍了如何利用Java的Spring Boot框架和Vue.js技术构建一个商城网站系统。通过采用B/S结构&#xff0c;后端使用Spring Boot进行开发&#xff0c;前端采用Vue.js进行开发&#xff0c;实现了系统的设计与实现。 随着电子商务的兴起&#xff0c;商城网站成为了现代人购物的主…

网络安全 | 什么是DDoS攻击?

关注WX&#xff1a;CodingTechWork DDoS-介绍 DoS&#xff1a;Denial of Service&#xff0c;拒绝服务。DDoS是通过大规模的网络流量使得正常流量不能访问受害者目标&#xff0c;是一种压垮性的网络攻击&#xff0c;而不是一种入侵手段。NTP网络时间协议&#xff0c;设备需要…

【图像分割】nnUnetV1与V2的Linux部署与应用命令

以前觉得麻烦&#xff0c;一直没用过nnunet&#xff0c;虽然知道它很火&#xff0c;最近一个契机&#xff0c;部署使用了一下nnunet&#xff0c;记录一下其部署和使用的方法与命令。 1、部署 首先&#xff0c;我有一个环境&#xff0c;这个环境可以是以前就有的&#xff0c;也可…

左值与右值,以及c++11的相关特性。

目录 左值 右值 左值引用总结&#xff1a; 右值引用总结&#xff1a; 右值引用使用场景和意义&#xff1a; 1、左值引用的使用场景&#xff1a; 编译器优化1&#xff1a; 2、移动构造与移动赋值&#xff1a; 3、右值引用的使用场景&#xff1a; 编译器优化2&#xff1a…

Qt_Note20_QML_自定义Grid控件与OpacityMask的使用

import QtQuick 2.12 import QtQuick.Window 2.12 import QtQuick.Controls 2.12 import QtGraphicalEffects 1.14Window {visible: truewidth: 640height: 480title: qsTr("Hello World")// 自定义Grid控件与OpacityMask的使用Grid {id: gridwidth: 15height: 200co…

SQL语句学习+牛客基础39SQL

什么是SQL&#xff1f; SQL (Structured Query Language:结构化查询语言) 是用于管理关系数据库管理系统&#xff08;RDBMS&#xff09;。 SQL 的范围包括数据插入、查询、更新和删除&#xff0c;数据库模式创建和修改&#xff0c;以及数据访问控制。 SQL语法 数据库表 一个…

Autosar-从0到1构建Autosar最小系统(免费)-1

1建立Ecu最小系统 1.1Ecu最小系统组成 Ecu最小系统至少需要&#xff1a;SWC、Com、ComM、EcuM、BswM、Os、RTE等。 Autosar各模块的配置以arxml文件形式保存&#xff0c;因此生成以上模块需要以下各个arxml文件。 模块 所需的arxml文件 准备好以上arxml文件后&#xff0c;就可…

python核心篇之桌面程序

推荐使用: wxPython 一. 安装wxPython 二. 第一个wxPython程序 展示 代码 # coding: utf-8import wx# 创建应用程序对象 app wx.App() # 创建窗口对象 frame wx.Frame(None, title"Hello World", size(300, 200), pos(100, 100)) # 显示窗口 frame.Show() # 进入主…

【Spring实战项目】SpringBoot3整合WebSocket+拦截器实现登录验证!从原理到实战

&#x1f389;&#x1f389;欢迎光临&#xff0c;终于等到你啦&#x1f389;&#x1f389; &#x1f3c5;我是苏泽&#xff0c;一位对技术充满热情的探索者和分享者。&#x1f680;&#x1f680; &#x1f31f;持续更新的专栏《Spring 狂野之旅&#xff1a;从入门到入魔》 &a…

CV论文--2024.4.3

1、Style Aligned Image Generation via Shared Attention 中文标题&#xff1a;共享注意力下的风格对齐图像生成 简介&#xff1a;大规模文本到图像&#xff08;T2I&#xff09;模型在创意领域迅速崭露头角&#xff0c;可以从文本提示中生成视觉上引人入胜的输出。然而&#…