彩票走势图

DotImage使用教程:测量像素之间的距离

原创|使用教程|编辑:龚雪|2014-05-15 09:21:39.000|阅读 672 次

概述:本文主要介绍如何测试DotImage图像上的物理距离。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

若要测量DotImage图像上的物理距离,需要选择两个像素。一旦选择了像素,就可以使用距离公式来计算像素空间距离。

C#

private double Distance(PointF pointF, PointF pointF_2)
{
return Math.Sqrt(Math.Pow(pointF_2.X - pointF.X, 2) + Math.Pow(pointF_2.Y - pointF.Y, 2));
}

VB.NET

Private Function Distance(ByVal pointF As PointF, ByVal pointF_2 As PointF) As Double
Return Math.Sqrt(Math.Pow(pointF_2.X - pointF.X, 2) + Math.Pow(pointF_2.Y - pointF.Y, 2))
End Function

为了获取基于图像分辨率的实际距离,计算方法如下:

C#

float distance = Distance(point1,point2)/myAtalaImage.Resolution.X;

VB.NET

Dim distance As Single = Distance(point1, point2) / myAtalaImage.Resolution.X

 


标签:.NET图像处理

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP