博碩士論文 104522058 詳細資訊




以作者查詢圖書館館藏 以作者查詢臺灣博碩士 以作者查詢全國書目 勘誤回報 、線上人數:49 、訪客IP:3.149.255.196
姓名 黃韻文(Yun-Wen Huang)  查詢紙本館藏   畢業系所 資訊工程學系
論文名稱 創建靜態影像中的水流動畫
(Creating Fluid Animation in Static Image)
相關論文
★ 基於edX線上討論板社交關係之分組機制★ 利用Kinect建置3D視覺化之Facebook互動系統
★ 利用 Kinect建置智慧型教室之評量系統★ 基於行動裝置應用之智慧型都會區路徑規劃機制
★ 基於分析關鍵動量相關性之動態紋理轉換★ 基於保護影像中直線結構的細縫裁減系統
★ 建基於開放式網路社群學習環境之社群推薦機制★ 英語作為外語的互動式情境學習環境之系統設計
★ 基於膚色保存之情感色彩轉換機制★ 一個用於虛擬鍵盤之手勢識別框架
★ 分數冪次型灰色生成預測模型誤差分析暨電腦工具箱之研發★ 使用慣性傳感器構建即時人體骨架動作
★ 基於多台攝影機即時三維建模★ 基於互補度與社群網路分析於基因演算法之分組機制
★ 即時手部追蹤之虛擬樂器演奏系統★ 基於類神經網路之即時虛擬樂器演奏系統
檔案 [Endnote RIS 格式]    [Bibtex 格式]    [相關文章]   [文章引用]   [完整記錄]   [館藏目錄]   [檢視]  [下載]
  1. 本電子論文使用權限為同意立即開放。
  2. 已達開放權限電子全文僅授權使用者為學術研究之目的,進行個人非營利性質之檢索、閱讀、列印。
  3. 請遵守中華民國著作權法之相關規定,切勿任意重製、散佈、改作、轉貼、播送,以免觸法。

