java圖形圖象處理畢業(yè)設(shè)計.rar
java圖形圖象處理畢業(yè)設(shè)計,3.1萬字 79頁包括論文,中英文翻譯,程序代碼摘 要隨著計算機技術(shù)的迅速發(fā)展,數(shù)字圖像處理技術(shù)在醫(yī)學(xué)領(lǐng)域的研究和應(yīng)用日益深入和廣泛。現(xiàn)代醫(yī)學(xué)已越來越離不開醫(yī)學(xué)圖像處理技術(shù)。醫(yī)學(xué)圖像處理技術(shù)在臨床診斷、教學(xué)科研等方面發(fā)揮了重要的作用。計算機圖像處理技術(shù)與影像技術(shù)的結(jié)合從根本上改變了醫(yī)務(wù)人員進...
該文檔為壓縮文件,包含的文件列表如下:
內(nèi)容介紹
原文檔由會員 果酸 發(fā)布
java圖形圖象處理畢業(yè)設(shè)計
3.1萬字 79頁
包括論文,中英文翻譯,程序代碼
摘 要
隨著計算機技術(shù)的迅速發(fā)展,數(shù)字圖像處理技術(shù)在醫(yī)學(xué)領(lǐng)域的研究和應(yīng)用日益深入和廣泛?,F(xiàn)代醫(yī)學(xué)已越來越離不開醫(yī)學(xué)圖像處理技術(shù)。醫(yī)學(xué)圖像處理技術(shù)在臨床診斷、教學(xué)科研等方面發(fā)揮了重要的作用。計算機圖像處理技術(shù)與影像技術(shù)的結(jié)合從根本上改變了醫(yī)務(wù)人員進行診斷的傳統(tǒng)方式。充分地利用這些技術(shù)可以提高診斷的正確性和準(zhǔn)確性,提高診斷效率,降低醫(yī)療成本,可以更加充分地發(fā)揮各種醫(yī)療設(shè)備的功能。而且,隨著數(shù)字化、智能化進程的深人,圖像處理技術(shù)在醫(yī)療衛(wèi)生領(lǐng)域?qū)懈訌V闊的應(yīng)用前景。
Java是Sun公司推出的一種面向?qū)ο缶幊陶Z言。Java非常適合于企業(yè)網(wǎng)絡(luò)和Internet環(huán)境,現(xiàn)已成為Internet中最受歡迎、最有影響的編程語言之一。目前國內(nèi)使用Java語言開發(fā)的圖像處理系統(tǒng)比較少,這也增加了這方面的研究價值。
本文首先對圖像增強和圖像分割中的幾種算法進行了介紹,包括線性灰度變換,偽彩色處理,平滑處理,中值濾波,閾值分割,邊緣檢測等。然后用Java語言對上述各算法編程實現(xiàn),并設(shè)計Java GUI(圖形用戶界面)用來顯示圖像處理的結(jié)果,以及創(chuàng)建一個數(shù)據(jù)庫用于存儲醫(yī)學(xué)圖像。
關(guān)鍵詞:醫(yī)學(xué)圖像;圖像增強;圖像分割;面向?qū)ο?br>
Abstract
As the computer technique’s quickly development, the image process technique having been more deeply and widely in the use and study of medical science. The modern medical science can not work well without the medical image processing technology; it has made an important use in clinical diagnosis and education study. The combination of the image processing technique and imaging technique has changed the way that traditional diagnosis. Make adequately use of this techniques will be increase accuracy, increase the efficiency of diagnosis, decrease the cost of medical treatment and make the most use of function with medical treatment equipments. Moreover, as the deeply with the arithmetic figure and the intelligence, the image processing technique will have a more wonderful future.
Java is a kind of object-oriented programming language from the company of Sun. The Java is becoming a most welcome and influence programming language which suits for the business network and the environment of internet. Currently, use Java language to developed image processing system is not very frequency in our country. So, this is a cause of increasing the value of study.
This project introduces some kinds of algorithms in image enhancement and image segmentation. It includes linear grey level transformation, pseudo-color processing, smooth processing, median filter, threshold segmentation, edge detection and so on. Then, use Java to program and realize. And show the result of image processing using Java GUI (Graphical User Interface), as well as create a database to stock medical image.
Key Words: medical image; image enhancement; image segmentation; object-oriented
目錄
1 引言 1
2 醫(yī)學(xué)圖像處理概述 3
2.1 什么是醫(yī)學(xué)圖像處理 3
2.2 醫(yī)學(xué)圖像處理及研究內(nèi)容 3
2.2.1 超聲圖像 3
2.2.2 X射線圖像 4
2.2.3 磁共振成像 5
2.2.4 核醫(yī)學(xué)成像 6
2.3 醫(yī)學(xué)圖像處理技術(shù)新進展 7
3 Java語言的特點 11
3.1 面向?qū)ο缶幊?11
3.1.1 抽象 11
3.1.2 面向?qū)ο缶幊痰?個原則 12
3.2 Java的特性 13
3.3 Java語言的前景 15
4 Java語言實現(xiàn)圖像處理 16
4.1 圖像增強技術(shù) 16
4.1.1 灰度變換 17
4.1.2 偽彩色處理 19
4.1.3 平滑化處理 22
4.1.4 其他圖像增強技術(shù) 24
4.2 圖像分割技術(shù) 25
4.2.1 閾值分割法 25
4.2.2 邊緣檢測法 28
4.3 圖像復(fù)原技術(shù) 31
4.4 本章小結(jié) 33
5 設(shè)計流程 34
5.1 主流程圖 34
5.2 圖像處理界面 35
5.3 圖像的加載 36
5.4 圖像的處理 38
5.5 數(shù)據(jù)庫的建立 42
6 開發(fā)工具 44
6.1 JCreator概述 44
6.2 JCreator編輯界面的組成 44
結(jié) 論 47
致 謝 48
參考文獻 49
附錄A 英文原文 50
附錄B 中文翻譯 59
附錄C 源程序 66
參考文獻
[1] 劉榴娣,劉明奇.《實用數(shù)字圖像處理》.第一版.北京理工大學(xué)出版社.2003年
[2] 章梳晉.《圖像處理和分析》.第一版.清華大學(xué)出版社.2006年
[3] 陳浩,李本富.《醫(yī)學(xué)圖像處理技術(shù)新進展》.第四軍醫(yī)大學(xué)學(xué)報.2004年,第5期
[4] 林信良.《Java JDK 5.0學(xué)習(xí)筆記》.清華大學(xué)出版社.2006年
[5] David Flanagan.《JAVA IN A NUTSHELL》.第三版.O’REILLY出版社.1999年
[6] 王宏.《數(shù)字圖像處理—Java語言實現(xiàn)》.第一版.東北大學(xué)出版社.2005年
[7] Rafael C.Gonzalez,Richard E.Woods.《岡薩雷斯 數(shù)
3.1萬字 79頁
包括論文,中英文翻譯,程序代碼
摘 要
隨著計算機技術(shù)的迅速發(fā)展,數(shù)字圖像處理技術(shù)在醫(yī)學(xué)領(lǐng)域的研究和應(yīng)用日益深入和廣泛?,F(xiàn)代醫(yī)學(xué)已越來越離不開醫(yī)學(xué)圖像處理技術(shù)。醫(yī)學(xué)圖像處理技術(shù)在臨床診斷、教學(xué)科研等方面發(fā)揮了重要的作用。計算機圖像處理技術(shù)與影像技術(shù)的結(jié)合從根本上改變了醫(yī)務(wù)人員進行診斷的傳統(tǒng)方式。充分地利用這些技術(shù)可以提高診斷的正確性和準(zhǔn)確性,提高診斷效率,降低醫(yī)療成本,可以更加充分地發(fā)揮各種醫(yī)療設(shè)備的功能。而且,隨著數(shù)字化、智能化進程的深人,圖像處理技術(shù)在醫(yī)療衛(wèi)生領(lǐng)域?qū)懈訌V闊的應(yīng)用前景。
Java是Sun公司推出的一種面向?qū)ο缶幊陶Z言。Java非常適合于企業(yè)網(wǎng)絡(luò)和Internet環(huán)境,現(xiàn)已成為Internet中最受歡迎、最有影響的編程語言之一。目前國內(nèi)使用Java語言開發(fā)的圖像處理系統(tǒng)比較少,這也增加了這方面的研究價值。
本文首先對圖像增強和圖像分割中的幾種算法進行了介紹,包括線性灰度變換,偽彩色處理,平滑處理,中值濾波,閾值分割,邊緣檢測等。然后用Java語言對上述各算法編程實現(xiàn),并設(shè)計Java GUI(圖形用戶界面)用來顯示圖像處理的結(jié)果,以及創(chuàng)建一個數(shù)據(jù)庫用于存儲醫(yī)學(xué)圖像。
關(guān)鍵詞:醫(yī)學(xué)圖像;圖像增強;圖像分割;面向?qū)ο?br>
Abstract
As the computer technique’s quickly development, the image process technique having been more deeply and widely in the use and study of medical science. The modern medical science can not work well without the medical image processing technology; it has made an important use in clinical diagnosis and education study. The combination of the image processing technique and imaging technique has changed the way that traditional diagnosis. Make adequately use of this techniques will be increase accuracy, increase the efficiency of diagnosis, decrease the cost of medical treatment and make the most use of function with medical treatment equipments. Moreover, as the deeply with the arithmetic figure and the intelligence, the image processing technique will have a more wonderful future.
Java is a kind of object-oriented programming language from the company of Sun. The Java is becoming a most welcome and influence programming language which suits for the business network and the environment of internet. Currently, use Java language to developed image processing system is not very frequency in our country. So, this is a cause of increasing the value of study.
This project introduces some kinds of algorithms in image enhancement and image segmentation. It includes linear grey level transformation, pseudo-color processing, smooth processing, median filter, threshold segmentation, edge detection and so on. Then, use Java to program and realize. And show the result of image processing using Java GUI (Graphical User Interface), as well as create a database to stock medical image.
Key Words: medical image; image enhancement; image segmentation; object-oriented
目錄
1 引言 1
2 醫(yī)學(xué)圖像處理概述 3
2.1 什么是醫(yī)學(xué)圖像處理 3
2.2 醫(yī)學(xué)圖像處理及研究內(nèi)容 3
2.2.1 超聲圖像 3
2.2.2 X射線圖像 4
2.2.3 磁共振成像 5
2.2.4 核醫(yī)學(xué)成像 6
2.3 醫(yī)學(xué)圖像處理技術(shù)新進展 7
3 Java語言的特點 11
3.1 面向?qū)ο缶幊?11
3.1.1 抽象 11
3.1.2 面向?qū)ο缶幊痰?個原則 12
3.2 Java的特性 13
3.3 Java語言的前景 15
4 Java語言實現(xiàn)圖像處理 16
4.1 圖像增強技術(shù) 16
4.1.1 灰度變換 17
4.1.2 偽彩色處理 19
4.1.3 平滑化處理 22
4.1.4 其他圖像增強技術(shù) 24
4.2 圖像分割技術(shù) 25
4.2.1 閾值分割法 25
4.2.2 邊緣檢測法 28
4.3 圖像復(fù)原技術(shù) 31
4.4 本章小結(jié) 33
5 設(shè)計流程 34
5.1 主流程圖 34
5.2 圖像處理界面 35
5.3 圖像的加載 36
5.4 圖像的處理 38
5.5 數(shù)據(jù)庫的建立 42
6 開發(fā)工具 44
6.1 JCreator概述 44
6.2 JCreator編輯界面的組成 44
結(jié) 論 47
致 謝 48
參考文獻 49
附錄A 英文原文 50
附錄B 中文翻譯 59
附錄C 源程序 66
參考文獻
[1] 劉榴娣,劉明奇.《實用數(shù)字圖像處理》.第一版.北京理工大學(xué)出版社.2003年
[2] 章梳晉.《圖像處理和分析》.第一版.清華大學(xué)出版社.2006年
[3] 陳浩,李本富.《醫(yī)學(xué)圖像處理技術(shù)新進展》.第四軍醫(yī)大學(xué)學(xué)報.2004年,第5期
[4] 林信良.《Java JDK 5.0學(xué)習(xí)筆記》.清華大學(xué)出版社.2006年
[5] David Flanagan.《JAVA IN A NUTSHELL》.第三版.O’REILLY出版社.1999年
[6] 王宏.《數(shù)字圖像處理—Java語言實現(xiàn)》.第一版.東北大學(xué)出版社.2005年
[7] Rafael C.Gonzalez,Richard E.Woods.《岡薩雷斯 數(shù)