本文整理汇总了C#中System.Drawing.PointF.Zip方法的典型用法代码示例。如果您正苦于以下问题:C# PointF.Zip方法的具体用法?C# PointF.Zip怎么用?C# PointF.Zip使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Drawing.PointF
的用法示例。
在下文中一共展示了PointF.Zip方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FindHomography
public static Func<PointF[], PointF[]> FindHomography(PointF[] ccs, PointF[] pcs)
{
var hg = Emgu.CV.CameraCalibration.FindHomography(ccs, pcs, HOMOGRAPHY_METHOD.DEFAULT, 2);
var t = ccs.Select(c => new PointF(c.X, c.Y)).ToArray();
hg.ProjectPoints(t);
var tes = pcs.Zip(t, (a, b) => (b.X - a.X) * (b.X - a.X) + (b.Y - a.Y) * (b.Y - a.Y)).ToArray();
var sum = tes.Sum();
return (ps) =>
{
var psc = ps.Select(p => new PointF(p.X, p.Y)).ToArray();
hg.ProjectPoints(psc);
return psc;
};
}
示例2: Different
public static bool Different(PointF[] a, PointF[] b, float thresh = 400)
{
if (b == null || a == null)
return true;
var diff = a.Zip(b, (ap, bp) => Math.Abs(ap.X - bp.X) + Math.Abs(ap.Y - bp.Y)).Sum();
return diff > thresh;
}