• <tr id="mcs6w"></tr>
    • <tr id="mcs6w"></tr>
    • <ul id="mcs6w"><pre id="mcs6w"></pre></ul>
    • <samp id="mcs6w"></samp>
      論文格式
      電氣工程 會計論文 金融論文 國際貿易 財務管理 人力資源 輕化工程 德語論文 工程管理 文化產業管理 信息計算科學 電氣自動化 歷史論文
      機械設計 電子通信 英語論文 物流論文 電子商務 法律論文 工商管理 旅游管理 市場營銷 電視制片管理 材料科學工程 漢語言文學 免費獲取
      制藥工程 生物工程 包裝工程 模具設計 測控專業 工業工程 教育管理 行政管理 應用物理 電子信息工程 服裝設計工程 教育技術學 論文降重
      通信工程 電子機電 印刷工程 土木工程 交通工程 食品科學 藝術設計 新聞專業 信息管理 給水排水工程 化學工程工藝 推廣賺積分 付款方式
      • 首頁 |
      • 畢業論文 |
      • 論文格式 |
      • 個人簡歷 |
      • 工作總結 |
      • 入黨申請書 |
      • 求職信 |
      • 入團申請書 |
      • 工作計劃 |
      • 免費論文 |
      • 合作期刊 |
      • 論文同學網 |
      搜索 高級搜索

      當前位置:論文格式網 -> 畢業論文 -> 計算機論文
      畢業論文標題:

      光線跟蹤算法的研究與實現

       本文ID:LWGSW13561 價格:收費積分/100
      掃一掃 掃一掃
      本站會員可自行下載:下載地址 光線跟蹤算法的研究與實現 (收費:1000 積分)  

      論文字數:13964,頁數:35  有開題報告,任務書

      摘  要

       在計算機圖形學中,真實感技術占有著重要地位。采用真實感技術生成的圖形能夠真實地反映物體表面的顏色和亮度的細微變化,表現出物體表面的質感。另外還能通過生成光照下物體的陰影,極大地改善場景的深度感和層次感,充分體現物體間的相互遮擋關系,并且能夠模擬物體的透明效果和鏡面物體的鏡面效果。
       光線跟蹤算法是真實感生成技術中的主要算法之一,采用整體光照模型來模擬場景環境中的光照情況。光線跟蹤能很自然地解決環境中所有物體之間的消隱、陰影、鏡面反射和折射等問題,并且能夠生成十分逼真的圖形。光線跟蹤算法較難理解,但其實現相對簡單,采用遞歸算法即可。遞歸的光線跟蹤算法計算量十分巨大,因此應盡可能減少求交計算量是提高光線跟蹤效率的關鍵。
       本文從簡單的光照模型入手,對光線跟蹤算法進行了一定的研究,重點研究了光線跟蹤算法的原理、光線跟蹤的過程,以及涉及的求交算法。本文還根據基本的遞歸光線跟蹤算法原理,結合windows的圖形設備接口(GDI),使用C++語言,在MFC框架下實現了小型的算法演示系統,該系統創建了一個三維空間場景,并在此場景中放置物體,利用光線跟蹤算法模擬光照效果。

      關鍵詞:真實感,光線跟蹤,光照模型

      Research and Implementation of Ray Tracing Algorithm

      Abstract
       In computer graphics, the technology of realism plays an important role. The graphics made by realistic technology can reflect minor changes in the surface brightness and colors, which can show the surface texture of an object. By generating the shadow of the light, it improves the sense in depth and gradation of the scene, and reflects the relation of mutual occlusion between objects. Also, realistic technology can simulate transparent objects and mirror effect.
       Ray-tracing algorithm is one of the most important algorithms of realistic generation technology. It used a whole light model to simulate the illumination condition of the scene. Ray-tracing can solve all the issues about hiding, shadow, specula reflection and refraction unaffectedly, and can product a very vivid graphics. The ray-tracing algorithm is hard to understand, but it can be achieved by recursion. The amount of calculation of ray-tracing algorithm is very huge. So, how to minimize the intersection calculation is the key to improving efficiency of the ray-tracing algorithm.
       Starting with the simple light model, this paper researched the ray-tracing algorithm, including the ray-tracing theory, the procedure of ray tracing, and the algorithms of calculating intersection. Depending on the basic theory of ray-tracing algorithm, this paper realized a small-scale demo under the framework of MFC, using the C++ and Windows GDI. The demo set up a 3D scene, and put some objects in it. Then, it can simulate the illumination effect by ray-tracing algorithm.
       
      Key Words:Realistic, Ray Tracing, Lighting Model

       目   錄
       畢業論文原創性聲明  I
       畢業論文版權使用授權  II
      摘要  III
      Abstract  IV
      1 引言  1
       1.1 課題研究的背景及意義  1
       1.2 國內外研究現狀  1
       1.3 本文內容與結構  2
       1.4 本文研究的主要方向  3
      2 相關基礎知識  4
       2.1 幾何光學基礎知識  4
       2.2 光線跟蹤相關基礎  5
       2.2.1 光源  5
       2.2.2 環境光  6
       2.2.3 漫反射  7
       2.2.4 鏡面反射光  8
       2.2.5 Phong光照模型  9
       2.2.6 整體光照模型  11
      3 光線跟蹤算法  13
       3.1 光線跟蹤的基本原理  13
       3.2 本文算法實現的思想  16
      4 光線與物體的求交  20
       4.1 光線與球的求交  20
       4.1.1 代數解法  20
       4.1.2 幾何解法  21
       4.2 光線與多邊形的求交  23
       4.3 光線與二次曲面的求交  24
       4.4 本文程序實現的求交算法  25
      5 論文總結  27
       5.1 光線跟蹤算法的后續研究方向  27
       5.2 輻射度方法  29
       5.3 論文結語  29
      致謝  33
      參考文獻  34


      相關論文
      本論文在計算機論文欄目,由論文格式網整理,轉載請注明來源www.donglienglish.cn,更多論文,請點論文格式范文查看
      上一篇:行車安全及裝備情況統計分析系統.. 下一篇:IP地址管理系統的設計與實現
      Tags:光線 跟蹤 算法 研究 實現 【收藏】 【返回頂部】
      最新文章
      熱門文章
      計算機論文
      推薦文章

      本站部分文章來自網絡,如發現侵犯了您的權益,請聯系指出,本站及時確認刪除 E-mail:349991040@qq.com

      論文格式網(www.donglienglish.cn--論文格式網拼音首字母組合)提供計算機論文畢業論文格式,論文格式范文,畢業論文范文

      Copyright@ 2010-2018 LWGSW.com 論文格式網 版權所有 蜀ICP備09018832號

      感谢您访问我们的网站,您可能还对以下资源感兴趣:

      论文格式网:毕业论文格式范文
        <samp id="qi0wa"></samp>
        <kbd id="qi0wa"></kbd>
      • <strike id="qi0wa"><rt id="qi0wa"></rt></strike>