厦门大学博硕士论文摘要库

Size: px
Start display at page:

Download "厦门大学博硕士论文摘要库"

Transcription

1

2

3

4 摘要 摘要 具有同心圆特征的物体在日常生活和工业生产中广泛存在, 通过检测同心 圆来定位及其识别物体可以大大提高生活与生产智能化水平, 节省人力和时间 成本 目前公开的同心圆检测研究成果相对较少, 已有可查文献中同心圆检测 主要是基于同心圆的特征点, 需要给出合适的约束条件, 有一定的局限性 因 此同心圆检测的研究有较强的实用价值和重要的研究意义 在总结前人成果基础上, 本文提出三种算法来改善同心圆检测的局限性 : 基于质心检测和直线 Hough 变换的同心圆检测算法 基于梯度 Hough 变换和二 次检测的同心圆检测算法以及基于梯度 Hough 变换和一维 Hough 变换的同心圆 检测算法 对以上三种算法进行研究与对比, 研究内容及创新点主要体现在以 下四个方面 : (1) 利用同心圆质心在圆心处的几何特征, 结合直线 Hough 变换提出一种 同心圆检测算法, 先分割出图像中的圆, 再定位同心圆 在圆分割方面, 提出 基于特征点邻域法 距离方差和归一化的两种图像分割方法 分析表明基于距 离方差和归一化的圆分割方法较基于形状角的方法效果更优 (2) 研究发现梯度 Hough 变换只能检测圆而不能检测同心圆, 本文提出通过多 次图像分割和圆检测来检测图像中的同心圆的算法 并提出用赋值法和画圆覆 盖两种方法来去掉当前检测到的圆, 仿真结果表明, 赋值法去圆效果更优 最 后将此算法成功应用到茶杯茶壶的检测中 (3) 结合梯度 Hough 变换和一维 Hough 变换, 提出一种同心圆检测算法 改进一维 Hough 变换, 通过合并相似半径提高半径检测的准确度 ; 在图像预处理过程中, 通过离散化图像和降低图像分辨率提高算法检测效率 (4) 对三种同心圆检测算法进行分析和比较 第三种算法是第二种算法的改进 理论分析和仿真结果表明, 第三种算法抗干扰性最好, 但检测效率不如第一种算法 最后将第三种算法与一种典型的基于弦中点 Hough 变换的同心圆检测算法相比较, 分析表明第三种算法检测效率更高, 抗干扰性更好 关键词 : 同心圆 ; 梯度 ; 质心 ; 二次检测 ;Hough 变换 I

5 Abstract Abstract The objects possess concentric circle features are widespread in our daily lives and industrial production, life and production intelligence will be greatly enhanced by detecting concentric circle to localize and recognize objects, it saves terms both in human cost and time cost. The publication on concentric circle detection is relatively not so much, the advanced achievements are mainly based on feature points on the concentric circles, certain proper constraints need to be given and is certain limited. Thereby, there are strong practical value and important research significance for further research about concentric circle detection. Referring to the advanced achievements in concentric circle detection, three approaches are proposed to improve the detection limitations: the approach based on centroid and straight line Hough transform the approach based on gradient Hough transform and second detection and the approach based on gradient Hough transform and one-dimensional Hough transform. A comparative study of the proposed approaches has been performed, the main contributions of this thesis are as follows. (1) The thesis proposes one concentric circle detection approach combining with the property of the circle centroid and the straight line Hough transform. First the circles are segmented, and then the concentric circles are located. In addition, the two methods about circle segmentation based on feature point neighborhood method and the distance variance and normalization method are proposed. Theory analysis shows that circle segmentation method based on distance variance and normalization outperforms the method based on shape angle. (2) One concentric circle approach which requires multiple image segmentation and circle detection is proposed based on the situation that gradient Hough transform can detect circles rather than concentric circles. What more, this thesis proposes evaluation method and picturing circles to cover the detected circles, simulation shows that the evaluation method performs better. The proposed approach is II

6 Abstract successfully applied to teapots and cups recognition at last. (3) Propose one concentric circle detection approach combining with the gradient Hough transform and one-dimensional Hough transform. For detection accuracy enhancement, one-dimensional Hough transform is improved by merging the detected similar radius together; A method by both image discretization and image resolution radio reduction is taken in image preprocessing process to simplify the computation. (4) The proposed three concentric circle approaches are analyzed and compared with each other. The third approach is modified based on the second approach. Theory analysis and experimental results give the demonstration that the third approach is the most robust while maintaining comparable execution times compared with the first approach. Finally, the third algorithm presents prior to execution efficiency and robustness compared with a kind of typical concentric detection method based on chord mid-point Hough transform. Keywords: Concentric circle; Gradient; Centroid; Second detection; Hough transform III

7 目录 目录 第一章绪论 问题的提出与研究意义 同心圆检测算法的研究现状 本文的主要研究内容和贡献...2 第二章图像处理预备知识 图像灰度化 图像去噪 中值滤波 高斯滤波 灰度图像形态学处理 图像分割 阈值分割法 边界分割法 区域生长法 图像差分法 图像边缘检测 Roberts 算子 Sobel 算子 Prewitt 算子 Laplacian 算子 Canny 算子 本章小结...21 第三章基于质心检测和直线 Hough 变换的同心圆检测算法 第一次图像分割 各连续曲线质心求取 第二次图像分割 圆心和半径求取 直线 Hough 变换原理 用直线 Hough 变换求圆心和半径 同心圆判断 本算法实现步骤和仿真结果 本章小结...32 第四章基于梯度 Hough 变换和二次检测的同心圆检测算法...33 IV

8 目录 4.1 Hough 圆检测原理 关于 OpenCV 中梯度 Hough 算法 图像边缘检测 梯度的一般定义 图像边缘与梯度的关系 边缘检测算法 本算法实现步骤 本算法仿真结果 本算法在茶杯茶壶识别中的应用 本章小结...43 第五章基于梯度 Hough 变换和一维 Hough 变换的同心圆检测算法 一维 Hough 变换原理 改进的一维 Hough 半径检测算法 本算法的实现步骤和仿真结果 实现步骤 仿真结果 本算法与基于弦中点 Hough 变换的同心圆检测方法的比较 本算法与基于质心和直线 Hough 变换同心圆检测算法比较 本章小结...51 第六章全文总结与展望 全文总结 研究工作展望...53 参考文献...55 攻读硕士期间发表的论文...58 致谢...59 V

9 Contents Contents Chapter I Introduction Motivation Literature Review Contribution...2 Chapter II Prelimilaries on Image Preprocessing Image Graying Image Denosing Median Filtering Gaussian Filtering Gray-Scale Image Morphology Processing Image Segmentation Thresh Segmentation Method Border Segmentation Method Region Growing Method Image Difference Method Image Edge Detection Roberts Sobel Prewitt Laplacian Canny Conclusion of the Chapter...21 Chapter III The Concentric Circle Detection Algorithm Based on Centroid and Straight Line Hough Transform First Time Image Segmentation Getting the Centroid of the Continuity Curves Second Time Image Segmentation Getting the Circle Center and Radius The Principle of Straight Line Hough Transform Getting the Circle Center and Radius By Straight Line Hough Transform Concentric Circle Judgment Implementation Steps and Experimental Results Conclusion of the Chapter...32 VI

