z字扫描和光栅扫描的转换_扫描转换计算机图形中的直线

z字扫描和光栅扫描的转换

扫描转换直线 (Scan Converting a Straight Line)

For the scan conversion of a straight line, we need the two endpoints. In normal life, if we want to draw a line we simply draw it by using a scale or ruler. But we can't draw a line on the computer by using a ruler. We have to do some programming for it. The computer draws a line by finding the intermediate points between the two endpoints of a line. The line is drawn on the screen when the computer has endpoints and then the computer fills the pixel of the intermediate point's value.

为了进行直线扫描转换 ,我们需要两个端点。 在正常生活中,如果要绘制线条,我们只需使用刻度尺或标尺就可以绘制线条。 但是我们不能使用标尺在计算机上画一条线。 我们必须为此做一些编程。 计算机通过找到一条线的两个端点之间的中间点来绘制一条线。 当计算机具有端点时,将在屏幕上绘制该线,然后计算机填充中间点值的像素。

The computer can't take the intermediate points in fraction value. For example, after using any of the algorithms if the intermediate point was found (5.1, 7.8) then the computer will round off the point values which are (5,8). The computer takes the nearest integer from that fraction value. This happens because the computer fills the pixels in the screen and pixels are present at the integer values. Either the pixel will be filled or it will not be filled. A pixel can't be partially filled. That is why the line is drawn in the computer is not always a straight line.

计算机无法获取分数值的中间点。 例如,使用任何算法后,如果找到中间点(5.1,7.8),则计算机将舍入为(5,8)的点值。 计算机从该分数值中获取最接近的整数。 发生这种情况是因为计算机填充了屏幕上的像素,并且像素以整数值存在。 像素将被填充或不被填充。 像素无法部分填充。 这就是为什么在计算机中绘制的线并不总是一条直线的原因。

There are several algorithms available which are used for this process:

有几种算法可用于此过程:

  1. Direct Method

    直接法

  2. Bresenham's Algorithm

    布雷森纳姆算法

  3. DDA (Digital Differential Analyzer)

    DDA(数字差分分析仪)

1)直接法 (1) Direct Method)

It is the simplest method of this. In this algorithm, we have two endpoints. We find the slope of the line by using both the points and we put the slope in the line equation Y = MX + C. Then we find the value of C by putting X and Y is equal to 0. After this, we have a relation between X and Y. Now we increase the value of X and find the corresponding value of Y. These values will be the intermediate points of the line. After finding the intermediate points we'll plot those points and draw the line.

这是最简单的方法。 在此算法中,我们有两个端点。 我们通过同时使用这两个点来找到直线的斜率,并将该斜率放在线方程Y = MX + C中 。 然后,通过将XY等于0来找到C的值。此后,我们在XY之间具有关系。 现在我们增加X的值并找到Y的对应值。 这些值将是线的中间点。 找到中间点后,我们将绘制这些点并绘制线。

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

This method of line drawing is very effective because it includes integer addition, subtraction, and multiplication. The calculation is very fast in this method that's why the line is drawn very quickly in this. We'll need the two endpoints in this and then we have to find the decision parameters. Let assume that (x1,y1) and (x2,y2) are the two points. So, dx = x2-x1 and dy = y2-y1.

这种线描方法非常有效,因为它包括整数加法,减法和乘法。 这种方法的计算速度非常快,这就是在这种方法中绘制直线非常快的原因。 我们将需要两个端点,然后必须找到决策参数。 假设(x1,y1)(x2,y2)是两点。 因此, dx = x2-x1dy = y2-y1

The formula for the decision parameter is: di = 2dy - dx

决策参数的公式为: di = 2dy-dx

  1. If di > 0 (Above true line)

    如果di> 0(在实线以上)

        di +1 = di + 2dy - 2dx
    
    Plotted points are,
    
        xN = x1 + 1
    yN = y1 + 1
    
    
  2. If di < 0: (Below True Line)

    如果di <0:(在真线下方)

        di + 1 = di + 2dy
    
    Plotted points are,
    
        xN = x1 + 1
    yN = y1
    
    This is the way we can find the intermediate point and after finding these points we can plot all the points on the screen using programming.
    

优点 (Advantages)

  • This algorithm involves integer arithmetic operations.

    该算法涉及整数算术运算。

  • Duplicate points can’t be generated in this.

    不能在其中生成重复点。

  • This algorithm can be implemented using the software as well as the hardware.

    可以使用软件以及硬件来实现该算法。

