Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个轮廓,一个作为一组点给出,另一个作为一组线和弧给出。在 C# 中比较两个轮廓的最佳方法是什么?我已经比较了两个轮廓的凸包,所以我正在尝试改进其余特征的匹配。
该System.Drawing.Drawing2D.GraphicsPath课程具有有趣的方法,可能对您有所帮助。
System.Drawing.Drawing2D.GraphicsPath
IsOutlineVisible使用各种重载测试一个点是否位于路径的轮廓上。IsVisible测试一个点是否位于封闭路径内。
IsOutlineVisible
IsVisible