梁友栋-柏世奇算法

✍ dations ◷ 2024-12-23 04:43:41 #计算机图形学,算法

梁友栋—柏世奇算法(以梁友栋和柏世奇(英语:Brian A. Barsky)的名字命名)是计算机图形学中的一个线段裁剪算法。梁友栋—柏世奇算法使用直线的参数方程和不等式组来描述线段和裁剪窗口的交集。求解出的交集将被用于获知线的哪些部分是应当绘制在屏幕上的。这一算法比科恩-苏泽兰算法(Cohen-Sutherland algorithm)要更加高效,梁友栋—柏世奇算法的基本思想是:在计算线段与裁剪窗交集之前做尽可能多的判断。

考虑直线的参数方程:

点在裁剪窗内,若

其可用4个不等式表达:

其中

计算最终线段:

// Liang--Barsky line-clipping algorithm#include<iostream>#include<graphics.h>#include<math.h>using namespace std;// this function gives the maximumfloat maxi(float arr,int n) {  float m = 0;  for (int i = 0; i < n; ++i)    if (m < arr)      m = arr;  return m;}// this function gives the minimumfloat mini(float arr, int n) {  float m = 1;  for (int i = 0; i < n; ++i)    if (m > arr)      m = arr;  return m;}void liang_barsky_clipper(float xmin, float ymin, float xmax, float ymax,                          float x1, float y1, float x2, float y2) {  // defining variables  float p1 = -(x2 - x1);  float p2 = -p1;  float p3 = -(y2 - y1);  float p4 = -p3;  float q1 = x1 - xmin;  float q2 = xmax - x1;  float q3 = y1 - ymin;  float q4 = ymax - y1;  float posarr, negarr;  int posind = 1, negind = 1;  posarr = 1;  negarr = 0;  rectangle(xmin, 467 - ymin, xmax, 467 - ymax); // drawing the clipping window  if ((p1 == 0 && q1 < 0) || (p3 == 0 && q3 < 0)) {      outtextxy(80, 80, "Line is parallel to clipping window!");      return;  }  if (p1 != 0) {    float r1 = q1 / p1;    float r2 = q2 / p2;    if (p1 < 0) {      negarr = r1; // for negative p1, add it to negative array      posarr = r2; // and add p2 to positive array    } else {      negarr = r2;      posarr = r1;    }  }  if (p3 != 0) {    float r3 = q3 / p3;    float r4 = q4 / p4;    if (p3 < 0) {      negarr = r3;      posarr = r4;    } else {      negarr = r4;      posarr = r3;    }  }  float xn1, yn1, xn2, yn2;  float rn1, rn2;  rn1 = maxi(negarr, negind); // maximum of negative array  rn2 = mini(posarr, posind); // minimum of positive array  if (rn1 > rn2)  { // reject    outtextxy(80, 80, "Line is outside the clipping window!");    return;  }  xn1 = x1 + p2 * rn1;  yn1 = y1 + p4 * rn1; // computing new points  xn2 = x1 + p2 * rn2;  yn2 = y1 + p4 * rn2;  setcolor(CYAN);  line(xn1, 467 - yn1, xn2, 467 - yn2); // the drawing the new line  setlinestyle(1, 1, 0);  line(x1, 467 - y1, xn1, 467 - yn1);  line(x2, 467 - y2, xn2, 467 - yn2);}int main() {  cout << "\nLiang-barsky line clipping";  cout << "\nThe system window outlay is: (0,0) at bottom left and (631, 467) at top right";  cout << "\nEnter the co-ordinates of the window(wxmin, wxmax, wymin, wymax):";  float xmin, xmax, ymin, ymax;  cin >> xmin >> ymin >> xmax >> ymax;  cout << "\nEnter the end points of the line (x1, y1) and (x2, y2):";  float x1, y1, x2, y2;  cin >> x1 >> y1 >> x2 >> y2;  int gd = DETECT, gm;  // using the winbgim library for C++, initializing the graphics mode  initgraph(&gd, &gm, "");  liang_barsky_clipper(xmin, ymin, xmax, ymax, x1, y1, x2, y2);  getch();  closegraph();}

参见

其他裁剪算法:

相关

  • 生产生产在经济学中指的是厂商或服务提供者,把其可以支配的资源(也就是生产要素)转变为商品(有形产品或无形服务(英语:Goods and services))的过程,而且所产生的商品有价值,可以对消费者产
  • 语言能力语言能力,又称为语言学能力、语言才能、语言本能,是指一个人所拥有的关于其母语的知识和技能。例如,了解字词都是什么含义,如何将字词组成句子以及字词如何发音等等。Noam Choms
  • University of Chicago Press芝加哥大学出版社(University of Chicago Press)是位于芝加哥大学中途公园的一个出版社,由芝加哥大学运营,成立于1890年,现为美国最大最古老的大学出版社之一。除去各种书籍和期
  • 草木灰草木灰是柴草燃烧后残留的灰烬物质,属碱性,碱性的主要来源是碳酸钾(K2CO3)。可用做无机肥料。在化学肥料普遍使用前,农家的草木灰是指由山草、禾秆和树枝等燃烧煮食后的灰烬,注意:
  • 龙骑兵龙骑兵(英语:Dragoon)又简称为龙兵,是最早是一种“骑马步兵”的兵种,大多出现于17世纪晚期至18世纪早期的欧洲军队,是同时接受马术与步兵战斗技巧的训练,以马匹运输、步行战斗的士
  • 第八机械工业总局第八机械工业总局是的中华人民共和国国务院曾经设立的国务院直属机构。1975年7月,由于第七机械工业部长期派性分歧,机构瘫痪,从中分出设立第八机械工业总局。1979年7月中央决定
  • 冲积扇冲积扇(alluvial fan)是山地河流出口处的堆积地貌。山地河流流过山麓后,因为坡度变缓,流速降低,河道变宽,河水携带的砂石大量堆积,使河床抬高,因此河流不断地变迁改道,或分成多股水流
  • 2018年阿拉斯加地震2018年阿拉斯加地震可能是指:
  • 约翰·曼德森 (医学家)约翰·曼德森(英语:John Mendelsohn,1936年8月31日-2019年1月7日),研发出第一种标靶药物Erbitux(尔必得舒)的医学家。和东尼·杭特(Tony Hunter)、布莱恩·德鲁克尔(Brian J. Druker)一
  • 神保住神保住(1696年-1759年),满洲爱新觉罗氏。郑献亲王济尔哈朗之曾孙、简纯亲王济度之孙、简修亲王雅布第十四子。第七代郑亲王(1726年-1748年)。康熙五十五年(1716年),神保住被封为一等镇