缺点 (Disadvantages)

  • This algorithm is for basic line drawing.

    此算法用于基本线条绘制。

  • You have to prefer some other algorithm for drawing smooth lines

    您必须喜欢其他一些算法来绘制平滑线

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

This algorithm works on the incremental approach. It means that by taking the help of previous coordinates, we find the next coordinates. In this method, the difference of pixel point is analyzed and according to the analysis, the line can be drawn. We'll start with the starting point and we'll try to find the intermediate points between the starting point and the ending point. The slope of the line will be the ratio of difference of y-coordinates and the difference of x-coordinates.

该算法适用于增量方法。 这意味着借助前一个坐标,我们可以找到下一个坐标。 在这种方法中,分析像素点的差异,并根据该分析可以绘制线条。 我们将从起点开始,然后尝试找到起点和终点之间的中间点。 线的斜率将是y坐标差与x坐标差之比。

    Δy = ( y2 - y1 )
Δx = ( x2 - x1 )

Where, (x1, y1) and (x2, y2) are the endpoints.

其中(x1,y1)(x2,y2)是端点。

The Digital Differential Analyzer algorithm is based on the values of Δx and Δy.

数字差分分析器算法基于ΔxΔy的值。

    Δy = m * Δx 
Δx = Δy / m

The value of the slope will be either positive or negative. If the value of the slope is positive then the values of Δx and Δy are increased otherwise their values are decreased.

斜率的值可以为正或为负。 如果斜率的值为正,则增加ΔxΔy的值,否则减小它们的值。

    1)  If (m < 1):
xN = x1 + 1
yN = y1 + m
2)	If (m > 1):
xN = x1 + 1 / m
yN = y1 +1
3)	If (m = 1):
xN = x1 + 1
yN = y1 + 1

翻译自: https://www.includehelp.com/computer-graphics/scan-converting-a-straight-line.aspx

z字扫描和光栅扫描的转换

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

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

相关文章

TextView 单行显示长文本

android:singleLine"true"//单行显示 android:ellipsize"end"//省略号出现在末尾 http://blog.csdn.net/wxg630815/article/details/8996091

腾讯推出高性能 RPC 开发框架

Tars是基于名字服务使用Tars协议的高性能RPC开发框架&#xff0c;同时配套一体化的服务治理平台&#xff0c;帮助个人或者企业快速的以微服务的方式构建自己稳定可靠的分布式应用。Tars是将腾讯内部使用的微服务架构TAF&#xff08;Total Application Framework&#xff09;多年…

Failed connect to github.com:443; No error

任务目标&#xff1a;将线上已有的https://github.com/eyjian/mooon.git克隆到本地的E:\GitHub\mooon目录问题描述&#xff1a;使用Git的Windows客户端UI工具GitHub执行克隆操作时报错&#xff0c;查看它的日志&#xff0c;难发现问题&#xff0c;于是改用Git的Windows命令行终…

python 程序耗时记录_Python学校的学生身高记录程序

python 程序耗时记录A team of 5 people is assigned with a task to record the heights of students in a school and they have decided to make a python program using class to record all the students height. 由5人组成的小组负责记录学校中学生的身高&#xff0c;他…

看完这篇文章,我再也不怕面试官问「垃圾回收」了...

前言 Java 相比 C/C 最显著的特点便是引入了自动垃圾回收 (下文统一用 GC 指代自动垃圾回收)&#xff0c;它解决了 C/C 最令人头疼的内存管理问题&#xff0c;让程序员专注于程序本身&#xff0c;不用关心内存回收这些恼人的问题&#xff0c;这也是 Java 能大行其道的重要原因之…

react从不会到入门

react从不会到入门1_react初识1.1_react基础环境搭建1.2_文件目录介绍1.2_JSX基础1.2.1_JSX介绍1.2.2_JSX表达式1.2.3_列表渲染1.2.4_条件渲染1.2.5_函数调用1.2.6_样式控制2_组件基础2.1_函数组件2.2_点击事件3_组件通讯3.1_父子关系4_生命周期4.1_挂载阶段4.2_更新阶段5_Hook…

Windows系统端口转发

1、添加端口转发 netsh interface portproxy add v4tov4 listenport10001 listenaddress192.168.1.100 connectport10001 connectaddress192.168.1.105 2、删除端口转发 netsh interface portproxy del v4tov4 listenport10001 listenaddress192.168.1.100 3、查看已存在的端口…

Microsoft Dynamics CRM 数据库连接存储位置在哪里 是在注册表里

Microsoft Dynamics CRM 数据库连接存储位置是在注册表里

