dda算法_计算机图形学中的DDA(数字差分分析仪)算法

dda算法

DDA(数字差分分析仪)算法 (DDA (Digital Differential Analyzer) Algorithm)

In computer graphics, the DDA algorithm is the simplest algorithm among all other line generation algorithms. Here, the DDA is an abbreviation that stands for "Digital Differential Analyzer". It is an incremental method, i.e. it works by incrementing the source coordinate points according to the values of the slope generated.

在计算机图形学中, DDA算法是所有其他线生成算法中最简单的算法。 在此, DDA“数字差分分析仪”的缩写。 这是一种增量方法,即,它根据生成的坡度值通过增加源坐标点来工作。

Hence, we can define DDA as follows,

因此,我们可以如下定义DDA,

"DDA stands for Digital Differential Analyzer. This algorithm is incremental and is used for the rasterization of lines, triangles, and polygons."

“ DDA代表数字差分分析仪。此算法是增量算法,用于线,三角形和多边形的栅格化。”

DDA算法的工作 (Working of the DDA Algorithm)

Suppose we have to draw a line PQ with coordinates P (x1, y1) and Q (x2, y2).

假设我们必须绘制一条坐标为P(x1,y1)和Q(x2,y2)的直线PQ

  1. First, Calculate dx = (x2 - x1) and dy = (y2 - y1)

    首先,计算dx =(x2-x1)和dy =(y2-y1)

  2. Now calculate the slope m = (dy / dx)

    现在计算斜率m =(dy / dx)

  3. Calculate the number of points to be plotted (i.e. n) by finding the maximum of dx and dy, i.e. n = abs (max (dx , dy))

    通过找到dxdy的最大值来计算要绘制的点数(即n ),即n = abs(最大值(dx,dy))

    To draw an accurate line, more number of points are required. Therefore, the maximum of the two values is used here.

    要绘制一条精确的线,需要更多的点。 因此,此处使用两个值中的最大值。

  4. Now as the n is calculated, to know by how much each source point should be incremented, calculate xinc and yinc as follows: xinc = (dx / n) and yinc = (dy / n)

    现在,当计算n时,要知道每个源点应增加多少,请按以下方式计算x incy incx inc =(dx / n)和y inc =(dy / n)

  5. Now we draw the points from P to Q. The successive points are calculated as follows: (xnext, ynext) = (x + xinc, y + yinc)

    现在我们将点从P画到Q。 连续点的计算如下: (x next ,y next )=(x + x inc ,y + y inc )

    Start plotting the points from

    从开始绘制点

    P and stop when Q is reached. In case the incremented values are decimal, use the round off values.

    P并在达到Q时停止。 如果增量值为十进制,请使用四舍五入值。

Now, let us have a look at the algorithm that is followed in DDA.

现在,让我们看一下DDA中遵循的算法。

DDA算法 (DDA Algorithm)

  • Step 1: Start.

    步骤1:开始。

  • Step 2: Declare x1, y1, x2, y2.

    步骤2:声明x1,y1,x2,y2。

  • Step 3: Calculate the following,

    步骤3:计算以下内容,

        dx = x2 - x1
    dy = y2 - y1
    
    
  • Step 4: Calculate slope as follows,

    步骤4:按以下方式计算斜率,

        m = dy / dx
    
    
  • Step 5: Calculate the no. of points (n) between x1 and x2 as follows,

    步骤5:计算编号。 x1和x2之间的点(n)如下,

        n = abs ( max ( dx , dy ) )
    
    
  • Step 6: Calculate xincand yinc as follows,

    步骤6:按以下方式计算x inc和y inc

        xinc = (dx / n) and yinc = (dy / n)
    
    
  • Step 7: Now, Initialize x = x1 and y = y1.

    步骤7:现在,初始化x = x1和y = y1。

  • Step 8:

    步骤8:

        while ( x <= x2 )
    x = x + xinc
    y = y + yinc
    
    
  • Step 9: Now, Plot (x,y) on the graph, and hence we get our required line between the given points.

    步骤9:现在,在图形上绘制(x,y),因此我们得到了给定点之间的所需线。

  • Step 10: End.

    步骤10:结束。

