Rasterizing a 2D polygon(栅格化 2D 多边形)
问题描述
我需要从表示为点列表的封闭二维多边形创建二进制位图.能否请您指出有效且足够简单的算法来做到这一点,或者更好的是一些 C++ 代码?
I need to create a binary bitmap from a closed 2D polygon represented as a list of points. Could you please point me to efficient and sufficiently simple algorithms to do that, or, even better, some C++ code?
非常感谢!
PS:我想避免向我的项目添加依赖项.但是,如果您建议一个开源库,我可以随时查看代码,因此它也很有用.
PS: I would like to avoid adding a dependency to my project. However if you suggest an open-source library, I can always look at the code, so it can be useful too.
推荐答案
你想要的神奇谷歌短语是非零缠绕规则"或偶数多边形填充".
The magic google phrase you want is either "non-zero winding rule" or "even odd polygon fill".
查看维基百科条目:
- 非零缠绕规则
- 偶数多边形填充
对于大多数用途来说,两者都非常容易实现并且速度足够快.稍加一点技巧,它们也可以进行抗锯齿处理.
Both are very easy to implement and sufficiently fast for most purposes. With some cleverness, they can be made antialiased as well.
这篇关于栅格化 2D 多边形的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:栅格化 2D 多边形
基础教程推荐
- 使用从字符串中提取的参数调用函数 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01