线描算法

线描算法 (Line drawing algorithms)

  • The equation for a straight line is y=mx+b

    直线方程为y = mx + b

  • In this m represent a slope of a line which can be calculated by the m=y2-y1/x2-x1 where (x1, y1) are the starting position of the points and (x2, y2) are the end positions of the points.

    在此m表示可以通过m = y2-y1 / x2-x1计算的直线的斜率,其中(x1,y1)是点的起始位置, (x2,y2)是点的终止位置。

  • There are generally three cases arises, which are:

    通常会出现三种情况,分别是:

    1. If an angle is greater than 45 degree then it means the slope is greater than 1 which also mean that dy/dx>1.
    2. 如果角度大于45度,则意味着斜率大于1,这也意味着dy / dx> 1 。
    3. If an angle is less than 45 degree then it means the slope is less than 1 which also mean that dy/dx<1.
    4. 如果角度小于45度,则意味着斜率小于1,这也意味着dy / dx <1 。
    5. If an angle is equal to 45 degrees then it means the slope is 1 which also means that dy/dx=1.
    6. 如果角度等于45度,则意味着斜率为1,这也意味着dy / dx = 1 。
  • The increment in x can be calculated by the x2-x1 divided by a total number of steps. Similarly increment of y can be calculated by the y2-y1 divided by the total number of steps.

    x的增量可以通过x2-x1除以总步数来计算。 类似地,可以通过y2-y1除以总步数来计算y的增量。

DDA算法 (DDA Algorithm)

This is a line drawing algorithm which is named as Digital Differential Analyzer (DDA). Basically, it uses the floor function which takes the extra time for generating a line. The DDA algorithm is a faster method for calculating a pixel position for a direct use of it. In some cases, the line drawn by the DDA algorithm is not smooth.

这是一种画线算法,称为数字差分分析器(DDA)。 基本上,它使用发言权功能,这会花费额外的时间来生成一条线。 DDA算法是一种用于直接使用像素位置来计算像素位置的更快方法。 在某些情况下,DDA算法绘制的线不平滑。

    Algorithm DDA (x1, y1, x2, y2)
{
dx=x2-x1;
dy=y2-y1;
if (abs(dx)>abs(dy))
step=abs(dx)
else
step=abs(dy)
x increment= dx/step
y increment= dy/step
for(i=1;i<=step;i++)
{
putpixel (x1,y1);
x1=x1+increment;
y1=y1+increment;
}
}

Conclusion:

结论:

In this algorithm for finding a position of a point, there can be an increment in both x coordinate or can be in a y coordinate. On the basis of it, there are three cases generated which are as given below:

在用于查找点位置的该算法中, x坐标或y坐标都可以增加。 在此基础上,生成了以下三种情况:

  1. If the value of m is less than 1, then x=x+1 and y=y+m.

    如果m的值小于1,则x = x + 1和y = y + m 。

  2. If the value of m is greater than 1, then x=x+m and y=y+1.

    如果m的值大于1,则x = x + m和y = y + 1 。

  3. If the value of m is equal to 1, then x=x and y=y.

    如果m的值等于1,则x = x和y = y 。

布雷森纳姆算法 (Bresenham’s Algorithm)

This is an algorithm which is used for drawing a line accurately and efficiently which was developed by Bresenham’s. Here generally, decision parameter is used for finding the next value from the initial one. According to this algorithm value of x will always be incremented but the value of y will be incremented or not it depends upon the decision parameter. This is a faster algorithm and less expensive to implement. There are no criteria of a round of the value in this algorithm which makes this algorithm faster and accurate.