Formula:

式:

In the entire DDA algorithm, there are three conditions and according to these conditions, the formula for calculating the coordinates is changed. These formulas are as follows,

在整个DDA算法中 ,存在三个条件,并根据这些条件更改了计算坐标的公式。 这些公式如下:

    If m < 1 :      If m > 1 :          If m = 1 :
xinc = 1        xinc = (1 / m)      xinc = 1
yinc = m        yinc = 1            yinc = 1

Example:

例:

Now let us take an example to understand the whole working of the DDA algorithm,

现在让我们举一个例子来了解DDA算法的整个工作原理

Question: Draw a line from A(2 , 2) to B(5 , 5) using the DDA algorithm.

问题:使用DDA算法A(2,2)B(5,5 )画一条线。

Solution:

解:

    Given:
x1 = 2 , y1 = 2
x2 = 5 , y2 = 6 
Calculating:    
dx  = (x2 - x1) = (5 - 2) = 3
dy  = (y2 - y1) = (6 - 2) = 4
n   = abs (max (dx , dy ) ) = abs (max (3 , 4) ) = 4
xinc = dx / n = 3/4 = 0.75
yinc = dy / n = 4 / 4 = 1

XYx = round(x + xinc)y = y + yinc
222 + 0.75 = 2.75 = 32 + 1 = 3
333 + 0.75 = 3.75 = 43 + 1 = 4
444 + 0.75 = 4.75 = 54 + 1 = 5
555 + 0.75 = 5.75 = 65 + 1 = 6
X ÿ x =圆(x + x inc ) y = y + y inc
2 2 2 + 0.75 = 2.75 = 3 2 +1 = 3
3 3 3 + 0.75 = 3.75 = 4 3 +1 = 4
4 4 4 + 0.75 = 4.75 = 5 4 +1 = 5
5 5 5 + 0.75 = 5.75 = 6 5 +1 = 6

Stop here as we have reached point B.

当我们到达B点时,在此停止。

Now, Plot the points ( (2 , 2) , (3 , 3) , (4 , 4) , (5 , 5) ) on the graph and thus we get our required line from point A to point B.

现在,在图形上绘制点((2,2),(3、3),(4、4),(5、5)) ,这样我们就得到了从点A到点B所需的线。

DDA算法的优点 (Advantages of the DDA algorithm)

Now, we will be looking at the advantages that the DDA algorithm offers over other line drawing algorithms.

现在,我们将探讨DDA算法相对于其他线条绘制算法的优势。

  1. It is the simplest line generation algorithm.

    它是最简单的线生成算法。

  2. Implementation of the DDA algorithm is very easy as compared to other line generation algorithms.

    与其他线路生成算法相比,DDA算法的实现非常容易。

  3. It does not use multiplication which reduces the time complexity of implementation.

    它不使用乘法来减少实现的时间复杂度。

  4. It is a faster and a better method than using the direct method of the line equation: i.e. y = mx + c

    与使用线性方程式的直接方法相比,这是一种更快,更好的方法:即y = mx + c

DDA算法的缺点 (Disadvantages of the DDA algorithm)

  • DDA algorithm use floating-point arithmetic as it involves the use of division in the calculation of xinc and yinc. This floating-point arithmetic makes the algorithm time-consuming.

    DDA算法使用浮点算法,因为它涉及在x inc和y inc的计算中使用除法。 这种浮点算法使算法耗时。

  • The use of floating-point arithmetic decreases the accuracy of the generated points. Hence the points that we get are not accurate, i.e. they may not lie accurately on the line.

    使用浮点算法会降低生成点的准确性。 因此,我们得到的点是不准确的,即它们可能不准确地位于线上。

  • As the points that we get from the DDA algorithm are not accurate, the lines generated by this algorithm are not smooth, i.e. some discontinuation and zigzag nature can be commonly seen in the lines drawn through this algorithm.

    由于我们从DDA算法获得的点不准确,因此该算法生成的线条不平滑,即在通过该算法绘制的线条中通常可以看到一些不连续和之字形性质。

翻译自: https://www.includehelp.com/computer-graphics/dda-digital-differential-analyzer-algorithm.aspx

