OPenCV中绘制多条多边形曲线函数polylines的使用
opencv
OpenCV: 开源计算机视觉库
项目地址:https://gitcode.com/gh_mirrors/opencv31/opencv
免费下载资源
·
- 操作系统:ubuntu22.04
- OpenCV版本:OpenCV4.9
- IDE:Visual Studio Code
- 编程语言:C++11
功能描述
绘制多条多边形曲线
原型1
void cv::polylines (
InputOutputArray img,
InputArrayOfArrays pts,
bool isClosed,
const Scalar & color,
int thickness = 1,
int lineType = LINE_8,
int shift = 0
)
参数
- 参数 img 图像.
- 参数 pts 多边形曲线数组
- 参数isClosed 标志是否绘制的多段线是封闭的。如果设置为封闭,函数会为每个曲线从最后一个顶点绘制一条线回到第一个顶点,从而形成封闭的多边形。
- 参数color 多段线的颜色
- 参数thickness 多段线边缘的厚度.
-参数lineType 线段的类型. 见 LineTypes - 参数 shift 顶点坐标中的小数位数。
原型2
void cv::polylines (
InputOutputArray img,
const Point *const * pts,
const int * npts,
int ncontours,
bool isClosed,
const Scalar & color,
int thickness = 1,
int lineType = LINE_8,
int shift = 0
)
参数
- 参数 img 图像.
- 参数 pts 多边形曲线数组
- 参数 npts 一个整数数组,对应于pts中的每个多段线,指明每个多段线包含的顶点数量
- 参数 ncontours 表示要绘制的多段线(或轮廓)的数量
- 参数isClosed 标志是否绘制的多段线是封闭的。如果设置为封闭,函数会为每个曲线从最后一个顶点绘制一条线回到第一个顶点,从而形成封闭的多边形。
- 参数color 多段线的颜色
- 参数thickness 多段线边缘的厚度.
-参数lineType 线段的类型. 见 LineTypes - 参数 shift 顶点坐标中的小数位数。
代码示例
参考FastLineDetector(FLD)快速直线检测器的使用方法中的代码示例,其中用到polylines函数
GitHub 加速计划 / opencv31 / opencv
159
15
下载
OpenCV: 开源计算机视觉库
最近提交(Master分支:4 个月前 )
ff18c9cc
Animated GIF APNG WEBP AVIF revisions 17 小时前
a6f72f81
AndroidMediaNdkVideoWriter pixel format enhancement #26698
* videoio(Android): Add source pixel formats RGBA and GRAY to AndroidMediaNdkVideoWriter
Let AndroidMediaNdkVideoWriter::write() deduce source pixel format from matrix type:
CV_8UC3 -> BGR (as before)
CV_8UC4 -> RGBA (use in conjunction with CvCameraViewFrame)
CV_8UC1 -> GRAY
* samples/android/video-recorder: Send images to VideoWriter in RGBA format
### Pull Request Readiness Checklist
See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request
- [x] I agree to contribute to the project under Apache 2 License.
- [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
- [x ] The PR is proposed to the proper branch
- [ ] There is a reference to the original bug report and related work
- [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
Patch to opencv_extra has the same branch name.
- [ ] The feature is well documented and sample code can be built with the project CMake
1 天前
更多推荐
已为社区贡献18条内容
所有评论(0)