10 Contents Chapter IV The Concentric Circle Detection Algorithm Based on Gradient Hough Transform and Second Detection The Principle of Circle Detection Hough Transform Gradient Hough Transform In OpenCV Image Edge Detection Definition of Gradient Relationship Between Image Edge and Gradient Algorithms of Edge Detection Implimentaion Steps Experimental Results Applycation On Recognition of Teapots and Cups Conclusion of the Chapter...43 Chapter V The Concentric Circle Detection Algorithm Based on Gradient Hough Transform and One-Dimensional Hough Transform Principle Of One-Dimensional Hough Transform Improved Algorithm of One-Dimensional Hough Transform Implementation Steps and Experimental Results Implementation Steps Experimental Results Comparison Between This Algorithm and the Algorithm Based On Chord Mid-point Hough Transform Comparison Between This Algorithm and the Algorithm Based On Centroid and Straight Line Hough Transform Conclusion of the Chapter...51 Chapter VI Conclusion and Future Work Summary Future Work...53 References...55 Paper Published During Master Study Period...58 Acknowledgements...59 VII

11

12 第一章绪论 第一章绪论 1.1 问题的提出与研究意义 不同类型的物体有不同的特征, 有形状特征 纹理特征 颜色特征等等, 机器视觉通过检测物体的某个特征来检测该物体 包含同心圆特征的物体在日 常生活与工业生产中大量存在, 如光环抑制活动的检测 [1] 相机的校准和标定 [2] 印刷电路板 (PCB) 圆孔光电图像中的同心圆的精确识别 [3] 打靶系统的同心圆环 识别 [4] 以及 PET 瓶口的在线检测 [5] 等等, 都需要应用到同心圆检测技术 另外 对于某些难以检测的物体, 可以通过在该物体上作同心圆标记, 然后利用同心 圆检测算法检测该物体, 从而大大提高物体检测的效率 目前对点 直线和圆的检测算法的研究相对比较成熟 有部分学者对同心 圆检测做了一些研究工作, 但到目前为止, 关于同心圆检测的公开发表的文献 相对比较少 随着机器视觉技术的发展 智能科技的进步以及自动化水平的提 高, 同心圆检测算法的研究对于机器视觉领域的发展显得越来越重要 通过检 测同心圆来定位及其识别物体可以大大提高生活与生产智能化水平, 节省人力 和时间成本 因此同心圆检测算法的研究具有重要的研究意义 1.2 同心圆检测算法的研究现状 1992 年,Hough 提出 Hough 变换 [6], 可以用来检测图像中的直线与圆, 后 续出现了很多圆检测改进算法, 主要从时间复杂度 准确性 抗干扰性等方面进行改进 但是目前国内外公开的文献中关于同心圆检测算法的研究比较少 [7][8], 从搜集的文献看, 主要是基于同心圆的特征点来检测同心圆 文献 [7] 就是在圆周上找到两个特征点, 两点间线段构成圆的弦, 根据以圆的弦为直径的所有的圆必相交于圆心的几何特征并结合 Hough 变换来求圆的圆心, 再对每个特征点到圆心的距离进行数量累积, 累加值超过给定阈值的半径为该圆心对应的半径 该算法检测同心圆时, 需要寻找同一个圆周上的两个特征点, 再求以这两个点连线为直径构成的圆的交点来找圆心, 而文献中并没有描述如何寻找 1

13 三种基于 Hough 变换的同心圆检测算法研究 同一个圆周上的两个特征点 另外当图像中圆较多或者干扰物较多时, 该算法的时间复杂度会随之增大, 抗干扰性也会随之减弱 文献 [8][9] 也是根据同心圆的特征点来进行检测, 通过先找到同一个圆周上的三个不同点, 再根据三个点的坐标来求圆的一般方程的参数, 从而定位各个同心圆的圆环, 最后再对同心圆进行判断 文献 [9] 中算法是文献 [8] 算法的改进, 不同之处在于文献 [8] 通过在 水平和垂直方向变换检测角度来找同一圆周上三个不同的特征点, 而文献 [9] 通 过设定一个约束条件来分别找内 外两个圆环上的三个不同特征点 文献 [10] 中先根据区域划分法来划分出同心圆中不同圆环所在区域, 再根据不同区域各个圆上特征点的坐标来求这些圆环的圆心和半径 这种算法需要预知圆心的位置, 再利用最小二乘拟合方法求得同心圆的每个圆环 综合这些文献来看, 基于特征点的同心圆检测算法需要给出合适的约束条件, 有一定的局限性, 对于干扰点较多 同心圆相交 圆出现缺口的情况算法的抗干扰性较差, 这样就对图像预处理的要求较高, 算法的复杂度也随之加大 因此本文提出三种同心圆检测算法, 在算法局限性上有所改善 1.3 本文的主要研究内容和贡献本论文主要对 Hough 变换进行了研究学习, 同时探讨并总结了前人关于同心圆的研究成果 在前人成果基础上提出三种同心圆检测算法, 并针对时间复杂度以及抗干扰性进行研究和比较 本文的创新点主要包括以下几部分 : (1) 在总结前人成果基础上, 提出三种新的同心圆检测算法, 这三种算法 相对于以往基于特征点的同心圆检测方法, 在一定程度上改善了同心圆检测的局限性 (2) 在三种同心圆检测算法中, 提出几种图像分割方法 其中包括, 提出邻域分割法 距离方差和归一化两种方法对圆进行分割 ; 提出赋值法和画圆覆盖法两种去圆的方法覆盖检测到的圆 改进一维 Hough 半径检测算法, 合并累加值超过指定阈值的相似半径, 提高半径检测的准确度 (3) 从理论上证明形状角与图形的大小有关, 将本文中基于距离方差和归一化方法的圆分割方法与一种基于形状角的分割法进行比较 分析表明, 基于 2

14 第一章绪论 距离方差和归一化方法进行圆分割效果更优 ; 在图像预处理过程中, 通过图像离散化和降低图像分辨率来提高检测效率 本文主要内容安排如下 : 第一章绪论, 阐述论文的研究背景和课题意义, 介绍目前公开发表的几种主要的同心圆检测算法, 并简要概括本文的主要内容 第二章, 阐述图像处理以及图像识别的基础理论知识, 包括图像的灰度化 图像分割 边缘检测等, 为后续同心圆检测算法实现和应用奠定理论基础 第三章, 提出同心圆检测算法的新思路, 即先分割出图像中的圆, 再在此 基础上判断和定位同心圆, 详细阐述本文提出的第一种同心圆检测算法的设计 流程并完成仿真 本算法结合圆的质心在圆心处的几何特征和一维 Hough 变换 原理进行同心圆检测, 提出使用特征点邻域法完成连续曲线分割和使用距离方 差和归一化方法完成圆分割, 并理论证明结合以上两种分割方法进行圆分割优 于一种基于形状角的分割方法 第四章, 详细阐述本文提出的第二种同心圆检测算法的设计并完成仿真, 在梯度 Hough 变换只能检测圆而无法检测同心圆情况下, 将梯度 Hough 变换应 用到同心圆检测中, 提出通过二次检测实现同心圆检测 二次检测过程中, 提 出赋值法和画圆覆盖法两种去圆分割方法, 通过仿真发现, 赋值法效果更优 最后实现此同心圆检测算法在茶杯茶壶识别中的应用 第五章, 详细阐述本文提出的第三种同心圆检测算法的设计并完成仿真, 是第二种算法的改进算法, 分析和仿真表明本算法相比于第二种算法提高了检 测效率 半径检测过程中合并相似半径提高半径检测准确度 最后将本算法与 第一种算法以及一种基于弦中点的 Hough 变换算法分别进分析比较, 分析结果 表明本算法抗干扰性最好, 检测效率略差于第一种算法 第六章, 总结本文的研究工作, 并对后续的研究工作作出展望 3