dda算法

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

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

相关文章

购物商城框架java_基于jsp的购物商城-JavaEE实现购物商城 - java项目源码

基于jspservletpojomysql实现一个javaee/javaweb的购物商城, 该项目可用各类java课程设计大作业中, 购物商城的系统架构分为前后台两部分, 最终实现在线上进行购物商城各项功能,实现了诸如用户管理, 登录注册, 权限管理等功能, 并实现对各类购物商城相关的实体进行管理。该购物…

c语言++数组名【数字】_C ++程序在数组中打印所有非重复数字

c语言数组名【数字】Problem statement: Write a C program to print all the non-repeated numbers in an array in minimum time complexity. 问题陈述&#xff1a;编写一个C 程序&#xff0c; 以最小的时间复杂度将所有未重复的数字打印在数组中 。 Input Example: 输入示例…

java最接近对点及距离_最接近点对问题_分治法

一、问题描述给定平面上的n个点&#xff0c;找其中的一对点&#xff0c;使得在n个点组成的所有点对中该点对间的距离最小。二、解题思路及所选算法策略的可行性分析思路&#xff1a;利用分治法来解决问题。递归子结构求最接近点对总体可分为几个步骤&#xff1a;1、当问题规模小…

python return用法_初学Python要了解什么 装饰器知识汇总有哪些

初学Python要了解什么&#xff1f;装饰器知识汇总有哪些&#xff1f;在Python学习过程中&#xff0c;有多种方法对函数和类进行加工&#xff0c;相对于其它方式&#xff0c;装饰器语法简单&#xff0c;代码可读性高。因此&#xff0c;装饰器在Python项目中有广泛的应用&#xf…

android emulator虚拟设备分析第三篇之pipe上的qemud service

一、概述 本篇和第二篇是强相关的&#xff0c;需要结合第二篇一起看。 以boot-properties为例&#xff0c;注意不需要看ANDROID-QEMUD.TXT&#xff0c;这个是和guest os中的qemud进行相关的&#xff0c;已废弃。 启动emulator时&#xff0c;有一个参数-prop <key><val…

c#异常处理_C#异常处理能力问题和解答 套装4

c#异常处理1) Which is not a valid keyword used in the context of exception handling? trycatchfinalfinally Answer & Explanation Correct answer: 3final The final keyword is not used to handle exceptions in C#.NET. 1)在异常处理的上下文中使用哪个无效关键字…

Castor xsd生成java_java – Castor可以处理从基础XSD导入的多个XSD生成类吗?

注意&#xff1a;我是EclipseLink JAXB (MOXy)领导者,也是JAXB 2 (JSR-222)专家组的成员.Can Castor do this? If so, what would be the Ant task syntax for it.If not, would perhaps JAXB be a better alternative?下面是如何使用JAXB完成此操作的示例&#xff1a;产品xm…

串口通信 校验码_一文读懂S7-200 SMART自由口通信!

学习S7-200 SMART时了解到&#xff0c;基于RS485接口可实现一下几种通信&#xff1a;1&#xff09;modbus RTU通信2&#xff09;PPI协议通信3&#xff09;USS协议通信4&#xff09;自由口通信何为自由口通信呢&#xff1f;前三种通信必须要PLC和与其通信的设备支持相同的通信协…

hbase 学习(十三)集群间备份原理

集群建备份&#xff0c;它是master/slaves结构式的备份&#xff0c;由master推送&#xff0c;这样更容易跟踪现在备份到哪里了&#xff0c;况且region server是都有自己的WAL 和HLog日志&#xff0c;它就像mysql的主从备份结构一样&#xff0c;只有一个日志来跟踪。一个master集…

python expect模块_Python基础教程:用Python怎么telnet到网络设备

Python基础教程&#xff1a;用Python怎么telnet到网络设备0.前言Telnet协议属于TCP/IP协议族里的一种&#xff0c;对于我们这些网络攻城狮来说&#xff0c;再熟悉不过了&#xff0c;常用于远程登陆到网络设备进行操作&#xff0c;但是&#xff0c;它的缺陷太明显了&#xff0c;…

