Qt-OpenCV学习笔记--画圆--circle()

概述

这个函数其实就是画圆。

函数

void circle
(
	InputOutputArray img, 
	Point center, 
	int radius,
	const Scalar& color, 
	int thickness = 1,
	int lineType = LINE_8, 
	int shift = 0 
)
img输出对象
center中心点
radius半径
color颜色
thicKness线宽
lineType边缘类型
shift中心坐标和半径值的小数位数

测试代码

#include "widget.h"
#include "ui_widget.h"

#include <QDebug>

#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>

#include <vector>

using namespace cv;
using namespace std;

Widget::Widget(QWidget *parent)
    : QWidget(parent)
    , ui(new Ui::Widget)
{
    ui->setupUi(this);

    //新建图像
    cv::Mat mat(500,600,CV_8UC3,Scalar(200,200,200));
    //定义图像的中心点
    cv::Point center(mat.size().width/2,mat.size().height/2);
    //输出中心点的坐标
    qDebug()<<center.x;
    qDebug()<<center.y;
    //画圆
    cv::circle(mat,center,50,Scalar(0,255,0),2,8);
    //显示
    imshow("mat",mat);

}

Widget::~Widget()
{
    delete ui;
}

测试结果

参考

 OpenCV circle()函数

OpenCV 画圆circle、画椭圆ellipse

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值