摘要(中) 當人們觀賞一張照片時,會常常想像在照片中的影像如果動起來會是什麼樣,想像力讓我們大腦接收到的資訊超乎一張靜態影像能給予我們的,在電腦視覺這門科學中,如何在靜態影像中加入動態的畫面的研究也正持續進行著。我們提出了一個能夠合成水流動畫到單張影像的系統,讓編輯者選擇想要編輯的影像區域和來源影片。我們分析水流的方法整合了線卷積與光流法,將影像與影片轉換成具有水流流向特徵的紋理貼圖,藉由分析此紋理貼圖來比對水流的相似程度,可以減少影像中許多容易影響比對的因素,像是顏色、明暗等等的。在做合成之前將來源影片的顏色外觀轉換成與目標影像相似,可以減少找不到適合的接縫的機率,本篇論文最後實作的紋理合成的演算法是基於影像縫合與圖切割的概念來完成,最後在套上多重解析度影像融合在人為痕跡明顯的拼接處,將不連續感進一步消除。
摘要(英) When people view a picture, they often imagine how the dynamic object in picture would move. The imagination makes people perceive much more than a static object before them and adding the motion in static image is always an active area in computer graphics. This paper present a system for synthesizing fluid motion on a single image. We include multiple relative techniques of image processing and computer vision.
The flow animation is extracted from a related video sequence and pasted onto the target image. For reducing the complexity of our system, we use a semi-automatic approach to let the user control the target image and the source video to create desired result. We build a simple interface for the following user-defined process. The user manually specifies the interested region of target image along with segmentation by grab-cut and choose the reference video. The user semi-automatically set the trimap for alpha matting to extract the foreground of video. Then, the system automatically executes remain process.
Our method integrates the optical flow and the line integral convolution to transfer the target image and video to textures that has correlation of pixels along the flow. The flow field of video can be obtained by compare the consecutive frame but the for single image there has no pervious frame can be analysis. We simply calculate the gradient of segmented target to generate the approximate flow field. The fluid orientation between image and video can be compared without the color’s influence by using the texture-based flow image.
The synthesis algorithm we purposed in this paper is based on the idea of image quilting and the graph-cut. The matching process depends on the flow texture but the synthesis process uses the original texture. The weight computation of seam finding on each node is refer to the color difference. Before synthesizing, we transfer color appearance of the video frame to be like the target image that can decrease the probability for visible seams in the generated result. Finally, we refine the appearance of the result by blending or blurring the seam.
關鍵字(中) ★ 紋理與視頻合成
★ 基於圖像的渲染
★ 圖像與視頻處理
★ 基於紋理的可視化
★ 自然場景
關鍵字(英) ★ Texture and video synthesis
★ image-based rendering
★ image and video processing
★ texture-based flow visualization
★ natural phenomenon
論文目次
摘要 i
Abstract ii
Acknowledgments iv
Contents v
List of Figures vii
List of Tables xi
Chapter 1. Introduction 1
1.1 Motivation 1
1.2 Background 2
1.3 Thesis Organization 3
Chapter 2. Related Works 4
2.1 Alpha Matting 4
2.2 Optical Flow 7
2.2.1 Lucas-Kanade 8
2.2.2 Farnebäck 9
2.3 Line Integral Convolution 11
2.4 Template Matching 13
2.5 Color Transfer 15
2.6 Graph-cut 17
2.7 Multiresolution spline blending 22
Chapter 3. Proposed Method 26
3.1 User Interface 26
3.1.1 Image segmentation 26
3.2 Flow Field 27
3.2.1 Single Image Flow Analysis 27
3.2.2 Video Background Segmentation 28
3.2.3 Video Motion Analysis 30
3.3 Matching Estimation 33
3.3.1 Patch Selection 34
3.4 Synthesis Mechanism 39
3.4.1 Adjustment 45
Chapter 4. Experimental Results 52
4.1 Environment 52
4.2 Experiment 52
Chapter 5. Conclusion and Future Work 58
5.1 Conclusion 58
5.2 Discussion and Future Work 58
References 59
參考文獻
[1] Peter Litwinowicz and Lance Williams. Animating images with drawings. In Proceedings of SIGGRAPH ’94, pp. 409–412, 1994.
[2] William A. Barrett and Alan S. Cheney. Object-based image editing. In Proceedings of SIGGRAPH, pp. 777–784. 2002.
[3] Yung-Yu Chuang, Dan B. Goldman, Ke Colin Zheng, Brian Curless, David H. Salesin, and Richard Szeliski. Animating pictures with stochastic motion textures. In Proceedings of SIGGRAPH, pp. 853–860, 2005.
[4] Tomer Moscovich and John F. Hughes. As-rigid-as-possible shape manipulation. In Proceedings of SIGGRAPH, pp. 1134–1141, 2005.
[5] Youichi Horry, Ken-ichi Anjyo, and Kiyoshi Arai. Tour into the picture: Using a spidery mesh interface to make animation from a single image. In Proceedings of SIGGRAPH ’97, pp. 225-232. 1997.
[6] Hornung, A., Dekkers E., and Kobbelt, L. Character animation from 2d pictures and 3d motion data. ACM Trans. Graph. 26, 1, 2007.
[7] J. F. David and W. Yair, Optical Flow Estimation in Paragios et al. Handbook of Mathematical Models in Computer Vision, Springer, ISBN 0-387-26371-3, 2006.
[8] S. S. Beauchemin and J. L. Barron. The computation of optical flow. ACM New York, USA, 1995.
[9] Carsten Rother, Vladimir Kolmogorov, and Andrew Blake. Grabcut – Interactive foreground extraction using iterated graph cuts. In Proceedings of SIGGRAPH, 2004.
[10] Kaiming He, Christoph Rhemann, Carsten Rother, Xiaoou Tang, and Jian Sun. A global sampling method for alpha matting. CVPR, 2011.
[11] G. Farneback. Two-frame motion estimation based on polynomial expansion. Proceedings of the 13th SCIA, pp. 363–370, 2003.
[12] Brian Cabral and Leith (Casey) Leedom. Imaging vector fields using line integral convolution. SIGGRAPH’93, Proceedings of the 20th annual conference on Computer graphics and interactive techniques, pp. 263-270, 1993.
[13] Alexei A. Efros and William T. Freeman. Image quilting for texture synthesis and transfer. Proceedings of SIGGRAPH, pp. 341–346. ISBN 1-58113-292-1, 2001.
[14] Vivek Kwatra, Arno Schödl, Irfan Essa, Greg Turk, and Aaron Bobick. Graphcut textures: Image and video synthesis using graph cuts. ACM Transactions on Graphics, SIGGRAPH, 22, 3, pp. 277-286, 2003.
[15] Jeremy S. De Bonet. Multiresolution sampling procedure for analysis and synthesis of texture images. Proceedings of SIGGRAPH 97, pp. 361–368. ISBN 0-89791-896-7. Held in Los Angeles, California, 1997.
[16] Alexei A. Efros and Thomas K. Leung. Texture synthesis by non-parametric sampling. In International Conference on Computer Vision. Vol.2, pp. 1033-1038, 1999.
[17] Li-Yi Wei and Marc Levoy. Fast texture synthesis using tree structured vector quantization. Proceedings of SIGGRAPH, pp. 479-488, 2000.
[18] L. Ford and D. Fulkerson. Flow in networks. Princeton University Press, 1962.
[19] Erik Reinhard, Michael Ashikhmin, Bruce Gooch, and Peter Shirley. Color transfer between images. IEEE Comput. Graph.,Appl. 21, 5, pp. 34–41, 2001.
[20] R. Brunelli. Template Matching Techniques in Computer Vision: Theory and Practice, Wiley, ISBN 978-0-470-51706-2, 2009.
[21] Steven L. Kilthau, Mark S. Drew, and Torsten Möller. Full search content independent matching based on the fast fourier transform. 2002 Conference on Image Processing, vol. 1, pp. 669-672, 2002.
[22] J.L. Barron, D.J. Fleet, and S.S. Beauchemin. Performance of optical flow techniques. International Journal of Computer Vision, pp. 43-77, 1994.
[23] Horn B.K.P. and Schunck B.G. Determining optical flow. Artificial Intelligence, vol 17, pp. 185-203, 1981.
[24] B. D. Lucas and T. Kanade. An iterative image registration technique with an application to stereo vision. in Proceedings of Imaging Understanding Workshop, pp. 121–130, 1981.
[25] T. Porter and T. Duff. Compositing digital images. In Proceeding of ACM SIGGRAPH, pp. 253-259, July 1984.
[26] Jue Wang and Michael F. Cohen. Image and video matting. Now Pubishers Inc., Hanover, MA, USA, 2008.
[27] Rudolf Netzel and Daniel Weiskopf. Texture-based flow visualization. Computing in Science & Engineering, vol. 15, no., pp.96-102, Nov.-Dec. 2013.
[28] Peter J. Burt and Edward H. Adelson. A multiresolution spline with application to image mosaics. ACM Transaction on Graphics, 2, 4, pp. 217-236, 1983.
[29] R.C. Gonzalex and R.E. Woods, Digital Image Processing (3ed ed.), Prentice-Hall, Inc.,Upper Saddle River, NJ, USA, 2006.
指導教授 施國琛(Timothy K. Shih) 審核日期 2017-7-13
推文 facebook   plurk   twitter   funp   google   live   udn   HD   myshare   reddit   netvibes   friend   youpush   delicious   baidu   
網路書籤 Google bookmarks   del.icio.us   hemidemi   myshare   

若有論文相關問題,請聯絡國立中央大學圖書館推廣服務組 TEL:(03)422-7151轉57407,或E-mail聯絡  - 隱私權政策聲明