将所有文件从目录复制到Python中的另一个目录

shutil (shell utilities) module, provides option to copy the files recursively from src to dst. shutil(shell实用程序)模块 &#xff0c;提供了将文件从src递归复制到dst的选项 。 The syntax to copy all files is: 复制所有文件的语法为&#xff1a; shutil.copytre…

Redis的8大数据类型,写的真好

来源 | blog.itzhouq.cn/redis2最近这几天的面试每一场都问到了&#xff0c;但是感觉回答的并不好&#xff0c;还有很多需要梳理的知识点&#xff0c;这里通过几篇 Redis 笔记整个梳理一遍。Redis 的八大数据类型官网可查看命令&#xff1a;http://www.redis.cn/commands.htmlR…

前后端(react+springboot)服务器部署

前后端&#xff08;reactspringboot&#xff09;服务器部署1_前端reactumi服务器部署1.1_前端生成dist目标文件1.2_准备连接服务器的工具1.3_安装nginx1.4_部署项目1.4.1_传输dist文件1.4.2_配置配置文件1.4.3_启动nginx2_后端springboot项目部署服务器2.1_后端生成目标文件2.2…

关于CentOS-6的默认带的mysql启动和安装问题

一开始想自己一步一步从编译开始搭建一个lanmp环境&#xff1b;从鸟哥的linux看到可以不用自己去安装&#xff0c;默认的可能更稳定&#xff0c;所以就开始探索系统自带的mysql和其他的工具&#xff0c;在mysql启动的时候遇到了问题。问题&#xff1a;默认的系统中根本就没有 【…

【LeetCode从零单排】No 191.Number of 1 Bits(考察位运算)

题目 Write a function that takes an unsigned integer and returns the number of ’1 bits it has (also known as the Hamming weight). For example, the 32-bit integer ’11 has binary representation 00000000000000000000000000001011, so the function should retur…

提高生产力,最全 MyBatisPlus 讲解!

如果你每天还在重复写 CRUD 的 SQL&#xff0c;如果你对这些 SQL 已经不耐烦了&#xff0c;那么你何不花费一些时间来阅读这篇文章&#xff0c;然后对已有的老项目进行改造&#xff0c;必有收获&#xff01;一、MP 是什么MP 全称 Mybatis-Plus &#xff0c;套用官方的解释便是成…

c#象棋程序_C ++程序确定象棋方块的颜色

c#象棋程序A chess board is equally divided into 64 identical squares that are black and white alternately. Each square on the chessboard can be identified by the coordinates as A to H on the horizontal axis and 1 to 8 on the vertical axis as shown in the f…

几个力学概念

简支梁 简支梁就是两端支座仅提供竖向约束&#xff0c;而不提供转角约束的支撑结构。简支梁仅在两端受铰支座约束&#xff0c;主要承受正弯矩&#xff0c;一般为静定结构。 只有两端支撑在柱子上的梁&#xff0c;主要承受正弯矩&#xff0c;一般为静定结构。体系温变、混凝土收…

Linux(CentOS)安装apache(httpd),其他电脑无法访问的原因 【iptables打开某端口】

今天试了下在虚拟机上利用CentOS系统的yum命令安装好了httpd(apache2.2)&#xff0c; 然后在windows系统下访问此虚拟机的ip地址&#xff0c;却访问不了。 因为前段时间有知道过iptable的限制&#xff0c;所以在想是不是因为iptable限制了80端口呢&#xff01; 所以在网上…

python字符串转义序列_Python | 忽略字符串中的转义序列

python字符串转义序列First see, how escape sequence works? 首先看&#xff0c;转义序列如何工作&#xff1f; In the below example, we are using some of the escape sequence and their outputs, we are printing single quote (\), double quotes (\"), printing…

MySQL中你必须知道的10件事,1.5万字!

攻击性不大&#xff0c;侮辱性极强1、SQL语句执行流程MySQL大体上可分为Server层和存储引擎层两部分。Server层&#xff1a;连接器&#xff1a;TCP握手后服务器来验证登陆用户身份&#xff0c;A用户创建连接后&#xff0c;管理员对A用户权限修改了也不会影响到已经创建的链接权…

Xamarin只言片语2——Xamarin下的web api操作

在很多时候&#xff0c;我们是希望手机app是要和服务端关联&#xff0c;并获取服务端的数据的&#xff0c;本篇博文我们看一下在xmarin下&#xff0c;怎么和用web api的方式与服务端连接并获取数据。首先看web api的开发&#xff0c;本实例是用Visual Studio 2013 with update …