这是由布雷森汉姆(Bresenham's)开发的一种算法,用于精确有效地绘制线。 通常,这里使用决策参数从初始值中查找下一个值。 根据该算法,x的值将始终增加,但是y的值将增加或不增加,这取决于决策参数。 这是一种更快的算法,实现起来成本较低。 此算法中没有轮取值的标准,这会使该算法更快,更准确。

Steps for implementing Bresenham’s algorithm:

实施布雷森汉姆算法的步骤:

    1.	Read the end points (x1, y1) and (x2, y2).
2.	dx=x2-x1 
dy=y2-y1
3.	x=x1, y=y1
4.	e=2dy-dx where, e is a decision parameter.
5.	While(e>=0)
{
y=y+1
e=e-2dx
}
X=x+1
e=e+2dy
6.	i<=dx , here i is only dependent upon the value of x. 

翻译自: https://www.includehelp.com/algorithms/line-drawing.aspx

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/377183.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

为移动端网页构造快速响应按钮

背景 在谷歌&#xff0c;我们不断地推测手机网页应用的可能性。像HTML5这样的技术使我们网页版的应用以及运行在手机设备上的原生应用。而这些技术的成就之一就是我们开发了一种新的创建按钮的方法&#xff0c;使按钮的响应时间远远快于一般的HTML按钮。在此之前的按钮或者其他…

Red Gate系列之一 SQL Compare 10.4.8.87 Edition 数据库比较工具 完全破解+使用教程

Red Gate系列之一 SQL Compare 10.4.8.87 Edition 数据库比较工具 完全破解使用教程 Red Gate系列文章&#xff1a; Red Gate系列之一 SQL Compare 10.4.8.87 Edition 数据库比较工具 完全破解使用教程 Red Gate系列之二 SQL Source Control 3.0.13.4214 Edition 数据库版本控制…

《MySQL——基于位点orGTID的主备切换协议》

一主多从的设置&#xff0c;用于读写分离&#xff0c;主库负责所有的写入和一部分读&#xff0c;其他读请求则由从库分担。 一主多从架构下&#xff0c;主库故障后的主备切换问题。相比于一主一备&#xff0c;多了从库指向新主库的过程。 基于位点的主备切换同步 把节点B设…

数据科学和统计学_数据科学中的统计

数据科学和统计学统计 (Statistics) Statistics are utilized to process complex issues in reality with the goal that Data Scientists and Analysts can search for important patterns and changes in Data. In straightforward words, Statistics can be utilized to ge…

java随机数生成(固定位数)

随机生成 a 到 b (不包含b)的整数:(int)(Math.random()*(b-a))a; 随机生成 a 到 b (包含b)的整数:(int)(Math.random()*(b-a1))a;转载于:https://www.cnblogs.com/zhwl/p/3624726.html

POJ 3670 Eating Together

POJ_3670 由于递增和递减是类似的&#xff0c;下面不妨只讨论变成递增序列的情况。 由于Di只有三个数&#xff0c;所以可以考虑将序列分割成三部分&#xff0c;第一部分全部变成1&#xff0c;第二部分全部变成2&#xff0c;第三部分全部变成3。然后我们枚举3开始的位置&#xf…

《MySQL——如何解决一主多从的读写分离的过期读问题》

目录两种架构两种架构特点强制走主库方案Sleep方案判断主备无延迟方案配合semi-sync等主库位点方案GTID方案两种架构 基于一主多从的读写分离&#xff0c;如何处理主备延迟导致的读写分离问题。 读写分离的主要目标&#xff1a;分摊主库压力。 有两种架构&#xff1a; 1、客…

json/ 发送形式_24/7的完整形式是什么?

json/ 发送形式24/7&#xff1a;二十四 (24/7: Twenty-Four Seven) 24/7 or 24-7 service, which generally marked "twenty-four seven" is service that is existing at any time and typically, every day in trade business and industry. Substitute orthograph…

《MySQL tips:并发查询与并发连接区别》

并发连接与并发查询&#xff0c;并不是一个概念。 在执行show processlist的结果里&#xff0c;看到了几千个连接&#xff0c;指的是并发连接。 而"当前正在执行"的语句&#xff0c;才是并发查询。 并发连接数多影响的是内存。 并发查询太高对CPU不利。一个机器的…

对上拉下拉电阻的作用作个总结(想了解的过来看看)(转载)

转自&#xff1a;http://www.amobbs.com/thread-5475279-1-3.html 一、定义&#xff1a;上拉就是将不确定的信号通过一个电阻嵌位在高电平&#xff01;电阻同时起限流作用&#xff01;下拉同理&#xff01;上拉是对器件注入电流&#xff0c;下拉是输出电流&#xff1b;弱强只是…

给用户传入的变量进行转义操作

先看代码实现&#xff1a; /* 对用户传入的变量进行转义操作。*/ if (!get_magic_quotes_gpc()) {if (!empty($_GET)){$_GET addslashes_deep($_GET);}if (!empty($_POST)){$_POST addslashes_deep($_POST);}$_COOKIE addslashes_deep($_COOKIE);$_REQUEST addslashes_…

《MySQL——外部检测与内部统计 判断 主库是否出现问题》

目录select1判断查表判断更新判断外部检测弊端内部统计一主一备的双M架构里&#xff0c;主备切换只需要把客户端流量切换到备库。 在一主多从的架构里&#xff0c;主备切换要把客户端流量切换到备库&#xff0c;也需要把从库接到新主库上。 切换有两种场景&#xff1a;1、主动…

NIM的完整形式是什么?

NIM&#xff1a;无内部消息 (NIM: No Internal Message) NIM is an abbreviation of "No Internal Message". NIM是“无内部消息”的缩写。 It is an expression, which is commonly used in the Gmail platform. It is written in the subject of the mail, if the…

[Json] C#ConvertJson|List转成Json|对象|集合|DataSet|DataTable|DataReader转成Json (转载)...

点击下载 ConvertJson.rar 本类实现了 C#ConvertJson|List转成Json|对象|集合|DataSet|DataTable|DataReader转成Json|等功能大家先预览一下 请看代码 /// <summary> /// 类说明&#xff1a;Assistant /// 编 码 人&#xff1a;苏飞 /// 联系方式&#xff1a;361983679 …

let 只能在严格模式下吗_LET的完整形式是什么?

let 只能在严格模式下吗LET&#xff1a;今天早早离开 (LET: Leaving Early Today) LET is an abbreviation of "Leaving Early Today". LET是“ Leaveing Today Today”的缩写 。 It is an expression, which is commonly used in the Gmail platform. It is writt…

js 遮罩层 loading 效果

//调用方法 //关闭事件<button οnclickLayerHide()>关闭</button>&#xff0c;在loadDiv(text)中&#xff0c;剔除出来 //调用LayerShow(text)&#xff0c;text为参数&#xff0c;可以写入想要写入的提示语 //本方法在调用时会自动生成一个添加到body的div&#x…

centos6.5安装配置LDAP服务[转]

centos6.5安装配置LDAP服务[转] 安装之前查一下 1find / -name openldap*centos6.4默认安装了LDAP&#xff0c;但没有装ldap-server和ldap-client 于是yum安装 1su root2yum install -y openldap openldap-servers openldap-clients不建议编译源码包&#xff0c;有依赖比较麻烦…

《MySQL——恢复数据-误删行、表、库》

目录误删行事前预防误删行数据方法误删表/库延迟复制备库事前预防误删库/表方法传统的架构不能预防误删数据&#xff0c;因为主库的一个drop table命令&#xff0c;会通过binlog传给所有从库和级联从库&#xff0c;进而导致整个集群的实例都会执行这个命令。 MySQL相关的误删除…

python图例位置_Python | 图例位置

python图例位置Legends are one of the key components of data visualization and plotting. Matplotlib can automatically define a position for a legend in addition to this, it allows us to locate it in our required positions. Following is the list of locations…

Freemarker中遍历List实例

Freemarker中如何遍历List摘要&#xff1a;在Freemarker应用中经常会遍历List获取需要的数据&#xff0c;并对需要的数据进行排序加工后呈现给用户。那么在Freemarker中如何遍历List&#xff0c;并对List中数据进行适当的排序呢&#xff1f;通过下文的介绍&#xff0c;相信您一…