15 第二章图像处理预备知识 第二章图像处理预备知识 2.1 图像灰度化 用计算机进行数字图像处理的目的是为了产生更适合人类视觉观察和识别 的图像以及让计算机能够自动识别和理解的图像, 是图像分析的前期步骤 [11] 图像处理是将图像包含的信息转化为数值信息来处理 将彩色图像转化为灰度图像的过程称为图像的灰度化处理 自然界中所有 的颜色都是由三原色红 (R) 绿 (G) 蓝 (B) 按照不同的比例混合而成, 称为三原 色理论 [12] 彩色图像中每个像素的颜色由红 (R) 绿 (G) 蓝 (B) 三个分量来决定, 每个分量有 255 种取值, 这样一个像素点就有 多万种颜色 变换范围, 如常见的组合有 : 红 (255,0,0) 绿 (0,255,0) 蓝 (0,0,255) 白 (255,255,255) 而灰度图像是红 (R) 绿 (G) 蓝 (B) 三个分量相同的一种特殊的 彩色图像, 其中一个像素点的变换范围为 255 种 所以为了减少图像的计算量, 一般先将各种格式的图像转变为灰度图像 灰度图像是只含亮度信息不含色彩 信息的图像, 可以用三种方法来求图像的灰度 [13] : (1) 最大值法 : 取 R G B 三个分量的取值的最大值, 如式 2.1 所示. 这样产生的结果会产生亮度较高的灰度图 Gray max( R, G, B) (2.1) (2) 平均值法 : 即求 R G B 的平均值, 如式 2.2 所示 Gray ( R G B)/3 (2.2) (3) 加权平均值法 : 根据重要性赋予 R G B 不同的权值, 并相加 如式 2.3 所示 其中, w r w g w b Gray wrr wgg wbb (2.3) 分别是 R G B 的权值 人眼对绿色的敏感度最高, 对红色的敏感度次之, 对蓝色敏感度最低, 因 此, w g w r w b 我们取经典的参数值, 即 wr 0.30 wg 0.59 wb 0.11, 4

16 三种基于 Hough 变换的同心圆检测算法研究 即 Gray 0.3R 0.59G 0.11B (2.4) 本文所研究的算法都是在灰度图上进行的, 对图像灰度化如图 图像去噪 (a) 原图 图 2.1 对图像进行灰度化处理示意图 (b) 灰度图 图像信息的采集过程中往往会受到各种噪声的干扰, 这些噪声在图像上常 常表现为一些孤立像素点, 可理解为像素的灰度是空间相关的, 即噪声点像素 灰度与它们的领近像素有着显著不同 通常, 一般图像处理会带有后续处理过 程中所不希望夹带的孤立像素点, 这种干扰点会影响后续图像的分割和分析判 断, 所以图像在后续分析判断某些特征之前, 要先进行去噪处理 中值滤波 对受到噪声干扰的图像可以采用线性滤波的方法来处理, 但是很多线性滤波有低通性, 在去噪的同时也使得边缘模糊了, 中值滤波在某些情况下可以做到既去除噪声又保护图像的边缘, 它是一种非线性的去除噪声的方法 中值滤波的原理是将一个含有奇数个点的模板窗口的中心与待处理的像素点重合, 读取模板下各对应像素点的灰度值, 再将这些灰度值从小到大进行排序, 将这些灰度值中值来代替模板中心像素点的灰度值 令模板窗口含 n( 奇数 ) 个点, 窗口所覆盖区域特征点灰度值分别为 Gray, Gray ( x, y ),. Gray ( x, y ) 则模板窗口中心覆盖的特征点灰度值为 ( x1, y1 ) 1 2 n n 5

17 Degree papers are in the Xiamen University Electronic Theses and Dissertations Database. Full texts are available in the following ways: 1. If your library is a CALIS member libraries, please log on and submit requests online, or consult the interlibrary loan department in your library. 2. For users of non-calis member libraries, please mail to etd@xmu.edu.cn for delivery details.

5 5 7 5 4 4 6 9 8 40

5 5 7 5 4 4 6 9 8 40 5 5 7 5 4 4 6 9 8 40 4 5 0 959 68 959 55 959 4 957 4 5 998 4 9 959 98 8 980 8 84 4 987 4 5 6 7 8 9 986 998 989 4 977 8 5 988 6 985 8 7 98 990 5 8 998 4 9 987 4 5 4 96 9 959 8 959 4 986 4 5 5 8 96 4 5

More information

Degree papers are in the Xiamen University Electronic Theses and Dissertations Database. Full texts are available in the following ways: 1. If your library is a CALIS member libraries, please log on http://etd.calis.edu.cn/

More information

2

2 1999 4 2 3 4 5 6 7 8 9 10 11 1 2 1999 1 5 1998 7 2 3 97 7 37 12 4 5 1998 8 13 14 5 1997 10 15 6 27 36 16 Degree papers are in the Xiamen University Electronic Theses and Dissertations Database. Full texts

More information

1 2.1 2.2 3.2 3.3 2 3 2.1 2.2 4 5 6 7 8 9 10 11 12 13 14 15 16 Degree papers are in the Xiamen University Electronic Theses and Dissertations Database. Full texts are available in the following ways: 1.

More information

1 1 2 1 2 1 2 3 1 2 3 2 3 1 355 110 403 62 1979 1998 17 1979 2 1996 70 10 4000 200 332 17 80 3000 1.7 1% 300 4 1998 60% 3.4% 0.9 3.6 40.8 37.4 17.3 0.3 4.4 42.6 36.0 16.7 7.1 3.6 67.9 10.7 10.7 3.2 65.6

More information

-2-

-2- -1-20 -2- -3- -4- -5- -6- -7- -8- -9- -10- -11- -12- -13- -14- -15- -16- Degree papers are in the Xiamen University Electronic Theses and Dissertations Database. Full texts are available in the following

More information

10384 9707005 UDC 1 1 5 5 5 6 7 10 10 10 12 13 16 16 17 18 19 21 21 23 24 27 27 27 28 28 29 29 31 32 1789 1846 1857 1859 46 173 34 35 28 442 5 319 88 87 46 211 2 82 46 219 1862 1945 Degree papers

More information

2

2 10384 -------- 9601008 UDC---------------------- 1999 1999 1999 ------------------------ ------------------------ 1 2 .4...4 7 14.14..18..22..22..24 3 4.27.32.39 1 2 3 4 5 6 7 8 9 10 11 5 12 6 1 2 3 4

More information

1990-1997 1980-1997 Abstract The relationship between human resource development and economy increase has been an important research item with the coming of knowledge economy. In this paper, ahead item

More information

10384 9715101 UDC MBA 2000 5 2000 6 2000 2000 1995 10 26 1995 1995 10 1999 7 1 1986 SEC, Securities Exchange Committee 20 7 1996 1998 1998 1 2 3 1999 4 1 1 3000 2 3 1997 5 Degree papers are in

More information

10384 1 X9915063 UDC The Brand Marketing of Real Estate MBA 2002 8 2002 9 2002 2002 8 1 1 2...1...4...4...4...4...5...6...6...6...6...7...9...9...9...10...10...11...11...12...12...14...14 1 3...16...16...17...18...18...18...19...20...20...22...23...23...24...25...26...27...28...28...30...32...32...32...33...34...34

