我需要从表示为点列表的封闭二维多边形创建二进制位图.能否请您指出高效且足够简单的算法来做到这一点,或者甚至更好一些 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.
这篇关于光栅化二维多边形的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!