Java实现动态加载页面_[Java教程]动态加载页面数据的小工具 javascript + jQuery (持续更新)...

[Java教程]动态加载页面数据的小工具 javascript jQuery (持续更新)0 2014-05-07 18:00:06使用该控件&#xff0c;可以根据url&#xff0c;参数&#xff0c;加载html记录模板(包含json参数对应&#xff0c;以及具体记录位置Index根据参数描述加载对应的属性&#xff0c;并可以…

马哥linux第六周作业

1、复制/etc/rc.d/rc.sysinit文件至/tmp目录&#xff0c;将/tmp/rc.sysinit文件中的以至少一个空白字符开头的行的行首加#&#xff1b;[rootmageedu tmp]# cp /etc/rc.d/rc.sysinit . [rootmageedu tmp]# vim rc.sysinit :% s/^[[:space:]]/#&/ #按Esc进入vi…

Java ObjectInputStream enableResolveObject()方法与示例

ObjectInputStream类enableResolveObject()方法 (ObjectInputStream Class enableResolveObject() method) enableResolveObject() method is available in java.io package. enableResolveObject()方法在java.io包中可用。 enableResolveObject() method is used to enable th…

pygame render怎么显示中文_PyGame开发游戏(2D)02.基础图元

这节将介绍PyGame的基础架构。并学习如何在PyGame里绘制各种几何图形和显示加载图片。01.应用框架上一节的示例程序里&#xff0c;我们用到一个PyGame的应用程序框架。这是一个基础框架&#xff0c;利用它我们可以很轻松的添加各类图型绘制&#xff0c;键盘鼠标输入处理和各类逻…

word+增加水印+java_为Word2019文档添加水印的两种方法

水印的类型包括文字水印和图片水印两种。在Word文档中添加文字水印时&#xff0c;可以使用程序中预设的水印效果&#xff0c;而图片水印则需要自定义添加。一、使用程序预设的文字水印Word 2019中预设了机密、紧急、免责声明三种类型的文字水印&#xff0c;用户可根据文件的类型…

如何设置CentOS 7获取动态及静态IP地址

自动获取动态IP地址1.输入“ip addr”并按回车键确定&#xff0c;发现无法获取IP(CentOS 7默认没有ifconfig命令)&#xff0c;记录下网卡名称&#xff08;本例中为ens33&#xff09;。2.输入“cd /etc/sysconfig/network-scripts/”按回车键确定&#xff0c;继续输入“ls”按回…

请求列出指定服务器上的可用功能失败_滥用 ESI 详解(上)

在进行安全性评估时&#xff0c;我们注意到了标记语言 Edge Side Includes (ESI)中的一个意外行为&#xff0c;这种语言用于许多流行的 HTTP 代理(反向代理、负载平衡器、缓存服务器、代理服务器)。我们发现成功的 ESI 攻击可以导致服务器端请求伪造(SSRF)、各种绕过 HTTPOnly …

Java ClassLoader setPackageAssertionStatus()方法与示例

ClassLoader类setPackageAssertionStatus()方法 (ClassLoader Class setPackageAssertionStatus() method) setPackageAssertionStatus() method is available in java.lang package. setPackageAssertionStatus()方法在java.lang包中可用。 setPackageAssertionStatus() metho…

java上传kafka的方法_哪种方法是将所有数据从Kafka主题复制到接收器(文件或Hive表)的最佳方法?...

我正在使用Kafka Consumer API将所有数据从Kafka主题复制到Hive表 . 为此&#xff0c;我使用HDFS作为中间步骤 . 我使用唯一的组ID并将偏移重置为“最早”&#xff0c;以便从头开始获取所有数据&#xff0c;并在执行后忽略提交 . 然后我遍历Kafka主题中的记录&#xff0c;并将每…

openstack nova-network 的小bug的排错经历

环境是 nova-network vmwareflatdhcp错误表现为 开出来的虚拟机有一定几率获取不到dhcp地址&#xff0c;手工赋予ip则正常&#xff0c;用flat模式注入的ip正常&#xff0c;下面是排错过程1首先找网络防火墙已经把 dnsmasq对应的端口已经打开抓包结果&#xff1a;可以看到虚拟机…