More information

UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 厦门大学博硕士论文摘要库

UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 厦门大学博硕士论文摘要库 10384 15620071151397 UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 2010 4 Duffee 1999 AAA Vasicek RMSE RMSE Abstract In order to investigate whether adding macro factors

More information

A Study on Grading and Sequencing of Senses of Grade-A Polysemous Adjectives in A Syllabus of Graded Vocabulary for Chinese Proficiency 2002 I II Abstract ublished in 1992, A Syllabus of Graded Vocabulary

More information

Supply Chain SCM IBM DRP

Supply Chain SCM IBM DRP 10384 9915114 UDC 2001 9 Supply Chain SCM IBM 21 1996 DRP Keywords Xiamen Overseas Chinese Electronic Co., Ltd Chinese Color TV Enterprise Transaction Cost the Management of Production, Marketing and Inventory

More information

50 2

50 2 Frost & Sullivan 2006 65% 1 50 2 IDCITUMII1990 1999 10%, 49.2% 1-1 1-1 3 4 2005 GSM 3 2006 3G 2008 GSM GPRSCDMA 5 6 7 8 Frost & Sullivan 2006 65% 9 Email Ovum 2005 19.7% 164 10 11 12 13 14 Jupiter Media

More information

IPOs ... 1... 3...3...6... 8... 10... 12... 14...15... 15... 15... 16...16... 20...20...22... 24...24... 24... 25... 27 BP...28 RBF...31 MATLAB... 34 MATLAB...34 MATLAB... 34... 34... 35 MATLAB...36...

More information

:

: Thesis on Court Banquet and Assemblage Poetry in Early Tang : I Abstract Abstract In the background of three different stages early Tang: Taizong GaozongWuhou and Zhongzong,this thesis mainly analyzes

More information

() MONORCHIIDAE SP

() MONORCHIIDAE SP 10384 B953404 UDC Monorchiidae sp ...2...3...5... 5... 5...8... 8....8....8 ()....12... 13....13....24...36.... 38....38....40...44 MONORCHIIDAE SP.... 47....47...49....50...51...53...57...58...61 1 2

More information

2

