博碩士論文 983211009 詳細資訊




以作者查詢圖書館館藏 以作者查詢臺灣博碩士 以作者查詢全國書目 勘誤回報 、線上人數:113 、訪客IP:3.145.105.105
姓名 鄭俊彥(Jun-yan Zheng)  查詢紙本館藏   畢業系所 生物醫學工程研究所
論文名稱 基於類神經網路之白血球分類系統
(A neural-network-based white blood cell classification system)
相關論文
★ 以Q-學習法為基礎之群體智慧演算法及其應用★ 發展遲緩兒童之復健系統研製
★ 從認知風格角度比較教師評量與同儕互評之差異:從英語寫作到遊戲製作★ 基於檢驗數值的糖尿病腎病變預測模型
★ 模糊類神經網路為架構之遙測影像分類器設計★ 複合式群聚演算法
★ 身心障礙者輔具之研製★ 指紋分類器之研究
★ 背光影像補償及色彩減量之研究★ 類神經網路於營利事業所得稅選案之應用
★ 一個新的線上學習系統及其於稅務選案上之應用★ 人眼追蹤系統及其於人機介面之應用
★ 結合群體智慧與自我組織映射圖的資料視覺化研究★ 追瞳系統之研發於身障者之人機介面應用
★ 以類免疫系統為基礎之線上學習類神經模糊系統及其應用★ 基因演算法於語音聲紋解攪拌之應用
檔案 [Endnote RIS 格式]    [Bibtex 格式]    [相關文章]   [文章引用]   [完整記錄]   [館藏目錄]   至系統瀏覽論文 ( 永不開放)
摘要(中) 本論文提出一個新的白血球分類系統,此系統包含兩個階段,第一階段執行白血球影像的切割;第二階段則執行白血球辨識工作。為了有效切割白血球,我們提出了一種新的切割演算法,首先利用主成份分析 (principal component analysis) 在 HSI 色彩空間內定義出一個橢圓形區間,在橢圓形區間內之像素點會被視為白血球細胞核和細胞質之顆粒,再經過形態處理(morphological process) 後,才完成血球切割工作。接著,從切割後之白血球中萃取出色彩、形狀和區域方向圖樣 (local directional pattern) 等特徵,然後,將這些特徵輸入類神經網路予以辨識出是何種白血球。本論文採用三種不同之類神經網路:多層感知機 (multi-layer perceptron)、支持向量機 (support vector machine) 和模糊化多維矩形複合式神經網路 (fuzzy hyper-rectangular composite neutral networks) 來辨識白血球種類。
為了測試本論文所提之白血球分類系統之有效性,共使用了450張白血球影像,其影像大小為360×360的 JPEG 格式。整體來說,每張影像從一開始的切割到辨識的處理時間約為1秒。在整體資料的正確率比較上,多層感知機可達到最佳之效果,其正確率可達99%的正確性;支持向量機則有97%的整體正確率,雖然模糊化多維矩形複合式神經網路對於訓練資料有著高達百分百的辨識結果,但其測試集之辨識結果不佳。
摘要(英) This thesis presents a new white blood cell classification system. The system involves in two steps. While the first step is the segmentation of a white blood cell from an image, the second step focuses on the recognition of the types of white blood cells. We propose a new segmentation algorithm for the segmentation of white blood cells. First of all, we use the principal component analysis (PCA) to define an elliptical region in HSI color space. Pixels with color in the elliptical region will be regarded as the nucleus and granule of cytoplasm of white blood cell. Through a morphological process, we can segment the white blood cell from the image. Then, several features (e.g., color, shape, local directional pattern)are extracted from the cell. These features are fed into a neural network to recognize the types of the white blood cells. In this thesis, three different neural networks (i.e., multi-layer perceptron (MLP), support vector machines (SVM) and hyper-rectangular composite neutral networks (HRCNN)) are used to recognize white blood cell type.
To test the effectiveness of the proposed white blood cell classification system, a total of 450 white blood cells images were used. The image size is 360 × 360 with the JPEG format. Overall, the processing time of each image from the start of segmentation to the end of recognition is about one second. The MLP could achieve the best results with the recognition rate 99% of accuracy. As for the SVM, it could achieve 97% of accuracy in overall data. Although the HRCNN could achieve 100% correct ratio for the training data set, the accuracy for the testing data set was not as high as the other two types of neural networks.
關鍵字(中) ★ 類神經網路
★ 醫學影像處理
★ 白血球分類
★ 區域方向圖樣
★ 主成份分析
關鍵字(英) ★ artificial neural network
★ medical image processing
★ principal component analysis
★ local directional pattern
★ white blood cell classification
論文目次 中文摘要 ................................................................................................................... I
ABSTRACT ........................................................................................................... II
目 錄 ............................................................................................................ IV
圖 目 錄 .......................................................................................................... VII
表 目 錄 ............................................................................................................ IX
第一章、緒論 .......................................................................................................... 1
1-1 研究動機 .................................................................................................. 1
1-2 研究目的 .................................................................................................. 2
1-3 論文架構 .................................................................................................. 3
第二章、相關研究 .................................................................................................. 4
2-1 常規白血球簡介 ...................................................................................... 4
2-2 常用之白血球分類方式介紹 .................................................................. 6
2-2-1 手工計數法 ................................................................................... 6
2-2-2 自動計數法 ................................................................................... 7
2-3 基於圖形辨認法之白血球分類相關研究 ............................................. 11
2-4 相關文獻總結 ........................................................................................ 13
第三章、白血球分類系統 .................................................................................... 15
3-1 系統流程 ................................................................................................ 15
3-2 白血球影像資料庫 ................................................................................ 17
3-3 影像處理 ................................................................................................ 19
3-3-1 HSI色彩空間分割 ...................................................................... 20
3-3-2 形態處理 ..................................................................................... 24
3-3-3 中值濾波 ..................................................................................... 27
3-3-4 影像標號演算法 ......................................................................... 29
3-4 特徵擷取 ................................................................................................ 31
3-4-1 形狀特徵 ..................................................................................... 32
3-4-2 色彩特徵 ..................................................................................... 34
3-4-3 紋理特徵 ..................................................................................... 35
3-4-4 特徵選取 ..................................................................................... 37
3-5 辨識方法 .................................................................................................. 38
3-5-1 多層感知機 ................................................................................. 40
3-5-2 支持向量機 ................................................................................. 44
3-5-3 模糊化多維矩形複合式神經網路 ............................................. 49
第四章、實驗結果 ................................................................................................ 56
4-1 白血球影像之切割誤差 ........................................................................ 56
4-2 特徵選取 ................................................................................................ 58
4-3 三種類神經網路和相關研究之比較結果 ............................................ 61
4-4 實驗總結 ................................................................................................ 63
第五章、結論與未來展望 .................................................................................... 65
5-1 結論 ........................................................................................................ 65
5-2 未來展望 ................................................................................................ 65
參考文獻 ................................................................................................................ 67
參考文獻 [1] 義守大學血液常規檢查表 [Online] Available:
www.isu.edu.tw/upload/04/7/files/dept_7_lv_2_3039.doc
May 16, 2011 [data accessed]
[2] 鐘來如、黃天賜,血液細胞圖譜: Human blood cell morphology, normal &
pathological,南山堂出版社,台北,民國七十四年。
[3] 國立中山大學生物科學系免疫學實驗 [Online] Available:
http://www2.nsysu.edu.tw/Bio/images/commen/immuex98.pdf Jul. 4, 2011
[data accessed]
[4] 何敏夫,血液學Hematology,合記圖書出版社,台北,民國九十七年。
[5] CellaVision Inc. [Online] Available:
http://www.cellavision.com/?id=4112 May 20, 2011 [data accessed]
[6] Medica Inc. [Online] Available:
http://www.medicacorp.com/Medica_Analyzers/EasyCell_Assistant.html
Jun. 20, 2011 [data accessed]
[7] Techniconin Inc. [Online] Available:
http://www.techniconinternational.com Jun. 20, 2011 [data accessed]
[8] Sysmex Inc. [Online] Available:
http://www.sysmex.com.cn/product_list.asp?p_id=17 May 20, 2011
[data accessed]
[9] Beckman Inc. [Online] Available:
http://www.gmi-inc.com/Beckman-Coulter-AcT-5-Diff-Hematology-Ana
lyzer.html May 29, 2011 [data accessed]
[10] 曼特諾醫療器械有限公司 [Online] Available:
http://big5.made-in-china.com/showroom/leng1229/product-detaila
ebEgKvTvApP/全自动血球分析仪(MTN-81).html May 29, 2011
[data accessed]
[11] I. T. Young, “The classification of white blood cells,” IEEE Trans. of
Biomedical Engineering, vol. BME-19, no. 4, pp. 291-298, 1972.
[12] H. Sheikh, B. Zhu, and E. M. Tzanakou, “Blood cell identification using
neural networks,” in IEEE Conference on Bioengineering, New Brunswick,
USA, Mar. 14-15, 1996.
[13] S. F. Bikher, A. M. Darwish, H. A. Tolba, and S. I. Shaheen, “Segmentation
and classification of white blood cells,” in IEEE International Conference on
acoustics, speech, and signal processing, vol. 4, pp. 2259-2261, Jun. 2000.
[14] V. Piuri and F. Scotti, “Morphological classification of blood leucocytes by
microscope images,” in IEEE Conference on Computational Intelligence for
Measurement System and Applications, Boston, USA, Jul. 14-16, 2004.
[15] P. Yampri, C. Pintavirooj, S. Daochai, and S. Teartulakarn, “White blood cell
classification based on the combination of eigen cell and parametric feature
detection,” in IEEE Conference on Industrial Electronics and Applications,
Singapore, May 24-26, 2006.
[16] N. T. Umpon and S. Dhompongsa, “Morphological granulometric features of
nucleus in automatic bone marrow white blood cell classification,” IEEE
Trans. of information technology in biomedicine, vol. 11, no. 3, pp. 353-359,
2007.
[17] S. Nilufar, N. Ray, and H. Zhang, “Automatic blood cell classification based
on joint histogram based feature and bhattacharya kernel,” in IEEE
Conference on Signals, Systems and Computers, pp. 1915-1918, Oct. 26-29,
2008.
[18] S. Osowski, R. Siroic, T. Markiewicz, and K. Siwek, “Application of support
vector machine and genetic algorithm for improved blood cell recognition,”
IEEE Trans. of instrumentation and measurement, vol. 58, no. 7,
pp. 2159-2168, 2009.
[19] S. H. Rezatofighi, K. Khaksari, and H. Soltanian-Zadeh, “Automatic
recognition of five types of white blood cells in peripheral blood,” in
Proc. of International Conference of image analysis and recognition, vol.
6112, pp. 161-172, 2010.
[20] P. R. Tabrizi, S. H. Rezatofighi, and M. J. Yazdanpanah, “Using PCA and
LVQ neural network for automatic recognition of five types of white
blood cells,” in IEEE Conference on Engineering in Medicine and Biology
Society, Argentina, Aug. 31-Sep. 4, 2010
[21] M. Ghosh, D. Das, S. Mandal, C. Chakraborty, M. Pal, A. K Maity, S. K. Pal,
and A. K. Ray, “Statistical pattern analysis of white blood cell nuclei
morphometry, ” in Proc. of Students’ Technology Symposium Conference,
pp. 59-66, IIT Kharagpur, India, Apr. 3-4, 2010.
[22] CellaVision Inc. [Online] Available:
http://www.cellavision.com/?id=3858 Jun. 10, 2011 [data accessed]
[23] 高材、林康平、林峰輝、陳家進,生物醫學工程導論,滄海書局,台中,
民國九十八年。
[24] R. C. Gonzalez and R. E. Woods, Digital Image Processing, 3rd Edition,
Pearson Education Inc. , New Jersey, 2008.
[25] J. T. Tou and R. C. Gonzalez, Pattern Recognition Principles, Addison
Wesley Publishing Company, Canada, 1974.
[26] 吳成柯、戴善榮、程湘君、雲立實,數位影像處理,儒林出版社,台北,
民國八十二年。
[27] D. C. Tseng, 影像處理. Class lecture, “Image Processing.” Department of
Computer Science and Information Engineering, National Central University,
Chungli, 2009.
[28] Y. M. M. Walpole,機率與統計-機率篇,呂振森 譯,東華書局,台北,
民國九十五年。
[29] T. Jabid, M. H. Kabir, and O. Chae, “Local directional pattern for face
recognition,” in IEEE Conference on Consumer Electronics, Las Vegas,
Jan. 9-13, 2010.
[30] T. Jabid, M. H. Kabir, and O. Chae, “Gender classification using local
directional pattern,” in International Conference on Pattern Recognition,
Istanbul, Turkey, Aug. 23-26, 2010.
[31] 蘇木春、張孝德,機器學習:類神經網路、模糊系統以及基因演算法
則,修訂三版,全華科技圖書公司,台北,民國九十三年。
[32] C. Cortes and V. Vapnik, “Support vector networks,” Machine Learning,
vol. 20, pp. 273-297, 1995.
[33] 彭偉誠,「使用模糊數學規劃改善支持向量機」,國立中央大學電機工程
研究所碩士論文,民國九十九年。
[34] 范聖恩,「以外形特徵為基礎之影像語言分類器-應用於破碎中文字合併」
,國立中央大學資訊工程研究所碩士論文,民國九十八年。
[35] M. C. Su, C. W. Liu, and S. S. Tsay, “Neural-network-based fuzzy model
and its application to transient stability prediction in power systems,”
IEEE Trans of Systems, Man, and Cybernetics, vol. 29, no. 1, pp. 149-157,
1999.
[36] 陳正倫,「類神經網路應用於語音情緒的分析與辨識」,國立中央大學資
訊工程研究所碩士論文,民國九十八年。
[37] M. C. Su, “Use of neural networks as medical diagnosis expert systems,”
Computers in Biology and Medicine, vol. 24, no. 6, pp. 419-429, 1994.
[38] 台灣大學資訊工程學系
http://www.csie.ntu.edu.tw/~cjlin/libsvm/ Jun. 10, 2011
[data accessed]
[39] 伍星翰,「線性加速度感測器的研究與其應用」,國立中央大學資訊工
程研究所碩士論文,民國一百年。
[40] S. H. Rezatofighi and H. Soltanian-Zadeh, “Automatic recognition of five
types of white blood cells in peripheral blood,” Computerized Medical
Imaging and Graphics, vol. 35, no. 4, pp. 333-343, Jun. 2011.
[41] 大同大學健康中心
http://b005.ttu.edu.tw/files/11-1002-77-1.php May 29, 2011
[data accessed]
指導教授 蘇木春(Mu-chun Su) 審核日期 2011-7-15
推文 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聯絡  - 隱私權政策聲明