2 10384 K9607315 U D C 1999 1999 1999 1999 3 2 30 1957 1953 1953 1958 1978 1955 1956 1979 60 1980 BG(! BHDFG3 FK3 K6 K2 K12 K3 K7F BHDG3 FK3 K20ZQ K3 K7F BHDG21 CD#4 CD#4 CD#12 BHDG5 FK33ZQF SQ*2 JY(Z

More information

10384 19020101152519 UDC Rayleigh Quasi-Rayleigh Method for computing eigenvalues of symmetric tensors 2 0 1 3 2 0 1 3 2 0 1 3 2013 , 1. 2. [4], [27].,. [6] E- ; [7], Z-. [15]. Ramara G. kolda [1, 2],

More information

XML SOAP DOM B2B B/S B2B B2B XML SOAP

XML SOAP DOM B2B B/S B2B B2B XML SOAP 10384 9831010 U D C B2B 2 0 0 1 4 2 0 0 1 5 2 0 0 1 2001 4 XML SOAP DOM B2B B/S B2B B2B XML SOAP ABSTRACT Based on the research of Supply Chain Management theory and E-Commerce theory, especially in Business

More information

10384 X9908009 UDC Study On Causation Of Civil Tort Liability 2004 4 2004 2004 2004 4 [M] 1991476 [M] 1996635 ABSTRACT ABSTRACT Theory of causation, which is the most complicated and thorny of tort law,

More information

10384 200115009 UDC Management Buy-outs MBO MBO MBO 2002 MBO MBO MBO MBO 000527 MBO MBO MBO MBO MBO MBO MBO MBO MBO MBO MBO Q MBO MBO MBO Abstract Its related empirical study demonstrates a remarkable

More information

1

1 10384 9915009 UCD RESEARCH STAFF CAREER MANAGEMENT IN STATE-OWNED COMMERCIAL BANKS 1 Abstract The reasonable disposition of human resources is the guarantee of the long prosperity of enterprise. To carry

More information

厦 门 大 学 学 位 论 文 原 创 性 声 明 本 人 呈 交 的 学 位 论 文 是 本 人 在 导 师 指 导 下, 独 立 完 成 的 研 究 成 果 本 人 在 论 文 写 作 中 参 考 其 他 个 人 或 集 体 已 经 发 表 的 研 究 成 果, 均 在 文 中 以 适 当 方

厦 门 大 学 学 位 论 文 原 创 性 声 明 本 人 呈 交 的 学 位 论 文 是 本 人 在 导 师 指 导 下, 独 立 完 成 的 研 究 成 果 本 人 在 论 文 写 作 中 参 考 其 他 个 人 或 集 体 已 经 发 表 的 研 究 成 果, 均 在 文 中 以 适 当 方 学 校 编 码 :10384 分 类 号 密 级 学 号 : UDC 硕 士 学 位 论 文 浙 江 省 人 事 考 试 突 发 事 件 应 对 策 略 探 析 An Exploration of Zhejiang Province Personnel Examination Emergency Strategy 姜 海 峰 指 导 教 师 姓 名 : 王 玉 琼 教 授 专 业 名 称 : 公 共

More information

UDC The Policy Risk and Prevention in Chinese Securities Market

UDC The Policy Risk and Prevention in Chinese Securities Market 10384 200106013 UDC The Policy Risk and Prevention in Chinese Securities Market 2004 5 2004 2004 2004 5 : Abstract Many scholars have discussed the question about the influence of the policy on Chinese

More information

1

1 10384 9832009 UDC 2001 6 1 2...3....3....3...5...5...6...9...9...12...15...15...18...38...42...43...46 3.. 7 2000 4 10 2000 8 www.wisecast.com 2000 12 22 4 5 1993 7 1 25% 1996 20 1997 67 1998 210 1999

More information

.1..2....2 2. 2.. 3..5 7.7.8..11 11..12...14 19...19 20 20 26.29 36 40...41 90 98 4 21 Network selling (Multilevel Marketing),, 1950 1 1 2 3 LeeMythnger WillianCasselberry 1959 60 60 200 60 1972 40 80%

More information

% 6.7% % % / 1

% 6.7% % % / 1 1 1995 1995 50% 70 75% 1996 1996 9 30 5000 2000 1996 1999 1998 11 9 1999 5 9 5 1998 10 1999 30 200 2 1950 38 1999 2960 1950 40 1999 3585 1950 0.73 1999 28.3 20 12.1% 6.7% 1 1 2 1950 1978 1950 38 1978 466

More information

WTO

WTO 10384 X0115018 UDC MBA 2004 5 14 2004 6 1 WTO 2004 2006 7 2 Abstract According to the promise after our country enter into WTO, our country will open the readymade oil retail market in the end of 2004

More information

Roderick M.Chisholm on Justification I Synopsis Synopsis Since the problem of Gettier, the problem of justification has become the core of contemporary western epistemology. The author tries to clarify

More information

2000.11 2000.11 2000 11 Abstract: Background: The development of autoantibodies in the sera of patients with cancers has been described, but the mechanism is still not clear. Objective: The aim of this

More information

1998 5

1998 5 10384 9511001 1998 5 1998 6 1998 1998 5 AICPA Internet/Intranet Internet/Intranet 1 2 2 2 4 6 10 10 10 12 13 13 14 18 18 18 19 19 20 Internet/Intranet 20 Internet/Intranet 23 21 25 28 28 28 30 32 32 32

More information

Abstract The adult higher education is a vital part of the higher education. As an essential tache of selecting qualified students, the adult college entrance examination plays an important role in securing

More information

10384 199928010 UDC 2002 4 2002 6 2002 2002 4 DICOM DICOM 1. 2. 3. Canny 4. 5. DICOM DICOM DICOM DICOM I Abstract Eyes are very important to our lives. Biologic parameters of anterior segment are criterions

More information

10384 X0015101 UDC The Preliminary Survey of the Development Patterns of Security Analysts in China (MBA) 2004 2 2004 3 2004 3 2 0 0 4 2 14 Abstract Abstract The security analysts are respectable oversea,

More information

厦 门 大 学 学 位 论 文 原 创 性 声 明 本 人 呈 交 的 学 位 论 文 是 本 人 在 导 师 指 导 下, 独 立 完 成 的 研 究 成 果 本 人 在 论 文 写 作 中 参 考 其 他 个 人 或 集 体 已 经 发 表 的 研 究 成 果, 均 在 文 中 以 适 当 方

厦 门 大 学 学 位 论 文 原 创 性 声 明 本 人 呈 交 的 学 位 论 文 是 本 人 在 导 师 指 导 下, 独 立 完 成 的 研 究 成 果 本 人 在 论 文 写 作 中 参 考 其 他 个 人 或 集 体 已 经 发 表 的 研 究 成 果, 均 在 文 中 以 适 当 方 学 校 编 码 :10384 学 号 :17820121151192 硕 士 学 位 论 文 携 程 与 艺 龙 竞 争 战 略 的 财 务 比 较 分 析 Financial Analysis on Different Competitive Strategies of Ctrip and Elong 郑 亮 指 导 教 师 : 黄 海 玉 专 业 名 称 : 旅 游 管 理 硕 士 答 辩 日

More information

Abstract After over ten years development, Chinese securities market has experienced from nothing to something, from small to large and the course of

Abstract After over ten years development, Chinese securities market has experienced from nothing to something, from small to large and the course of 2003 MBA 600795 SWOT Abstract After over ten years development, Chinese securities market has experienced from nothing to something, from small to large and the course of being standardized. To all securities

More information

Abstract There arouses a fever pursuing the position of being a civil servant in China recently and the phenomenon of thousands of people running to a

Abstract There arouses a fever pursuing the position of being a civil servant in China recently and the phenomenon of thousands of people running to a Abstract There arouses a fever pursuing the position of being a civil servant in China recently and the phenomenon of thousands of people running to attend the entrance examination of civil servant is

More information

THE APPLICATION OF ISOTOPE RATIO ANALYSIS BY INDUCTIVELY COUPLED PLASMA MASS SPECTROMETER A Dissertation Presented By Chaoyong YANG Supervisor: Prof.D

THE APPLICATION OF ISOTOPE RATIO ANALYSIS BY INDUCTIVELY COUPLED PLASMA MASS SPECTROMETER A Dissertation Presented By Chaoyong YANG Supervisor: Prof.D 10384 070302 9825042 UDC 2001.6. 2001.7. 20016 THE APPLICATION OF ISOTOPE RATIO ANALYSIS BY INDUCTIVELY COUPLED PLASMA MASS SPECTROMETER A Dissertation Presented By Chaoyong YANG Supervisor: Prof.Dr. Xiaoru

More information

:

: A Study of Huangtao : I Abstract Abstract This text focuses on the special contribution of Huangtao in the history of literature and culture of Fukien, by analyzing the features of Huangtao s thought,

More information

WTO OEM

WTO OEM 10384 200115142 UDC A Study on the Developing Strategy of Xiamen Evere Sports Goods Co., Ltd. A Case Study based on the Theory of Value Chain (MBA) 2005 5 2005 6 2005 5 2005 5 WTO OEM Abstract Abstract

More information

Abstract Since 1980 s, the Coca-Cola came into China and developed rapidly. From 1985 to now, the numbers of bottlers has increased from 3 to 23, and

Abstract Since 1980 s, the Coca-Cola came into China and developed rapidly. From 1985 to now, the numbers of bottlers has increased from 3 to 23, and Abstract Since 1980 s, the Coca-Cola came into China and developed rapidly. From 1985 to now, the numbers of bottlers has increased from 3 to 23, and increases ulteriorly. When the Coca-Cola company came

More information

学 校 编 码 :10384 分 类 号 密 级 学 号 :X2007155130 UDC 厦 门 怡 福 养 生 健 康 管 理 有 限 公 司 创 业 计 划 王 韬 指 导 教 师 姓 名 : 郭 霖 教 授 厦 门 大 学 硕 士 学 位 论 文 厦 门 怡 福 养 生 健 康 管 理 有 限 公 司 创 业 计 划 A Business Plan for Xiamen Eve Health

More information

10384 X0115071 UDC The Research For The Actuality And Development Stratagem Of The China Securities Investment Fund (MBA) 2003 11 2003 12 2003 12 2 0 0 3 11 100 1991, WTO Abstract Abstract The Securities

More information

10384 9917001 UDC 2002 2002 2002 2002 5 Research on Martin Trow s Ideological Theory of Higher Education Massification ABSTRACT The present paper is divided into five chapters. The first chapter is an

More information

X UDC A Post-Evaluation Research on SINOPEC Refinery Reconstruction and Expanding Project MBA 厦门大学博硕士论文摘要库

X UDC A Post-Evaluation Research on SINOPEC Refinery Reconstruction and Expanding Project MBA 厦门大学博硕士论文摘要库 2003 2 10384 X9915078 UDC A Post-Evaluation Research on SINOPEC Refinery Reconstruction and Expanding Project MBA 2003 2 2003 3 2003 200 / Abstract Post-evaluation is a comprehensive evaluation on an implemented

More information

UDC Hainan Airlines Investment Valuation Analysis (MBA) 厦门大学博硕士论文摘要库

UDC Hainan Airlines Investment Valuation Analysis (MBA) 厦门大学博硕士论文摘要库 10384 200015140 UDC Hainan Airlines Investment Valuation Analysis (MBA) 2003 3 2003 3 2003 9 2 0 0 3 3 1993 A B 8 1000 100 2002 10 11 501 473 560 85% 1999 2001 SWOT EBO Abstract Hainan Airlines, as the

More information

10384 X2009230010 UDC The Design and Implementation of Small and Medium-sized Courier Company Logistics Vehicle Scheduling System 2012 06 Abstract With the arrival of the information age, tremendous

More information

I

I The Discussion on Manchu-City of Foochow in Qing Dynasty I Abstract II Abstract This thesis aims to, from the research on the Eight-Banner garrison in Foochow, explore the living situation of the banner-people

More information

WTO

WTO 10384 200015128 UDC Exploration on Design of CIB s Human Resources System in the New Stage (MBA) 2004 2004 2 3 2004 3 2 0 0 4 2 WTO Abstract Abstract With the rapid development of the high and new technique

More information

10384 200008009 UDC 2003 11 2003 2003 2003 11 1 3 3 3 4 4 4 4 5 6 6 7 7 10 10 10 11 11 17 23 23 24 25 28 29 31 33 33 36 39 41 42 42 42 42 43 44 45 45 45 46 47 47 47 50 52 54 57 58 59 60 appeal on public

More information

Abstract Today, the structures of domestic bus industry have been changed greatly. Many manufacturers enter into the field because of its lower thresh

Abstract Today, the structures of domestic bus industry have been changed greatly. Many manufacturers enter into the field because of its lower thresh SWOT 5 Abstract Today, the structures of domestic bus industry have been changed greatly. Many manufacturers enter into the field because of its lower threshold. All of these lead to aggravate drastically

More information

ABSTRACT ABSTRACT Based on analyzing public corporation in foreign countries, this paper studies basic theories of public legal establishment, with our country s reality in the social transferring period

More information

10384 27720071152270 UDC SHIBOR - Research on Dynamics of Short-term Shibor via Parametric and Nonparametric Models 2 0 1 0 0 5 2 0 1 0 0 5 2 0 1 0 0 5 2010 , 1. 2. Shibor 2006 10 8 2007 1 4 Shibor

More information

ABSTRACT ABSTRACT As we know the Sinology has a long history. As earily as 19 th century some works have already been done in this field. And among this the studies of lineages and folk beliefs in Southeast

More information

10384 X0115019 UDC (MBA) 2004 5 2004 6 2004 XTC An Research on Internationalization Strategy of XTC , XTC XTC XTC APT XTC XTC XTC XTC XTC XTC : Abstract Abstract Although it s well known that China s

More information

Lotus Notes Design and Implementation of Sales Process Management System Based on Lotus Notes 施莹艳 指导教师姓名 : 林林林林坤坤坤坤辉辉辉辉 教授 专 业 名 称 : 软软软软件件件件工工工工程程程程 论论论论文文文文提提提提交交交交日日日日期期期期 : 年 论论论论文文文文答答答答辩辩辩辩时时时时间间间间

More information

( ) ( ) ATPase 1 ATPase ATPase 30 20 30 2 ATPase -. 3 MDA O 2 30 20 30 MDA 40 SOD MDA 0-10 0-30 10 3 0 SOD 0-10 10 4 NaCl 0-10 0-20 MDA Comparative Studies on Plasma Membrane Function of Salt-secreting

More information

UDC The Design and Implementation of a Specialized Search Engine Based on Robot Technology 厦门大学博硕士论文摘要库

UDC The Design and Implementation of a Specialized Search Engine Based on Robot Technology 厦门大学博硕士论文摘要库 10384 200128011 UDC The Design and Implementation of a Specialized Search Engine Based on Robot Technology 2004 5 2004 2004 2004 5 World Wide Web Robot Web / (Focused Crawling) Web Meta data Web Web I

More information

國家圖書館典藏電子全文

國家圖書館典藏電子全文 i ii Abstract The most important task in human resource management is to encourage and help employees to develop their potential so that they can fully contribute to the organization s goals. The main

More information

10384 9702001 UDC 2000 5 2000 6 2000 2000 5 1 .1 1 2 3. 4 4 4.5.6 6 1..7 2..7. 8 8 1..8 1..8 2 10 2 11..12 1 12 1 12 2 12 2 12 1 12 2 13 3 13 4 14 3 14 4 14..16..17..19..20..21 2 3 1 20 1921 1926 1928

More information

厦门大学博硕士论文摘要库

厦门大学博硕士论文摘要库 GSM The Design of Tri-frequencies Microstrip Antenna for GSM (900/1800/1900-MHz) 2005 5 GSM GSM GSM900 GSM1800 GSM1900 GSM GSM GSM900 GSM1800 GSM1800 GSM1900 GSM 900M 1800M H H E H GSM 120 GSM1800 GSM1900

More information

SWOT Abstract Abstract Fuzhou Water & Wastewater Engineering Design Institute is an affiliate project prospecting and designing unit under Fuzhou Water Supply General Company. It engages mainly in the

More information

- 2 - Russell Thaler 2 1 2 unexpected dramatic P t =P t-1 + P t t P t-1 t-1 2 T.Russell and R.Thaler, The Relevance of Quasi-Rationality in Competitiv

- 2 - Russell Thaler 2 1 2 unexpected dramatic P t =P t-1 + P t t P t-1 t-1 2 T.Russell and R.Thaler, The Relevance of Quasi-Rationality in Competitiv - 1-1 Bayes 1 1 A B P AB =P A *P B - 2 - Russell Thaler 2 1 2 unexpected dramatic P t =P t-1 + P t t P t-1 t-1 2 T.Russell and R.Thaler, The Relevance of Quasi-Rationality in Competitive Markets. American

More information

WTO WTO ATM POS 4 CRM 2

WTO WTO ATM POS 4 CRM 2 Carl W.Buechner 2002 9 + CRM CRM 1 CRM Hans Peter Brondmo 2002 2 CEO 1 2 Hans Peter Brondmo 2002 1 WTO WTO 1 1000 2 3 ATM POS 4 CRM 2 1 2 3 4 Thibaut & Kelley Rusbult Polanyi Thibaut & Kelley 1959 Rusbult,1980

More information

UDC 厦门大学博硕士论文摘要库

UDC 厦门大学博硕士论文摘要库 10384 9924012 UDC 2002 5 2002 2002 2002 5 1 Study on High Speed Switch System and Their ASIC Frontend Design Thesis for MS By Shuicheng Cai Supervisor: Prof. Donghui Guo Department of Physics Xiamen Unviersity

More information

- 2 -

- 2 - 2002 11 10384 9915064 UDC Money Trapping By the Listed Companies and Its Prevention MBA 2002 11 2002 12 2002 - 2 - Abstract In the first place, this paper defines the conduct of some listed companies which

More information

南華大學數位論文

南華大學數位論文 南 華 大 學 ( 文 學 所 ) 碩 士 論 文 論 文 題 目 ( 陳 千 武 小 說 活 著 回 來 及 其 相 關 事 例 研 究 ) 論 文 題 目 (Chen Chien Wu Return Alive And Some Research About It) 研 究 生 : 朱 妍 淩 指 導 教 授 : 林 葉 連 中 華 民 國 一 0 一 年 6 月 8 日 陳 千 武 小 說

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF I II III The Study of Factors to the Failure or Success of Applying to Holding International Sport Games Abstract For years, holding international sport games has been Taiwan s goal and we are on the way

More information

...12...12...13...18...18...24 MSCI...27 FTSE...29...33...36................................................... 1 ...........................39...39...42...45...54.............................................

More information

2002 II

2002 II 10384 B9901001 UDC A Grammatical Study Of Wanrong Dialect 2OO2 I 2002 II III Abstract The thesis is intended to make a more systematic study of the grammar on Wanrong dialect, which is distributed in the

More information

曹 文 轩 小 说 中 的 空 间 叙 事 研 究 A STUDY OF SPATIAL NARRATIVE IN CAO WEN XUAN S NOVELS By 陈 诗 蓉 TAN SIH YONG 本 论 文 乃 获 取 文 学 硕 士 学 位 ( 中 文 系 ) 的 部 分 条 件 A di

曹 文 轩 小 说 中 的 空 间 叙 事 研 究 A STUDY OF SPATIAL NARRATIVE IN CAO WEN XUAN S NOVELS By 陈 诗 蓉 TAN SIH YONG 本 论 文 乃 获 取 文 学 硕 士 学 位 ( 中 文 系 ) 的 部 分 条 件 A di 曹 文 轩 小 说 中 的 空 间 叙 事 研 究 A STUDY OF SPATIAL NARRATIVE IN CAO WEN XUAN S NOVELS 陈 诗 蓉 TAN SIH YONG MASTER OF ARTS (CHINESE STUDIES) 拉 曼 大 学 中 华 研 究 院 INSTITUTE OF CHINESE STUDIES UNIVERSITI TUNKU ABDUL

More information

100Mbps 100Mbps 1000Mbps 100Mbps 1000Mbps 100Mbps 100Mbps PD LXT Mbps 100Mbps 100Mbps 1

100Mbps 100Mbps 1000Mbps 100Mbps 1000Mbps 100Mbps 100Mbps PD LXT Mbps 100Mbps 100Mbps 1 1 3 6 6 7 100BASE-FX 10 100Mbps 13 13 21143-PD 14 LXT970 20 Serial ROM 24 Boot ROM 24 Agilent 25 100Mbps 27 27 37 100Mbps 45 50 54 55 100Mbps 100Mbps 1000Mbps 100Mbps 1000Mbps 100Mbps 100Mbps 21143-PD

More information

Origination And Filmization: Research Of Relation Between The Modern Chinese Movie And literature 2005 7 21 I II Abstract Movie has been knotted with literature tightly since the day of naissance. The

More information

UDC Design and Application of Intrusion Detection System Based on Snort 2009 12 Snort Snort Apriori Snort Apriori Microsoft Visual Studio 2008 C# Snort Snort Snort Snort Snort Apriori Snort Snort Apriori

More information

µ γ α γ α µ α µ γ Ig/Ig-TCIC 1 immune immunity immunis 10 998~1022 19 Edward Jenner Jenner Louis Pasteur 1880 Elie I.I. Metchnikoff (1883), P.P.Emile Roux A.E.J.Yersin (1888) Emil A. Von Behring Pfeiffer

More information

Research for RS encoding and decoding technology in the Digital Television Terrestrial Broadcasting System 2006 厦门大学博硕士论文摘要库

Research for RS encoding and decoding technology in the Digital Television Terrestrial Broadcasting System 2006 厦门大学博硕士论文摘要库 Research for RS encoding and decoding technology in the Digital Television Terrestrial Broadcasting System 2006 DMB-T RS DMB-T DMB-T RS(208,188) RS BM RS : 1 RS RS RS FPGA RS 2 RS 3 BM 4 matlab RS RS

More information

UDC The Establishment of Fractional BSDE : : : : : 厦门大学博硕士论文摘要库

UDC The Establishment of Fractional BSDE : : : : : 厦门大学博硕士论文摘要库 10384 19020071152070 UDC The Establishment of Fractional BSDE : : : 2010 4 : 2010 5 : 2010 6 2010 4 1. 2. 1973 1990 Pardoux. Duffie Epstein ( ) Feynman-Kac Navier-Stokes El Karoui Quenez ( )... - i Abstract

More information

Construction of Chinese pediatric standard database A Dissertation Submitted for the Master s Degree Candidate:linan Adviser:Prof. Han Xinmin Nanjing

Construction of Chinese pediatric standard database A Dissertation Submitted for the Master s Degree Candidate:linan Adviser:Prof. Han Xinmin Nanjing 密 级 : 公 开 学 号 :20081209 硕 士 学 位 论 文 中 医 儿 科 标 准 数 据 库 建 设 研 究 研 究 生 李 楠 指 导 教 师 学 科 专 业 所 在 学 院 毕 业 时 间 韩 新 民 教 授 中 医 儿 科 学 第 一 临 床 医 学 院 2011 年 06 月 Construction of Chinese pediatric standard database

More information

1

1 10384 199819007UDC 2 0 0 2 4 2 0 0 2 6 2 0 0 2 2 0 0 2 6 1 2 1 1992 1 3 1 1 1 3 6 6 22 25 26 4 145 78 42 113 o 31 36 113 o 35 43 22 o 06 39 22 o 13 06 2.5 2 25.66 8.61 6.54 7.56 2.95 2 40000 32500 32500

More information

Shanghai International Studies University THE STUDY AND PRACTICE OF SITUATIONAL LANGUAGE TEACHING OF ADVERB AT BEGINNING AND INTERMEDIATE LEVEL A Thes

Shanghai International Studies University THE STUDY AND PRACTICE OF SITUATIONAL LANGUAGE TEACHING OF ADVERB AT BEGINNING AND INTERMEDIATE LEVEL A Thes 上 海 外 国 语 大 学 硕 士 学 位 论 文 对 外 汉 语 初 中 级 副 词 情 境 教 学 研 究 与 实 践 院 系 : 国 际 文 化 交 流 学 院 学 科 专 业 : 汉 语 国 际 教 育 姓 名 : 顾 妍 指 导 教 师 : 缪 俊 2016 年 5 月 Shanghai International Studies University THE STUDY AND PRACTICE

More information

天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 小 別 勝 新 婚? 久 別 要 離 婚? 影 響 遠 距 家 庭 婚 姻 感 情 因 素 之 探 討 Separate marital relations are getting better or getting worse? -Exp

天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 小 別 勝 新 婚? 久 別 要 離 婚? 影 響 遠 距 家 庭 婚 姻 感 情 因 素 之 探 討 Separate marital relations are getting better or getting worse? -Exp 天 主 教 輔 仁 大 學 社 會 學 系 學 士 論 文 小 別 勝 新 婚? 久 別 要 離 婚? 影 響 遠 距 家 庭 婚 姻 感 情 因 素 之 探 討 Separate marital relations are getting better or getting worse? -Explore the impact of emotional factors couples do not

More information

硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月

硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月 硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月 致 谢 文 学 是 我 们 人 类 宝 贵 的 精 神 财 富 两 年 半 的 硕 士 学 习 让 我 进 一 步 接 近 文 学,

More information

J. D. 17 Daniel J. Elazar, American Federalism: A View From the States (New York: Happer & Row, Publishers, 1984), p

J. D. 17 Daniel J. Elazar, American Federalism: A View From the States (New York: Happer & Row, Publishers, 1984), p 20 20 70 80 1 20 90 20 90 J. D. 17 Daniel J. Elazar, American Federalism: A View From the States (New York: Happer & Row, Publishers, 1984), p.41-42. 2 19 1985 80 Gerald D. Nash, State and Local Governments,

More information

X MGC X 22 X 23 X MGC X BALB/c 26 X MGC X MGC X MGC X..

X MGC X 22 X 23 X MGC X BALB/c 26 X MGC X MGC X MGC X.. 1 0 3 8 4 9726023 UDC X MGC80-3 2000 7 2000 7 2000 7 2000 6 22.3.4...11..11 12 13 15 15 20 20 X MGC80-3. 22 X 22 X 23 X MGC80-3.23 X BALB/c 26 X MGC80-3.27 X MGC80-3 28 29 29 30 31 32 33 X MGC80-3 34 X..34.35.36

More information

Microsoft Word - 1.封面.doc

Microsoft Word - 1.封面.doc 逢 甲 大 學 歷 史 與 文 物 研 究 所 碩 士 論 文 日 治 以 來 彰 南 地 區 客 家 移 民 與 竹 塘 醒 靈 宮 之 研 究 指 導 教 授 : 王 志 宇 研 究 生 : 柯 光 任 中 華 民 國 一 百 零 一 年 六 月 謝 誌 衷 心 感 謝 王 志 宇 老 師 在 研 究 所 期 間, 細 心 的 教 導 課 業 和 充 當 心 靈 導 師, 並 提 供 多 項

More information

A study on the Animal Husbandry Economy in the Tang Dynasty and the Five Dynasties 厦门大学博硕士论文摘要库

A study on the Animal Husbandry Economy in the Tang Dynasty and the Five Dynasties 厦门大学博硕士论文摘要库 A study on the Animal Husbandry Economy in the Tang Dynasty and the Five Dynasties 10384 B200102007 UDC A study on the Animal Husbandry Economy in the Tang Dynasty and the Five Dynasties 2004 7 2004 8

More information

彩色地图中道路的识别和提取

彩色地图中道路的识别和提取 9310016, i ii Abstract This thesis is on the researching of recognizing the roads in map image by computer. Based on the theory of Pattern Recognition, there is a method to be discussed, which can recognize

More information

Abstract / / B-ISDN ATM Crossbar Batcher banyan N DPA Modelsim Verilog Synopsys Design Analyzer Modelsim FPGA ISE FPGA ATM ii

Abstract / / B-ISDN ATM Crossbar Batcher banyan N DPA Modelsim Verilog Synopsys Design Analyzer Modelsim FPGA ISE FPGA ATM ii 10384 200024024 UDC 2003 5 2003 6 2003 2003 5 i Abstract / / B-ISDN ATM Crossbar Batcher banyan N DPA Modelsim Verilog Synopsys Design Analyzer Modelsim FPGA ISE FPGA ATM ii System On-Chip Design and Performance

More information

Kluyveromyces sp. Y-85 Saccharomyces cerevisiae E-15, E g/100ml Y-85 E-15 DNA Y YEPD MM E E-15 Y-85 Y-85 12h E h 0.1%ED

Kluyveromyces sp. Y-85 Saccharomyces cerevisiae E-15, E g/100ml Y-85 E-15 DNA Y YEPD MM E E-15 Y-85 Y-85 12h E h 0.1%ED 10384 9626012 UDC 1999 7 1999 7 16 1999 1999 7 1 Kluyveromyces sp. Y-85 Saccharomyces cerevisiae E-15, E-15 10 2.98g/100ml Y-85 E-15 DNA Y-85 45 YEPD MM E-15 45 30 E-15 Y-85 Y-85 12h E-15 10 h 0.1%EDTA-,

More information

Research on the Mycorrhizal Community of Pinus Massoniana Lamb in Wuyishan Nature Reserve Abstract Mycorrhizae is the symbiosisal body of fugus and bo

Research on the Mycorrhizal Community of Pinus Massoniana Lamb in Wuyishan Nature Reserve Abstract Mycorrhizae is the symbiosisal body of fugus and bo (pinus massoniana Lamb) 27 o 33. o 54, 117 o 27 117 o 51 1 Research on the Mycorrhizal Community of Pinus Massoniana Lamb in Wuyishan Nature Reserve Abstract Mycorrhizae is the symbiosisal body of fugus

More information

國立臺南大學數位論文典藏.pdf

國立臺南大學數位論文典藏.pdf 1974~2003 Xiang Yang and the Research upon His Modern Poems: 1974~2003 1974~2003 Xiang Yang and the Research upon His Modern Poems: 1974~2003 by StudentSu-Chen Lee A Thesis submitted in partial fulfillment

More information

我国原奶及乳制品安全生产和质量安全管理研究

我国原奶及乳制品安全生产和质量安全管理研究 密 级 论 文 编 号 中 国 农 业 科 学 院 硕 士 学 位 论 文 我 国 原 奶 及 乳 制 品 质 量 安 全 管 理 研 究 Study on Quality and Safety Management of Raw Milk and Dairy Products in China 申 请 人 : 段 成 立 指 导 教 师 : 叶 志 华 研 究 员 张 蕙 杰 研 究 员 申 请

More information

Microsoft Word - 24217010311110028谢雯雯.doc

Microsoft Word - 24217010311110028谢雯雯.doc HUAZHONG AGRICULTURAL UNIVERSITY 硕 士 学 位 论 文 MASTER S DEGREE DISSERTATION 80 后 女 硕 士 生 择 偶 现 状 以 武 汉 市 七 所 高 校 为 例 POST-80S FEMALE POSTGRADUATE MATE SELECTION STATUS STUDY TAKE WUHAN SEVEN UNIVERSITIES

More information

10384 200129005 UDC _ Product Lines and their Control System Design for Fine Powder and Ultra-fine Powder 2004 5 2004 6 2004 2004 5 AUTOCAD PLC PC PLC PC PLC PLC VB6.0 PLC VB PID I MATLAB PID PLCCPU PID

More information

A Study on the Relationships of the Co-construction Contract A Study on the Relationships of the Co-Construction Contract ( ) ABSTRACT Co-constructio in the real estate development, holds the quite

More information

致 謝 在 研 究 所 這 段 期 間 受 到 了 許 多 人 的 幫 助, 才 有 今 日 我 創 作 及 論 文 的 樣 貌 首 先 我 要 謝 謝 我 的 爸 媽, 知 道 我 自 小 就 喜 歡 塗 塗 畫 畫, 高 中 開 始 為 了 準 備 考 美 術 系 而 每 日 下 課 後 往 畫

致 謝 在 研 究 所 這 段 期 間 受 到 了 許 多 人 的 幫 助, 才 有 今 日 我 創 作 及 論 文 的 樣 貌 首 先 我 要 謝 謝 我 的 爸 媽, 知 道 我 自 小 就 喜 歡 塗 塗 畫 畫, 高 中 開 始 為 了 準 備 考 美 術 系 而 每 日 下 課 後 往 畫 東 海 大 學 美 術 學 系 碩 士 班 碩 士 學 位 創 作 論 述 風 景 變 奏 指 導 教 授 : 倪 再 沁 教 授 研 究 生 : 吳 冠 瑩 撰 西 元 2011 年 6 月 致 謝 在 研 究 所 這 段 期 間 受 到 了 許 多 人 的 幫 助, 才 有 今 日 我 創 作 及 論 文 的 樣 貌 首 先 我 要 謝 謝 我 的 爸 媽, 知 道 我 自 小 就 喜 歡 塗

More information

Microsoft Word - 論文獎助扉頁5份.doc

Microsoft Word - 論文獎助扉頁5份.doc 本 論 文 獲 行 政 院 客 家 委 員 會 100 年 客 家 研 究 優 良 博 碩 士 論 文 獎 助 國 立 屏 東 教 育 大 學 文 化 創 意 產 業 學 系 碩 士 班 碩 士 論 文 指 導 教 授 : 鍾 屏 蘭 博 士 台 灣 客 家 令 子 的 內 涵 及 其 在 教 育 上 之 應 用 研 究 生 : 馮 詠 書 撰 中 華 民 國 100 年 7 月 謝 誌 三 年

More information

苗 栗 三 山 國 王 信 仰 及 其 地 方 社 會 意 涵 The Influences and Implications of Local Societies to Three Mountain Kings Belief, in Taiwan Miaoli 研 究 生 : 林 永 恩 指 導

苗 栗 三 山 國 王 信 仰 及 其 地 方 社 會 意 涵 The Influences and Implications of Local Societies to Three Mountain Kings Belief, in Taiwan Miaoli 研 究 生 : 林 永 恩 指 導 國 立 交 通 大 學 客 家 文 化 學 院 客 家 社 會 與 文 化 學 程 碩 士 論 文 苗 栗 三 山 國 王 信 仰 及 其 地 方 社 會 意 涵 The Influences and Implications of Local Societies to Three Mountain Kings Belief, in Taiwan Miaoli 研 究 生 : 林 永 恩 指 導 教

More information