幻灯片 1

Size: px
Start display at page:

Download "幻灯片 1"

Transcription

1 运动恢复结构 章国锋 浙江大学 CAD&CG 国家重点实验室

2 多视图几何 投影函数

3 运动恢复结构 流程 特征跟踪 获得一堆特征点轨迹 运动恢复结构 求解相机参数和特征点轨迹的三维位置

4 图像特征 图像中显著 容易区分和匹配的内容 点 角点 线 : 直线, 曲线, 边 : 二维边, 三维边 形状 : 长方形, 圆, 椭圆, 球, 纹理 不变性 视角不变 ( 尺度, 方向, 平移 ) 光照不变 物体变形 部分遮挡

5 Harris 角点检测 核心思想 : 统计图像梯度的分布 平坦区域 : 梯度不明显 边缘区域 : 梯度明显, 方向一致 角点区域 : 梯度明显, 方向不一致 方法 : 计算像素邻域的梯度二阶矩 计算上述矩阵的角点响应指标 对 R 进行阈值过滤和非极大值抑制

6 FAST 核心思想 角点与周围邻域内足够多的像素的灰度差异较大 通过少量像素点的比较, 加速角点提取 考虑中心点周围的 16 个像素, 设中心点亮度为 p 如果有连续 n 个像素亮度都大于 p+t, 或者都小于 p-t ( 如图中的 14~16, 1 ~ 6) 首先检查 四个位置, 如果是角点, 四个位置中应当有三个满足上面的条件 速度快, 但对噪音不鲁棒 Edward Rosten, Tom Drummond. Machine Learning for High-Speed Corner Detection. ECCV (1) 2006:

7 SIFT Scale-Invariant Feature Transform SIFT 通过在不同级别的图像 DoG 上寻找极值点来确定特征点的位置和对应的尺度, 后续的特征提取在与其尺度最邻近的图像 DoG 上进行 这使它有良好的尺度不变性 David G. Lowe.Distinctive Image Features from Scale-Invariant Keypoints. International Journal of Computer Vision 60(2): (2004).

8 More Invariant Features SIFT 之后陆续出现了各种尺度不变特征描述量提取算法 如 RIFT GLOH SURF 等 保证了一定的视觉不变性, 又能很好地对抗噪声 SURF ORB 使用了 Haar 小波卷积替代 SIFT 中的高斯核 用积分图像进行了加速, 使得计算速度达到 SIFT 的 3~7 倍 使用 FAST 提取特征点 使用轻量级的二进制描述子 由于其极快的提取速度得到了广泛使用

9 特征提取 精度高 SIFT SURF ORB 速度快 SIFT 极佳的尺度不变性, 能一定程度上适应视角变化和亮度变化 SURF 能够处理严重的图像模糊, 速度要高于 SIFT, 但精度不如 SIFT ORB 极快的提取速度, 在实时应用中常用来替代 SIFT 以上三种特征提取算法均在 OpenCV 中有实现

10 特征匹配 模板匹配 直接在目标图像中寻找给定的图像块

11 特征匹配 在小运动假设下, 可以采用 KLT 跟踪方法 : I(x,y,t) I(x,y,t+1) 一个等式, 两个未知量

12 特征匹配 进一步假设 : 相邻像素运动一致 ( 单个像素 ) ( 邻域窗口 )

13 特征匹配 大运动情况下的匹配 通过比较特征描述量的距离进行匹配 SIFT = 128 维 SURF = 64 维 ORB = 256bits 暴力匹配 快速最近邻匹配 OpenCV 中提供了相应的匹配算法

14 Non-Consecutive Feature Tracking How to efficiently match the common features among different subsequences?

15 Non-Consecutive Feature Tracking

16 Framework Overview 1. Detect SIFT features over the entire sequence. 2. Consecutive point tracking: 2.1 Match features between consecutive frames with descriptor comparison. 2.2 Perform the second-pass matching to extend track lifetime. 3. Non-consecutive track matching: 3.1 Use hierachical k-means to cluster the constructed tracks. 3.2 Estimate the matching matrix with the grouped tracks. 3.3 Detect overlapping subsequences and join the matched tracks.

17 Two-Pass Matching SIFT Feature Extraction First-Pass Matching by Descriptor Comparison Global distinctive

18

19 Two-View Geometry 3D???

20 Two-View Geometry 3D: Epipolar Geometry

21 Not Enough! How to handle image distortion? Naïve window-based matching becomes unreliable! How to give a good position initializaton? Whole line searching is still time-consuming and ambiguous with many potential correspondences.???

22 Second-Pass Matching by Planar Motion Segmentation Estimate a set of homographies Using inlier matches in first-pass matching frame t 1 2 H t H, t+1 t, t+1 frame t+1 Alignment 3 H t, t+1 4 H t, t+1

23 Second-Pass Matching by Planar Motion Segmentation Guided matching Epipolar constraint Homography constraint

24 Second-Pass Matching with Multi-Homographies First-Pass Matching (53 matches) Direct Searching (11 matches added) Our Second-Pass Matching (346 matches added)

25 Non-Consecutive track matching Fast Matching Matrix Estimation Detect overlapping subsequences and join the matched tracks.

26 Fast Matching Matrix Estimation Each track has a group of description vectors Track descriptor Use a hierarchical K-means approach to cluster the track descriptors

27 Fast Matching Matrix Estimation

28 Non-Consecutive Track Matching Simultaneously Match Images and Refine Matching Matrix Refine the matching matrix after matching the common features of the selected image pairs. More reliably find the best matching images with the updated matching matrix.

29 常用的增量式 SfM 系统框架

30 基于自定标的单序列增量式 SfM 求解框架 1. 自动抽取特征点并匹配 ; 2. 抽取关键帧组成关键帧序列 ; 3. 初始化度量空间下的三维结构和运动 : 3.1 选择合适的三帧组进行射影重建的初始化 ; 3.2 采用增量式求解, 并选择合适时机进行自定标, 将射影重建转换到度量重建 ; 4. 对于每一个新加入求解的关键帧 : 4.1 初始化新求解帧的相机参数和相关的三维点 ; 4.2 用局部集束调整算法对局部已经求解的结构和运动进行求精 ; 5. 求解所有非关键帧的相机参数 ; 6. 对整个序列恢复的结构和运动用集束调整进行最后优化 30

31 三角化 已知 F, 计算 P 和 P 已知 x 和 x 计算 X: x= PX x'= P 'X Richard Hartley and Andrew Zisserman. Multiple View Geometry in Computer Vision. Cambridge University Press, Second Edition 2004.

32 有噪声情况下的三角化 由于存在噪声, 反投到三维空间上的射线并不会严格相交 优化投影点到对应极线的距离 Richard Hartley and Andrew Zisserman. Multiple View Geometry in Computer Vision. Cambridge University Press, Second Edition 2004.

33 线性三角化方法 给定方程 x= PX x'= P 'X p it 表示 P 的第 i 行. 写成矩阵和向量相乘的形式 直接解析求解. 没有几何意义 不是最优.

34 优化几何误差 目标函数 用 Levenberg-Marquart 算法求解

35 已知三维, 求解相机位姿 Compute Projection Matrix Decomposition for Metric Projection Matrix P = K[ R t] = [ KR Kt] = [ M Kt] Decompose M into K, R by QR decomposition 1 t = K p, p, p ) ( T

36 Bundle Adjustment Definition Refining a visual reconstruction to produce jointly optimal 3D structure and viewing parameter (camera pose and/or calibration) estimates. B. Triggs, P. F. McLauchlan, R. I. Hartley, and A. W. Fitzgibbon. Bundle adjustment - a modern synthesis. In Workshop on Vision Algorithms, pages , 1999.

37 Geometric Ambiguities Projective Self-Calibration Metric Reconstruction Reconstruction Marc Pollefeys. Visual 3D Modeling from Images

38 Self-Calibration State-of-the-Art References R.I. Hartley and A. Zisserman, Multiple View Geometry in Computer Vision, second ed. Cambridge Univ. Press, M. Pollefeys, L.J. Van Gool, M. Vergauwen, F. Verbiest, K. Cornelis, J. Tops, and R. Koch, Visual Modeling with a Hand-Held Camera, Int l J. Computer Vision, vol. 59, no. 3, pp , G. Zhang, X. Qin, W. Hua, T.-T. Wong, P.-A. Heng, and H. Bao, Robust Metric Reconstruction from Challenging Video Sequences, Proc. IEEE CS Conf. Computer Vision and Pattern Recognition, 2007.

39 代表性 SfM 方法 增量式 SfM 采用逐张图片加入处理的方式 精度高, 求解鲁棒, 但速度较慢 代表性工作 Bundler: VisualSFM: COLMAP: ACTS: 层次式 SfM 先求解局部地图, 再进行融合和补充得到完整的重建 显著提高重建的效率 代表性工作 ENFT-SFM: 39

40 代表性 SfM 方法 全局式 SfM 直接求解全局的图像外参, 然后通过少量的集束调整完成优化 高效, 但是容易受到错误匹配的影响 代表性工作 混合式 SfM OpenMVG: 采用全局方法估计图像旋转, 然后增量式的求解图像位置 大幅度减少重建时间, 错误的匹配关系可以及时修正 代表性工作 语义 SfM HSfM: Hybrid Structure-from-Motion(Cui et al.,2017) 通过语义信息进行联合优化 三维地图包含语义信息 代表工作 Semantic structure from motion (Bao et al.,2011) 40

41 谢谢! 41

实验室研究方向

实验室研究方向 多视图几何与 运动恢复结构 章国锋 浙江大学 CAD&CG 国家重点实验室 视频场景重建的流程 运动恢复结构 深度恢复 三维重建 针孔相机模型 投影方程 : 齐次坐标表示 : Richard Hartley and Andrew Zisserman. Multiple View Geometry in Computer Vision. Cambridge University Press, Second

More information

视频场景重建的流程 运动恢复结构 深度恢复 三维重建

视频场景重建的流程 运动恢复结构 深度恢复 三维重建 运动恢复结构 章国锋 浙江大学 CAD&CG 国家重点实验室 视频场景重建的流程 运动恢复结构 深度恢复 三维重建 针孔相机模型 投影方程 : 齐次坐标表示 : Richard Hartley and Andrew Zisserman. Multiple View Geometry in Computer Vision. Cambridge University Press, Second Edition

More information

2, : 257,, ; Pollefeys [4 ],,,,, ; [526 ],, ; Snavely [728 ], (500 ),,, EXIF, EXIF,, 2, ; Pollefeys [9 ],,,, (3),,,. X = [ X Y Z ] T, x = [ x y ] T, x

2, : 257,, ; Pollefeys [4 ],,,,, ; [526 ],, ; Snavely [728 ], (500 ),,, EXIF, EXIF,, 2, ; Pollefeys [9 ],,,, (3),,,. X = [ X Y Z ] T, x = [ x y ] T, x 22 2 200 2 Journal of Computer2Aided Design & Computer Graphics Vol. 22 No. 2 Feb. 200 ), ), ), 2), ) ) ( 0090) 2) ( 0004) (fzhang @nlpr. ia. ac. cn) :,,,,., ;, ;,, : ; ; : TP39 Automatic Reconstruction

More information

(Pattern Recognition) 1 1. CCD

(Pattern Recognition) 1 1. CCD ********************************* ********************************* (Pattern Recognition) 1 1. CCD 2. 3. 4. 1 ABSTRACT KeywordsMachine Vision, Real Time Inspection, Image Processing The purpose of this

More information

40 8 Vol. 40, No ACTA AUTOMATICA SINICA August, ,,,.,.,,,.,.,,,.,,,. DOI,, L-M (Levenberg-Marquardt),,,.., 2014, 40(8):

40 8 Vol. 40, No ACTA AUTOMATICA SINICA August, ,,,.,.,,,.,.,,,.,,,. DOI,, L-M (Levenberg-Marquardt),,,.., 2014, 40(8): 40 8 Vol. 40, No. 8 2014 8 ACTA AUTOMATICA SINICA August, 2014 1 1 2.,,,.,.,,,.,.,,,.,,,. DOI,, L-M (Levenberg-Marquardt),,,.., 2014, 40(8): 1601 1611 10.3724/SP.J.1004.2014.01601 Bundle Adjustment for

More information

第 2 期 王 向 东 等 : 一 种 运 动 轨 迹 引 导 下 的 举 重 视 频 关 键 姿 态 提 取 方 法 257 竞 技 体 育 比 赛 越 来 越 激 烈, 为 了 提 高 体 育 训 练 的 效 率, 有 必 要 在 体 育 训 练 中 引 入 科 学 定 量 的 方 法 许 多

第 2 期 王 向 东 等 : 一 种 运 动 轨 迹 引 导 下 的 举 重 视 频 关 键 姿 态 提 取 方 法 257 竞 技 体 育 比 赛 越 来 越 激 烈, 为 了 提 高 体 育 训 练 的 效 率, 有 必 要 在 体 育 训 练 中 引 入 科 学 定 量 的 方 法 许 多 2014 年 4 月 图 学 学 报 April 2014 第 35 卷 第 2 期 JOURNAL OF GRAPHICS Vol.35 No.2 一 种 运 动 轨 迹 引 导 下 的 举 重 视 频 关 键 姿 态 提 取 方 法 王 向 东 1, 张 静 文 2, 毋 立 芳 2, 徐 文 泉 (1. 国 家 体 育 总 局 体 育 科 学 研 究 所, 北 京 100061;2. 北 京

More information

Journal of Northwestern Polytechnical University Apr. Vol No. 2 ICM ICM ICM ICM ICM ICM TP A

Journal of Northwestern Polytechnical University Apr. Vol No. 2 ICM ICM ICM ICM ICM ICM TP A 2012 4 30 2 Journal of Northwestern Polytechnical University Apr. Vol. 30 2012 No. 2 ICM 710072 ICM ICM ICM ICM ICM TP391. 41 A 1000-2758 2012 02-0201-05 6 2001 Kinser Johnson ICM intersecting cortical

More information

JOURNAL OF APPLIED SCIENCES Electronics and Information Engineering Vol. 28 No. 6 Nov DOI: /j.issn

JOURNAL OF APPLIED SCIENCES Electronics and Information Engineering Vol. 28 No. 6 Nov DOI: /j.issn 28 6 2010 11 JOURNAL OF APPLIED SCIENCES Electronics and Information Engineering Vol. 28 No. 6 Nov. 2010 DOI: 10.3969/j.issn.0255-8297.2010.06.011 200072..... TP391.41 0255-8297(2010)06-0621-07 General

More information

图像处理与分析 图像特征匹配 授课教师 : 孙剑 西安交通大学数学与统计学院

图像处理与分析 图像特征匹配 授课教师 : 孙剑   西安交通大学数学与统计学院 图像处理与分析 图像特征匹配 授课教师 : 孙剑 jiansun@mail.xjtu.edu.cn http://jiansun.gr.xjtu.edu.cn 西安交通大学数学与统计学院 目录 l 为什么要进行特征提取? l Harris 角点检测 l 特征检测器 (Feature detector) l 特征描述子 (Feature descriptor) 图像特征提取 l 图像特征提取 : 提取图像中的关键特征点

More information

70 Harris SIFT Harris SIFT HSV hue saturation value Harris SIFT RGB red green blue HSV 11 1 if α I v x y B v x y β shadow x y = 1 &I s x y - B s x y t

70 Harris SIFT Harris SIFT HSV hue saturation value Harris SIFT RGB red green blue HSV 11 1 if α I v x y B v x y β shadow x y = 1 &I s x y - B s x y t 3 12 6 Vol No 3 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Jun 12 Harris SIFT 1 1 1 2 2 1 0001 2 0090 Harris SIFT SIFT 2 /3 Harris SIFT TP391 A 1007-2683 12 03-0069- 05 Harris Corner and SIFT

More information

2 ( 自 然 科 学 版 ) 第 20 卷 波 ). 这 种 压 缩 波 空 气 必 然 有 一 部 分 要 绕 流 到 车 身 两 端 的 环 状 空 间 中, 形 成 与 列 车 运 行 方 向 相 反 的 空 气 流 动. 在 列 车 尾 部, 会 产 生 低 于 大 气 压 的 空 气 流

2 ( 自 然 科 学 版 ) 第 20 卷 波 ). 这 种 压 缩 波 空 气 必 然 有 一 部 分 要 绕 流 到 车 身 两 端 的 环 状 空 间 中, 形 成 与 列 车 运 行 方 向 相 反 的 空 气 流 动. 在 列 车 尾 部, 会 产 生 低 于 大 气 压 的 空 气 流 第 20 卷 第 3 期 2014 年 6 月 ( 自 然 科 学 版 ) JOURNAL OF SHANGHAI UNIVERSITY (NATURAL SCIENCE) Vol. 20 No. 3 June 2014 DOI: 10.3969/j.issn.1007-2861.2013.07.031 基 于 FLUENT 测 轨 道 交 通 隧 道 中 电 波 折 射 率 结 构 常 数 张 永

More information

****************************************************** Fundamentals of TV Tracking ****************************************************** ( ),,, :,,,,,, 1998 9 ( ISBN 7-118-01911-9),,, 1999 5 20 Email:

More information

Cinemagraph 透 過 網 路 社 群 在 近 幾 年 迅 速 引 起 網 路 使 用 者 們 的 注 意 與 回 響, 儼 然 成 為 網 路 視 覺 設 計 的 新 潮 流 雖 然 Cinemagraph 目 前 在 廣 告 界 還 不 盛 行, 大 部 分 網 路 行 銷 的 動 態

Cinemagraph 透 過 網 路 社 群 在 近 幾 年 迅 速 引 起 網 路 使 用 者 們 的 注 意 與 回 響, 儼 然 成 為 網 路 視 覺 設 計 的 新 潮 流 雖 然 Cinemagraph 目 前 在 廣 告 界 還 不 盛 行, 大 部 分 網 路 行 銷 的 動 態 Automatic Cinemagraph on Smartphones ( 一 ) 摘 要 有 人 愛 收 藏 照 片, 有 人 愛 拍 攝 影 片, 但 在 一 般 大 眾 的 認 知 中, 動 態 跟 靜 態 不 太 可 能 同 時 呈 現 照 片 是 靜 態 的 產 物, 而 影 片 是 動 態 的 此 專 題 結 合 動 態 與 靜 態, 讓 主 體 為 靜 態 照 片 的 局 部 可 以

More information

Microsoft Word - scribe_1_.doc

Microsoft Word - scribe_1_.doc Making Faces 2005/06/08 R93922063 陳 坤 毅 R93922087 莊 曜 誠 R93922105 王 博 民 3D acquisition for faces: 如 何 取 得 臉 的 3D model? 方 法 1: ( 經 費 足 夠 時 ) 使 用 Cyberware scanner. ( 可 對 臉 部 scan 亦 可 對 全 身 scan) 方 法 如

More information

P(x,y) P(x-1,y) P(x,y-1) P(x,y+1) P(x+1,y) 1 3.2 Sobel LaplacePrewittRoberts Sobel [2] Sobel 3.3 2 [6] 0 1 1: P(x,y) t (4-connectivity) 2: P(x,y) t 3:

P(x,y) P(x-1,y) P(x,y-1) P(x,y+1) P(x+1,y) 1 3.2 Sobel LaplacePrewittRoberts Sobel [2] Sobel 3.3 2 [6] 0 1 1: P(x,y) t (4-connectivity) 2: P(x,y) t 3: chdong@npic.edu.tw rola@mail.stu.edu.tw (ITS) (LPR) ITS 2. [1][8] [3][9][12] [9] frequency table Sobel [3][12] RGB HSB color model [11] Hough transformation Sobel [4] [10] 1. Intelligent Transportation

More information

一 课 程 负 责 人 情 况 姓 名 吴 翊 性 别 男 出 生 年 月 1948.08.28 1. 基 本 信 息 学 位 硕 士 职 称 教 授 职 务 所 在 院 系 理 学 院 数 学 与 系 统 科 学 系 电 话 13808485157 研 究 方 向 数 据 处 理 近 三 年 来

一 课 程 负 责 人 情 况 姓 名 吴 翊 性 别 男 出 生 年 月 1948.08.28 1. 基 本 信 息 学 位 硕 士 职 称 教 授 职 务 所 在 院 系 理 学 院 数 学 与 系 统 科 学 系 电 话 13808485157 研 究 方 向 数 据 处 理 近 三 年 来 湖 南 省 普 通 高 等 学 校 省 级 精 品 课 程 复 核 申 报 表 学 校 名 称 : 课 程 名 称 : 课 程 负 责 人 : 立 项 时 间 : 国 防 科 技 大 学 概 率 论 与 数 理 统 计 吴 翊 2009 年 课 程 网 站 地 址 :jpkc2009.nudt.edu.cn/gllysltj jpkc.nudt.edu.cn/gltj 湖 南 省 教 育 厅 制 二

More information

Dan Buettner / /

Dan Buettner / / 39 1 2015 1 Vol. 39 No. 1 January 2015 74 Population Research 80 + /60 + 90 + 90 + 0 80 100028 Measuring and Comparing Population Longevity Level across the Regions of the World Lin Bao Abstract Appropriate

More information

soturon.dvi

soturon.dvi DP Contour Morphing 2005 3 A Graduation Thesis of College of Engineering, Chubu University Contour Morphing based on continuous DP matching Taichi Nomura 1 1 2 3 2.1 Flash Shape Tweening : : : : : : :

More information

Microsoft Word - KSAE06-S0262.doc

Microsoft Word - KSAE06-S0262.doc Stereo Vision based Forward Collision Warning and Avoidance System Yunhee LeeByungjoo KimHogi JungPaljoo Yoon Central R&D Center, MANDO Corporation, 413-5, Gomae-Ri, Gibeung-Eub, Youngin-Si, Kyonggi-Do,

More information

PowerPoint 演示文稿

PowerPoint 演示文稿 复杂环境下的视觉同时定位与地图构建 章国锋 浙江大学 CAD&CG 国家重点实验室 SLAM: 同时定位与地图构建 机器人和计算机视觉领域的基本问题 在未知环境中定位自身方位并同时构建环境三维地图 广泛的应用 增强现实 虚拟现实 机器人 无人驾驶 SLAM 常用的传感器 红外传感器 : 较近距离感应, 常用于扫地机器人 激光雷达 : 单线 多线等 摄像头 : 单目 双目 多目等 惯性传感器 ( 英文叫

More information

1 引言

1 引言 P P 第 40 卷 Vol.40 第 7 期 No.7 计 算 机 工 程 Computer Engineering 014 年 7 月 July 014 开 发 研 究 与 工 程 应 用 文 章 编 号 :1000-348(014)07-081-05 文 献 标 识 码 :A 中 图 分 类 号 :TP391.41 摘 基 于 图 像 识 别 的 震 象 云 地 震 预 测 方 法 谢 庭,

More information

标题

标题 第 46 卷 第 11 期 2 1 4 年 11 月 哈 尔 滨 工 业 大 学 学 报 JOURNAL OF HARBIN INSTITUTE OF TECHNOLOGY Vol 46 No 11 Nov 214 基 于 摄 像 测 量 法 的 在 轨 柔 性 结 构 模 态 参 数 辨 识 许 畅 王 聪 高 晶 波 张 春 芳 ( 哈 尔 滨 工 业 大 学 航 天 学 院 151 哈 尔 滨

More information

Welch & Bishop, [Kalman60] [Maybeck79] [Sorenson70] [Gelb74, Grewal93, Maybeck79, Lewis86, Brown92, Jacobs93] x R n x k = Ax k 1 + Bu k 1 + w

Welch & Bishop, [Kalman60] [Maybeck79] [Sorenson70] [Gelb74, Grewal93, Maybeck79, Lewis86, Brown92, Jacobs93] x R n x k = Ax k 1 + Bu k 1 + w Greg Welch 1 and Gary Bishop 2 TR 95-041 Department of Computer Science University of North Carolina at Chapel Hill 3 Chapel Hill, NC 27599-3175 : 2006 7 24 2007 1 8 1960 1 welch@cs.unc.edu, http://www.cs.unc.edu/

More information

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I 2004 5 IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I Abstract The techniques of digital video processing, transferring

More information

COCO18-DensePose-BUPT-PRIV

COCO18-DensePose-BUPT-PRIV * Beijing University of Posts and Telecommunications (BUPT) COCO 2018 DensePose Test AP AP50 AP75 APm APl BUPT-PRIV (Ours) 64 92 75 57 67 PlumSix 58 89 66 50 61 ML_Lab 57 89 64 51 59 Sound of silent 57

More information

2 139 Hough (R, T ) [5] Hough. Fourier-Mellin. Fourier Fourier- Mellin (R, T ) Hausdorff ICP T. 2 3 Hough 4 Fourier-Mellin [2, 3] P 1, P

2 139 Hough (R, T ) [5] Hough. Fourier-Mellin. Fourier Fourier- Mellin (R, T ) Hausdorff ICP T. 2 3 Hough 4 Fourier-Mellin [2, 3] P 1, P 33 2 Vol. 33, No. 2 2007 2 ACTA AUTOMATICA SINICA February, 2007 1 1 1. Hough, Hough. Hough Hausdorff. Fourier-Mellin Fourier Fourier-Mellin. Hausdorff (ICP).. Hough Fourier-Mellin Hausdorff TP24 Robot

More information

Sep (SCI) 10. Jiann-Ming Wu, Annealing by two sets of interactive dynamics, IEEE Trans. on Systems Man and Cybernetics Part B-Cybernetics 34 (3)

Sep (SCI) 10. Jiann-Ming Wu, Annealing by two sets of interactive dynamics, IEEE Trans. on Systems Man and Cybernetics Part B-Cybernetics 34 (3) 03-863-3531 E-mail jmwu@mail.ndhu.edu.tw /(1990/06-1994/06) (1988/06-1990/06) (1984/09-1988/06) / (1997/8-) (1996/08-1997/07) () 1996 8 Wu, Jiann-Ming ( SCI EI SSCI TSSCI EconLit A&HCI ) 1. Pei-Hsun Hsu

More information

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl SKLOIS (Pseudo) Preimage Attack on Reduced-Round Grøstl Hash Function and Others Shuang Wu, Dengguo Feng, Wenling Wu, Jian Guo, Le Dong, Jian Zou March 20, 2012 Institute. of Software, Chinese Academy

More information

, :., (Scale-invariant feature transform, SIFT) [2] (Speeded up robust features, SURF) [3],.,, (Principal component analysis-sift, PCA- SIFT) [

, :., (Scale-invariant feature transform, SIFT) [2] (Speeded up robust features, SURF) [3],.,, (Principal component analysis-sift, PCA- SIFT) [ 40 2 Vol. 40, No. 2 2014 2 ACTA AUTOMATICA SINICA February, 2014 1 1 1..,, ;,,.,.,,.,... DOI,,,,,,,.., 2014, 40(2): 255 266 10.3724/SP.J.1004.2014.00255 A Binary Descriptor Based on Both Optimized Sampling

More information

68 ( ) 2006,,,,,,,,,, (narrative history),,, [1 ] (P ),,,,,,, [ 2 ] ( P ), ;,,,,,,,,,,,,,, (1917),, 30,,,, :,, ;,,,,, ( ) ( ), :,,,,,,,,,,

68 ( ) 2006,,,,,,,,,, (narrative history),,, [1 ] (P ),,,,,,, [ 2 ] ( P ), ;,,,,,,,,,,,,,, (1917),, 30,,,, :,, ;,,,,, ( ) ( ), :,,,,,,,,,, 43 2 2006 3 ( ) Journal of Peking University( Philo sophy and Social Science s) Vol. 43, No. 2 Mar. 2006 (, 100871) :,,,,,,,,,, : ; ; ; : I20616 :A :100025919 (2006) 0220067211,,,, 20,, (, ),,,,,,, ( ),,,,,,,,,,,,,,,,

More information

1,: 69, 36, Groebner [2] 3 {x 1,x 2,,x m } 2 m,, π11,π12,,πm 1,πm 2, ( x 3, ) ;, π11 烄 T 烌烄 (1,0,-x 1 )P 1 烌 LM(Levenberg-Marquardt) π12 T (1,0,-y1)P

1,: 69, 36, Groebner [2] 3 {x 1,x 2,,x m } 2 m,, π11,π12,,πm 1,πm 2, ( x 3, ) ;, π11 烄 T 烌烄 (1,0,-x 1 )P 1 烌 LM(Levenberg-Marquardt) π12 T (1,0,-y1)P 24 1 20121 Vol24No1 JournalofComputer-AidedDesign & ComputerGraphics Jan2012, ( 100190) (qzhang@nlpriaaccn) :,, : 0 L2-, Sampson ;,2, : ;Sampson ; :TP391 IterativeAlgorithmsforMulti-ViewTriangulation ZhangQiangand

More information

清 潔 機 器 人 覆 蓋 率 分 析 之 研 究 A Study of Coverage Analysis for Cleaning Robot 研 究 生 : 林 育 昇 撰 指 導 教 授 : 陳 智 勇 博 士 樹 德 科 技 大 學 電 腦 與 通 訊 研 究 所 碩 士 論 文 A Th

清 潔 機 器 人 覆 蓋 率 分 析 之 研 究 A Study of Coverage Analysis for Cleaning Robot 研 究 生 : 林 育 昇 撰 指 導 教 授 : 陳 智 勇 博 士 樹 德 科 技 大 學 電 腦 與 通 訊 研 究 所 碩 士 論 文 A Th 樹 德 科 技 大 學 電 腦 與 通 訊 研 究 所 碩 士 論 文 清 潔 機 器 人 覆 蓋 率 分 析 之 研 究 A Study of Coverage Analysis for Cleaning Robot 研 究 生 : 林 育 昇 撰 指 導 教 授 : 陳 智 勇 博 士 中 華 民 國 一 百 零 一 年 六 月 清 潔 機 器 人 覆 蓋 率 分 析 之 研 究 A Study

More information

MAXQ BA ( ) / 20

MAXQ BA ( ) / 20 MAXQ BA11011028 2016 6 7 () 2016 6 7 1 / 20 1 2 3 4 () 2016 6 7 2 / 20 RoboCup 2D 11 11 100ms/ 1: RoboCup 2D () 2016 6 7 3 / 20 2: () 2016 6 7 4 / 20 () 2016 6 7 5 / 20 Markov Decision Theory [Puterman,

More information

92 湖 南 工 业 大 学 学 报 2014 年 基 于 特 征 的 方 法 是 现 今 图 像 匹 配 的 主 要 研 究 与 发 展 方 向 这 种 匹 配 方 法 的 原 理 是, 寻 找 待 处 理 图 像 某 区 域 中 的 特 征 点 或 者 关 键 点, 在 计 算 特 征 点 周

92 湖 南 工 业 大 学 学 报 2014 年 基 于 特 征 的 方 法 是 现 今 图 像 匹 配 的 主 要 研 究 与 发 展 方 向 这 种 匹 配 方 法 的 原 理 是, 寻 找 待 处 理 图 像 某 区 域 中 的 特 征 点 或 者 关 键 点, 在 计 算 特 征 点 周 第 28 卷 第 4 期 2014 年 7 月 湖 南 工 业 大 学 学 报 Journal of Hunan University of Technology Vol.28 No.4 July 2014 doi:10.3969/j.issn.1673-9833.2014.04.020 基 于 LBP 直 方 图 和 SIFT 的 药 品 包 装 缺 陷 检 测 方 法 陈 财 彪, 于 惠 钧,

More information

永遠的革新號--側論《筆匯》遺漏在文學史上的密碼

永遠的革新號--側論《筆匯》遺漏在文學史上的密碼 屏 東 教 育 大 學 學 報 - 人 文 社 會 類 第 四 十 期 2013 年 3 月 頁 61-88 永 遠 的 革 新 號 側 論 筆 匯 遺 漏 在 文 學 史 上 的 密 碼 及 其 重 要 性 陳 明 成 摘 要 由 於 歷 來 有 關 文 學 雜 誌 與 現 代 文 學 的 研 究 成 果 已 呈 豐 碩, 相 形 之 下, 對 於 栽 種 在 兩 者 之 中 的 革 新 號 筆

More information

<4D6963726F736F667420576F7264202D20B8BDBCFE3220BDCCD3FDB2BFD6D8B5E3CAB5D1E9CAD2C4EAB6C8BFBCBACBB1A8B8E6A3A8C4A3B0E5A3A92E646F6378>

<4D6963726F736F667420576F7264202D20B8BDBCFE3220BDCCD3FDB2BFD6D8B5E3CAB5D1E9CAD2C4EAB6C8BFBCBACBB1A8B8E6A3A8C4A3B0E5A3A92E646F6378> 批 准 立 项 年 份 2007 通 过 验 收 年 份 2013 教 育 部 重 点 实 验 室 年 度 报 告 ( 2015 年 1 月 2015 年 12 月 ) 实 验 室 名 称 : 机 器 智 能 与 先 进 计 算 教 育 部 重 点 实 验 室 实 验 室 主 任 : 张 军 实 验 室 联 系 人 / 联 系 电 电 : 詹 志 辉 /13826089486 E-mail 地 址

More information

Microsoft Word - 00-巻頭言.doc

Microsoft Word - 00-巻頭言.doc DR DR DR (6-1) DR GPSGlobal Positioning System CANCar Area Network (6-2) DR (6-3) DR - 89 - 6-1-1 GPSGlobal Positioning System 1024 768[pixel] 30[fps] GPS PC Bluetooth SSDSolid State Drive RAID 1[TB] Baumer

More information

2 3. 1,,,.,., CAD,,,. : 1) :, 1,,. ; 2) :,, ; 3) :,; 4) : Fig. 1 Flowchart of generation and application of 3D2digital2building 2 :.. 3 : 1) :,

2 3. 1,,,.,., CAD,,,. : 1) :, 1,,. ; 2) :,, ; 3) :,; 4) : Fig. 1 Flowchart of generation and application of 3D2digital2building 2 :.. 3 : 1) :, 3 1 Vol. 3. 1 2008 2 CAA I Transactions on Intelligent Systems Feb. 2008, (,210093) :.,; 3., 3. :; ; ; ; : TP391 :A :167324785 (2008) 0120001208 A system f or automatic generation of 3D building models

More information

傳 播 與 管 理 研 究 第 四 卷 第 二 期 壹 研 究 背 景 與 研 究 目 的 貳 文 獻 探 討 58

傳 播 與 管 理 研 究 第 四 卷 第 二 期 壹 研 究 背 景 與 研 究 目 的 貳 文 獻 探 討 58 多 頻 道 競 爭 市 場 之 節 目 多 樣 化 分 析 57 傳 播 與 管 理 研 究 第 4 卷 第 2 期 2005 年 元 月 頁 57-89 多 頻 道 競 爭 市 場 之 節 目 多 樣 化 分 析 曾 曉 煜 摘 要 monopolisticmarket multi-channeloperators 關 鍵 字 : 57 傳 播 與 管 理 研 究 第 四 卷 第 二 期 壹 研

More information

Work Report

Work Report 图像特征提取 姜伟 智能系统与控制研究所 图像特征提取 特 征 点 Harris corners 图像特征提取 直线 图像特征提取 区域 图像特征提取 特征点的提取 Harris 角点检测算子 Sift 特征点检测 SURF 特征点检测 直线的提取 Canny 算子 区域的特征提取 MSER (Maximally stable extremal region) 特征点的提取 提取点特征的作用 图像的点特征是许多计算机视觉算法的基础

More information

Microsoft PowerPoint - ATF2015.ppt [相容模式]

Microsoft PowerPoint - ATF2015.ppt [相容模式] Improving the Video Totalized Method of Stopwatch Calibration Samuel C.K. Ko, Aaron Y.K. Yan and Henry C.K. Ma The Government of Hong Kong Special Administrative Region (SCL) 31 Oct 2015 1 Contents Introduction

More information

108 臺 中 教 育 大 學 學 報 : 人 文 藝 術 類 Abstract To satisfy the audiences' pursuing of image realism and content imagination, the combination of live footage

108 臺 中 教 育 大 學 學 報 : 人 文 藝 術 類 Abstract To satisfy the audiences' pursuing of image realism and content imagination, the combination of live footage 107 臺中教育大學學報 人文藝術類 00 年 ( ) 0 - 使用攝影機追蹤的實景合成電腦動畫創作研究 Applying Camera Tracking as a Tool to Composite Computer Animation onto Video Editing 呂洽毅 鐘世凱 Cha-Yi Lu Shih-Kai Chung 收件日期 年 月 日 接受日期 年 月 日 摘 要 為了滿足閱聽者對影像真實感與想像力的需求

More information

标题

标题 第 40 卷 第 7 期 2014 年 7 月 北 京 工 业 大 学 学 报 JOURNAL OF BEIJING UNIVERSITY OF TECHNOLOGY Vol. 40 No. 7 Jul. 2014 基 于 图 像 识 别 技 术 的 烟 包 封 条 缺 陷 检 测 赵 众, 常 灿, 陈 磊 ( 北 京 化 工 大 学 信 息 学 院, 北 京 100029) 摘 要 : 为 了

More information

效 率 的 評 估 準 則 1.1 研 究 動 機 和 背 景 常 見 於 數 位 相 機 的 自 動 對 焦 系 統, 分 為 主 動 式 和 被 動 式 自 動 對 焦 兩 種 技 術 主 動 式 對 焦 系 統, 必 需 藉 助 測 量 距 離 裝 置 主 動 元 件, 測 量 拍 攝 物 體

效 率 的 評 估 準 則 1.1 研 究 動 機 和 背 景 常 見 於 數 位 相 機 的 自 動 對 焦 系 統, 分 為 主 動 式 和 被 動 式 自 動 對 焦 兩 種 技 術 主 動 式 對 焦 系 統, 必 需 藉 助 測 量 距 離 裝 置 主 動 元 件, 測 量 拍 攝 物 體 快 速 影 像 式 自 動 對 焦 技 術 研 究 Research On Fast Image Based Auto Focus Technique 鄭 芳 炫 * 中 華 大 學 資 訊 工 程 學 系 fhcheng@chu.edu.tw 毛 新 惟 中 華 大 學 資 訊 工 程 學 系 e09302005@chu.edu.tw 摘 要 本 論 文 提 出 一 個 快 速 影 像 式 自 動

More information

2009.05

2009.05 2009 05 2009.05 2009.05 璆 2009.05 1 亿 平 方 米 6 万 套 10 名 20 亿 元 5 个 月 30 万 亿 60 万 平 方 米 Data 围 观 CCDI 公 司 内 刊 企 业 版 P08 围 观 CCDI 管 理 学 上 有 句 名 言 : 做 正 确 的 事, 比 正 确 地 做 事 更 重 要 方 向 的 对 错 于 大 局 的 意 义 而 言,

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

72 (2001) group waves. Key words: Correlation coefficient for consecutive wave heights, mean run length (1993) (1996) (1998) (1999) (1993) (

72 (2001) group waves. Key words: Correlation coefficient for consecutive wave heights, mean run length (1993) (1996) (1998) (1999) (1993) ( (2001) 1 1 71-82 71 1 2 3 1. chtsai@mail.ntou.edu.tw 2. 3. hsiang@mail.ihmt.gov.tw 1998 9 500 (mean run length) Group waves and dangerous waves at the coast Tsai Cheng-Han Lin Yin-Chern Tseng Hsiang-Mao

More information

34 www. cjig. cn wavelet transform 1 2 JPEG LIVE E s o = 1 T Σ log 2 C s o + 1 E T C s o Lu Wen contourlet C 0 7 N

34 www. cjig. cn wavelet transform 1 2 JPEG LIVE E s o = 1 T Σ log 2 C s o + 1 E T C s o Lu Wen contourlet C 0 7 N 17 1 2012 1 Journal of Image and Graphics Vol. 17No. 1 Jan. 2012 TP391. 4 A 1006-8961201201-0033-07. NSS J. 2012 171 33-39 NSS 214122 NSS No-reference image quality assessment based on natural scene statistics

More information

untitled

untitled 100084 E-mail: ahz@mail.tsinghua.edu.cn (Look Up Table, LUT) Adaboost 300 Adaboost TP391 Real Time Facial Expression Classification WANG Yubo, AI Haizhou, WU Bo, HUANG Chang Computer Science and Technology

More information

基于分段化结构重建的2D/3D转换技术

基于分段化结构重建的2D/3D转换技术 一 种 适 用 于 D/3D 转 换 的 分 段 化 结 构 重 建 技 术 刘 伟, 吴 毅 红, 郭 复 胜, 胡 占 义 ( 中 国 科 学 院 自 动 化 研 究 所 模 式 识 别 国 家 重 点 实 验 室 北 京 9) wliu @nlpr.ia.ac.cn 近 些 年 来,3D 电 影 逐 渐 普 及, 成 为 人 们 日 常 娱 乐 生 活 的 重 要 部 分 相 比 传 统 的

More information

Microsoft PowerPoint SSBSE .ppt [Modo de Compatibilidade]

Microsoft PowerPoint SSBSE .ppt [Modo de Compatibilidade] SSBSE 2015, Bergamo Transformed Search Based Software Engineering: A New Paradigm of SBSE He JIANG, Zhilei Ren, Xiaochen Li, Xiaochen Lai jianghe@dlut.edu.cn School of Software, Dalian Univ. of Tech. Outline

More information

(6-1) (6-2) (6-3)

(6-1) (6-2) (6-3) (6-1) (6-2) (6-3) 28-85 - 6-1-1 28 8 (6-4) (6-5) 5-86 - 6-1-2 (a) (b) (6-6) (c) (d) 4 5[s] 10 a) (b) (c) (d) 6-1-1 4 16 10 18 4 6-1-3 6-1-2(a) 6-1-2(b) 6-1-2(c) 6-1-2(d) a b d c c d b c b 170 d - 87 -

More information

Vol. 22 No. 2 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Apr ,,,,, Apriori,,,,,,,,

Vol. 22 No. 2 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Apr ,,,,, Apriori,,,,,,,, 22 2 2017 4 Vol. 22 No. 2 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Apr. 2017 1 2 3 2 1. 150080 2. 150080 3. 150080,,,,, Apriori,,,,,,,, ; ; ; ; DOI: 10. 15938 /j. jhust. 2017. 02. 023 TN911.

More information

RPN 2 DeepParts 22 part pool 2 3 HOG 12 LBP 13 Harr - like 15 DPM 16 Deformable Parts Model VGG16 X. Wang 14 VGG Convolutiona

RPN 2 DeepParts 22 part pool 2 3 HOG 12 LBP 13 Harr - like 15 DPM 16 Deformable Parts Model VGG16 X. Wang 14 VGG Convolutiona 2017 22 2 CHINESE JOURNAL OF STEREOLOGY AND IMAGE ANALYSIS Vol. 22 No. 2 June 2017 209 1007-1482 2017 02-0209 -0215 DOI 10. 13505 /j. 1007-1482. 2017. 22. 02. 014 RPN 1 2 3 3 1 1 2 3 1. 100090 2. 100090

More information

˘ªF¶Î

˘ªF¶Î 2004 3 129 153 1 2 NSC 92-2411 - H - 001-009 - A C 1 1 968 1 0 2 003 C. R. Boxer, The Christian C e n t u ry in Japan, 1549-1650 (Berkeley: University of California Press, 1967) Boxer 2 Helen J. Baroni,

More information

~ 10 2 P Y i t = my i t W Y i t 1000 PY i t Y t i W Y i t t i m Y i t t i 15 ~ 49 1 Y Y Y 15 ~ j j t j t = j P i t i = 15 P n i t n Y

~ 10 2 P Y i t = my i t W Y i t 1000 PY i t Y t i W Y i t t i m Y i t t i 15 ~ 49 1 Y Y Y 15 ~ j j t j t = j P i t i = 15 P n i t n Y * 35 4 2011 7 Vol. 35 No. 4 July 2011 3 Population Research 1950 ~ 1981 The Estimation Method and Its Application of Cohort Age - specific Fertility Rates Wang Gongzhou Hu Yaoling Abstract Based on the

More information

Microsoft Word doc

Microsoft Word doc 中 考 英 语 科 考 试 标 准 及 试 卷 结 构 技 术 指 标 构 想 1 王 后 雄 童 祥 林 ( 华 中 师 范 大 学 考 试 研 究 院, 武 汉,430079, 湖 北 ) 提 要 : 本 文 从 结 构 模 式 内 容 要 素 能 力 要 素 题 型 要 素 难 度 要 素 分 数 要 素 时 限 要 素 等 方 面 细 致 分 析 了 中 考 英 语 科 试 卷 结 构 的

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

Microsoft PowerPoint - NCBA_Cattlemens_College_Darrh_B

Microsoft PowerPoint - NCBA_Cattlemens_College_Darrh_B Introduction to Genetics Darrh Bullock University of Kentucky The Model Trait = Genetics + Environment Genetics Additive Predictable effects that get passed from generation to generation Non-Additive Primarily

More information

System Design and Setup of a Robot to Pass over Steps Abstract In the research, one special type of robots that can pass over steps is designed and se

System Design and Setup of a Robot to Pass over Steps Abstract In the research, one special type of robots that can pass over steps is designed and se 8051 8051 System Design and Setup of a Robot to Pass over Steps Abstract In the research, one special type of robots that can pass over steps is designed and setup. This type of robot uses two kinds of

More information

Microsoft PowerPoint - talk8.ppt

Microsoft PowerPoint - talk8.ppt Adaptive Playout Scheduling Using Time-scale Modification Yi Liang, Nikolaus Färber Bernd Girod, Balaji Prabhakar Outline QoS concerns and tradeoffs Jitter adaptation as a playout scheduling scheme Packet

More information

Microsoft Word - 6---15009 孙丰-作者校.doc

Microsoft Word - 6---15009 孙丰-作者校.doc 第 28 卷 第 4 期 计 算 机 辅 助 设 计 与 图 形 学 学 报 Vol. 28 No.4 2016 年 4 月 Journal of Computer-Aided Design & Computer Graphics Apr. 2016 一 种 针 对 移 动 相 机 的 实 时 视 频 背 景 减 除 算 法 孙 丰 1,2), 秦 开 怀 1)*, 孙 伟 3) 1), 郭 华 源

More information

θ 1 = φ n -n 2 2 n AR n φ i = 0 1 = a t - θ θ m a t-m 3 3 m MA m 1. 2 ρ k = R k /R 0 5 Akaike ρ k 1 AIC = n ln δ 2

θ 1 = φ n -n 2 2 n AR n φ i = 0 1 = a t - θ θ m a t-m 3 3 m MA m 1. 2 ρ k = R k /R 0 5 Akaike ρ k 1 AIC = n ln δ 2 35 2 2012 2 GEOMATICS & SPATIAL INFORMATION TECHNOLOGY Vol. 35 No. 2 Feb. 2012 1 2 3 4 1. 450008 2. 450005 3. 450008 4. 572000 20 J 101 20 ARMA TU196 B 1672-5867 2012 02-0213 - 04 Application of Time Series

More information

1 : 29, ;,. 1., ;,,, ;, ( ) ( ), ( ) ;, (Support vector machine, SVM)., ( ) ( ) [11].,,,. 4.. 5. L-K [15 16]. 6. 3 5,. 2 Fig. 2 Schematic diagram of e

1 : 29, ;,. 1., ;,,, ;, ( ) ( ), ( ) ;, (Support vector machine, SVM)., ( ) ( ) [11].,,,. 4.. 5. L-K [15 16]. 6. 3 5,. 2 Fig. 2 Schematic diagram of e 37 1 Vol. 37, No. 1 2011 1 ACTA AUTOMATICA SINICA January, 2011 1, 2 1, 2 1, 2,.,. ( ) ( );., ( ).,. DOI,,,, 10.3724/SP.J.1004.2011.00028 Human Identification Based on 3D Tracking Trajectory of Head Vertex

More information

填 写 要 求 一 以 word 文 档 格 式 如 实 填 写 各 项 二 表 格 文 本 中 外 文 名 词 第 一 次 出 现 时, 要 写 清 全 称 和 缩 写, 再 次 出 现 时 可 以 使 用 缩 写 三 涉 密 内 容 不 填 写, 有 可 能 涉 密 和 不 宜 大 范 围 公

填 写 要 求 一 以 word 文 档 格 式 如 实 填 写 各 项 二 表 格 文 本 中 外 文 名 词 第 一 次 出 现 时, 要 写 清 全 称 和 缩 写, 再 次 出 现 时 可 以 使 用 缩 写 三 涉 密 内 容 不 填 写, 有 可 能 涉 密 和 不 宜 大 范 围 公 2013 年 度 上 海 高 校 市 级 精 品 课 程 申 报 表 ( 本 科 ) 学 校 名 称 东 华 大 学 课 程 名 称 计 算 机 系 统 与 网 络 技 术 课 程 类 型 理 论 课 ( 不 含 实 践 ) 理 论 课 ( 含 实 践 ) 实 验 ( 践 ) 课 所 属 一 级 学 科 名 称 所 属 二 级 学 科 名 称 课 程 负 责 人 申 报 日 期 工 科 计 算 机

More information

1 VLBI VLBI 2 32 MHz 2 Gbps X J VLBI [3] CDAS IVS [4,5] CDAS MHz, 16 MHz, 8 MHz, 4 MHz, 2 MHz [6] CDAS VLBI CDAS 2 CDAS CDAS 5 2

1 VLBI VLBI 2 32 MHz 2 Gbps X J VLBI [3] CDAS IVS [4,5] CDAS MHz, 16 MHz, 8 MHz, 4 MHz, 2 MHz [6] CDAS VLBI CDAS 2 CDAS CDAS 5 2 32 1 Vol. 32, No. 1 2014 2 PROGRESS IN ASTRONOMY Feb., 2014 doi: 10.3969/j.issn.1000-8349.2014.01.07 VLBI 1,2 1,2 (1. 200030 2. 200030) VLBI (Digital Baseband Convertor DBBC) CDAS (Chinese VLBI Data Acquisition

More information

ZUBAN.dvi

ZUBAN.dvi 第 49 卷 第 3 期 2013 年 6 月 兰 州 大 学 学 报 ( 自 然 科 学 版 ) Journal of Lanzhou University (Natural Sciences) Vol. 49 No. 3 Jun. 2013 文 章 编 号 : 0455-2059(2013)03-0299-07 西 北 地 区 城 市 化 过 程 中 水 资 源 约 束 时 空 变 化 以 西

More information

穨 PDF

穨 PDF 103 122 103 88 7 * ** ** * (Feature Extraction System) (Fourier Transform) * ** 104 [2-7] [4-7] [8-9] [7,10-11] [12-13] [14];[15] (Fourier Descriptors, FD) ;[16] ;[17] ;Wu[18] B (B-spline) 6 : (edge enhancement)

More information

摘要

摘要 國 立 高 雄 師 範 大 學 客 家 文 化 研 究 所 碩 士 論 文 客 家 文 學 中 的 女 性 形 象 與 主 體 敘 事 Female Image and Self Narration in Hakka Literature 指 導 教 授 : 吳 中 杰 博 士 研 究 生 : 林 惠 珊 撰 中 華 民 國 九 十 九 年 七 月 本 論 文 獲 行 政 院 客 家 委 員 會 99

More information

untitled

untitled (211) * ** *** **** e-learning ID * ** ** **** (212) e-learning WWW e-learning Cisco John Chambers 2000 WCIT 2000 2001 2001MIC2001 E-learning 2002 2004 2001 CUX Corporate University Xchange2001 1999 c-learning

More information

紀智超碩士論文.PDF

紀智超碩士論文.PDF .......2.2....3...4.4...6.5...24... 27 2....28 2.2...29 Y ( )...32 X ( )...35 2.3...37 2.4...43...43...44...44...45...46...48... 50 3....50...50...50...5...5 3.2...53 3.3...54 3.4...55... 58... 59 i RGB

More information

(Microsoft PowerPoint - UML\302\262\244\266_use case.ppt)

(Microsoft PowerPoint - UML\302\262\244\266_use case.ppt) UML 簡 介 _Use Case Diagram 資 訊 科 技 系 林 偉 川 UML 簡 介 2 1 UML UML 是 Unified Modeling Language 的 縮 寫, 中 文 翻 譯 為 統 一 塑 模 語 言 UML 統 合 了 物 件 導 向 方 法 論 之 各 派 不 同 的 方 法, 提 供 了 一 致 性 的 圖 形 語 言 做 為 開 發 系 統 的 溝 通 媒

More information

Microsoft Word - 11月電子報1130.doc

Microsoft Word - 11月電子報1130.doc 發 行 人 : 楊 進 成 出 刊 日 期 2008 年 12 月 1 日, 第 38 期 第 1 頁 / 共 16 頁 封 面 圖 話 來 來 來, 來 葳 格 ; 玩 玩 玩, 玩 數 學 在 11 月 17 到 21 日 這 5 天 裡 每 天 一 個 題 目, 孩 子 們 依 據 不 同 年 段, 尋 找 屬 於 自 己 的 解 答, 這 些 數 學 題 目 和 校 園 情 境 緊 緊 結

More information

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

More information

Action Research of Transforming Life Experiences Into a Story --Take Pottery Education at Da-Yun Primary School as an Example 27 1995 1 2 3 4 5 6 7 8 9 Abstract Action Research of transforming life experiences

More information

綠色產業、生活風格與健康論述:有機食品消費之社會文化分析

綠色產業、生活風格與健康論述:有機食品消費之社會文化分析 國 立 台 灣 大 學 建 築 與 城 鄉 研 究 學 報 第 十 九 期 民 國 一 百 零 一 年 六 月 研 究 論 文 第 43 頁 64 頁 Journal of Building and Planning, National Taiwan University Number 19, Jun. 2012, Research, pp. 43-64 消 失 的 理 想 住 宅 方 案 劉 欣

More information

,.,, [9] Harris, Hausdorff, ; [10],,,. [11],,,,,., [12 13] ; [14], ;,,.,,., ( ), [15 17],. Tsang [15],,,. Tsang [16] (Simple genetic algorithm

,.,, [9] Harris, Hausdorff, ; [10],,,. [11],,,,,., [12 13] ; [14], ;,,.,,., ( ), [15 17],. Tsang [15],,,. Tsang [16] (Simple genetic algorithm 39 9 Vol. 39, No. 9 2013 9 ACTA AUTOMATICA SINICA September, 2013 1 2 3,,., ;,,, ;,,. LTS Hausdorff (Least trimmed square Hausdorff distance, LTS-HD),.,,.,,. DOI, LTS Hausdorff,,,,.., 2013, 39(9): 1447

More information

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui,

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui, 中 国 科 学 技 术 大 学 工 程 硕 士 学 位 论 文 地 铁 内 移 动 通 信 室 内 覆 盖 分 析 及 应 用 作 者 姓 名 : 学 科 专 业 : 盛 海 亮 电 子 与 通 信 导 师 姓 名 : 李 辉 副 教 授 赵 红 媛 高 工 完 成 时 间 : 二 八 年 三 月 十 日 University of Science and Technology of Ch A dissertation

More information

中國歷史上的環境與社會國際學術研討會

中國歷史上的環境與社會國際學術研討會 1 1 (1990) 9 2 ()(2003) 30 3 38-4144-45 4 47-51 5 60-65 100 6 79-84 2 7 85-88 8 89-91 9 99-100 10 119-121 11 125-129 12 139-148 3 13 149-151 14 (1995) 167 15 173-174 175-177 16 177-179 4 17 182-183 18

More information

Microsoft Word - 100260.doc

Microsoft Word - 100260.doc 第 33 卷 第 期 电 子 与 信 息 学 报 Vol.33No. 20 年 月 Journal of Electronics & Information echnology Jan. 20 一 种 基 于 二 值 粒 子 群 优 化 和 支 持 向 量 机 的 目 标 检 测 算 法 潘 泓 * 李 晓 兵 金 立 左 夏 良 正 ( 东 南 大 学 自 动 化 学 院 南 京 20096) 摘

More information

Vol. 22 No. 4 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Aug GPS,,, : km, 2. 51, , ; ; ; ; DOI: 10.

Vol. 22 No. 4 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Aug GPS,,, : km, 2. 51, , ; ; ; ; DOI: 10. 22 4 2017 8 Vol. 22 No. 4 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Aug. 2017 150080 GPS,,, : 27. 36 km, 2. 51, 110. 43, ; ; ; ; DOI: 10. 15938 /j. jhust. 2017. 04. 015 U469. 13 A 1007-2683

More information

系統功能語言的理論及其在國小國語讀寫教學的應用

系統功能語言的理論及其在國小國語讀寫教學的應用 2013 年 南 臺 灣 教 育 學 術 研 討 會 系 統 功 能 語 言 的 理 論 及 其 在 國 國 語 讀 寫 教 學 的 應 用 - 以 三 年 級 為 例 研 究 者 : 台 南 市 太 康 國 吳 新 欽 台 南 市 太 康 國 陳 意 佳 台 南 市 太 康 國 林 佳 春 發 表 日 期 :102 年 7 月 19 日 1 系 統 功 能 語 言 的 理 論 及 其 在 國 國

More information

<4D6963726F736F667420576F7264202D20ABCAADB1A142A5D8BFFDBB50A4A4AD5EBA4BAD6E2E646F63>

<4D6963726F736F667420576F7264202D20ABCAADB1A142A5D8BFFDBB50A4A4AD5EBA4BAD6E2E646F63> 東 吳 大 學 心 理 學 系 碩 士 論 文 指 導 教 授 : 劉 惠 琴 我 與 我 的 客 家 家 庭 真 實 與 理 想 研 究 生 : 葉 桂 玉 撰 中 華 民 國 九 十 四 年 七 月 目 錄 緒 論 第 一 章 回 顧 過 去 第 一 節 第 二 節 第 三 節 第 四 節 第 五 節 第 六 節 第 七 節 第 八 節 家 庭 篇 1 小 學 篇 29 國 中 篇 35 五 專

More information

Machine Learning for Computer Vision

Machine Learning for Computer Vision 基 于 MATLAB 的 计 算 机 视 觉 插 上 人 工 智 能 的 翅 膀 MathWorks China Application Engineer Tom Shan 2014 The MathWorks, Inc. 1 题 纲 基 于 MATLAB 的 人 工 智 能 设 计 流 程 介 绍 演 示 人 工 智 能 流 程 和 常 见 挑 战 针 对 实 时 视 频 进 行 目 标 检 测

More information

臺大歷史學報35期書評

臺大歷史學報35期書評 35 BIBLID1012-8514(2005)35p.309-319 2005 6 309~319 2004.12.17 2004.1 2.31 John Lewis Gaddis, The Landscape of History: How Historians Map the Past Illustrated. 192 pp. New York: Oxford University Press,

More information

30 2008,2(1) 基 礎 上, 各 種 數 據 均 以 圖 形 化 方 式 表 達, 因 此 各 級 分 析 結 果 均 可 以 隨 時 檢 驗 另 外, 由 於 系 統 是 以 網 站 形 式 發 佈, 任 何 用 戶 均 可 通 過 網 絡 查 詢 瀏 覽 系 統 中 的 數 據, 因

30 2008,2(1) 基 礎 上, 各 種 數 據 均 以 圖 形 化 方 式 表 達, 因 此 各 級 分 析 結 果 均 可 以 隨 時 檢 驗 另 外, 由 於 系 統 是 以 網 站 形 式 發 佈, 任 何 用 戶 均 可 通 過 網 絡 查 詢 瀏 覽 系 統 中 的 數 據, 因 第 2 卷 第 1 期 澳 門 科 技 大 學 學 報 Vol.2 No.1 2008 年 6 月 30 日 Journal of Macau University of Science and Technology June 30, 2008 29 月 球 探 測 數 據 實 時 管 理 系 統 的 開 發 朱 紅 岷 **, 祝 夢 華, 劉 良 鋼 *, 許 敖 敖 ( 澳 門 科 技 大 學

More information

Microsoft Word - 2015简报第3期 修改

Microsoft Word - 2015简报第3期  修改 地 球 科 学 与 环 境 工 程 学 院 工 作 简 报 地 球 科 学 与 环 境 工 程 学 院 院 办 第 3 期 2015 年 8 月 30 日 交 大 校 训 精 勤 求 学 敦 笃 励 志 果 毅 力 行 忠 恕 任 事 目 录 专 题 报 道 1....1 2 1 3 2 4 2 5 3 6 +..3 交 大 精 神 竢 实 扬 华 自 强 不 息 7..4 8..5 9..5 10..6

More information

周年校務計劃05-06

周年校務計劃05-06 聖 家 學 校 辦 學 宗 旨 本 校 是 一 所 政 府 資 助 小 學, 屬 香 港 天 主 教 教 區 學 校 之 一 本 校 秉 承 聖 家 的 愛 主 愛 人 仁 愛 服 從 勤 勞 精 神, 培 育 學 生 德 智 體 群 美 靈 六 育 美 德 積 極 與 家 長 合 作, 配 合 先 進 教 學 法, 指 導 學 生 探 求 學 問, 養 成 良 好 的 生 活 習 慣, 培 養 正

More information

United Nations ~ ~ % 2010

United Nations ~ ~ % 2010 42 3 2018 5 Vol. 42 No. 3 May 2018 38 Population Research 2014 60 3% ~ 4% 10% 60 +

More information

报 告 1: 郑 斌 教 授, 美 国 俄 克 拉 荷 马 大 学 医 学 图 像 特 征 分 析 与 癌 症 风 险 评 估 方 法 摘 要 : 准 确 的 评 估 癌 症 近 期 发 病 风 险 和 预 后 或 者 治 疗 效 果 是 发 展 和 建 立 精 准 医 学 的 一 个 重 要 前

报 告 1: 郑 斌 教 授, 美 国 俄 克 拉 荷 马 大 学 医 学 图 像 特 征 分 析 与 癌 症 风 险 评 估 方 法 摘 要 : 准 确 的 评 估 癌 症 近 期 发 病 风 险 和 预 后 或 者 治 疗 效 果 是 发 展 和 建 立 精 准 医 学 的 一 个 重 要 前 东 北 大 学 中 荷 生 物 医 学 与 信 息 工 程 学 院 2016 年 度 生 物 医 学 与 信 息 工 程 论 坛 会 议 时 间 2016 年 6 月 8 日, 星 期 三,9:30 至 16:00 会 议 地 址 会 议 网 址 主 办 单 位 东 北 大 学 浑 南 校 区 沈 阳 市 浑 南 区 创 新 路 195 号 生 命 科 学 大 楼 B 座 619 报 告 厅 http://www.bmie.neu.edu.cn

More information

2005 Research on the Lucre, Risk, and Development of Native Bankcard Business 2005 3 2003 6.5 45 18, WTO SWOT I Abstract Research on the Lucre, Risk, and Development of Native Bankcard Business Research

More information

作 主 动 追 求 知 识 获 取 技 能, 在 心 理 和 生 理 上 都 非 常 积 极 的 个 体 (Zimmerman & Pons, 1986) 在 此 期 间, 自 我 效 能 感 (self-efficacy) 自 我 控 制 (self-control) 自 我 管 理 (self-

作 主 动 追 求 知 识 获 取 技 能, 在 心 理 和 生 理 上 都 非 常 积 极 的 个 体 (Zimmerman & Pons, 1986) 在 此 期 间, 自 我 效 能 感 (self-efficacy) 自 我 控 制 (self-control) 自 我 管 理 (self- 网 络 环 境 中 英 语 学 习 者 自 我 调 控 的 个 体 特 征 研 究 A Qualitative Study of Chinese EFL Learners Online Self-regulation * 1,2 郑 春 萍, 穆 婕 2, 章 僖 格 2, 苑 仁 庆 2, 李 芒 1 北 京 师 范 大 学 教 育 学 部 2 北 京 邮 电 大 学 人 文 学 院 * zhengchunping@bupt.edu.cn

More information

IPCC CO (IPCC2006) 1 : = ( 1) 1 (kj/kg) (kgc/gj) (tc/t)

IPCC CO (IPCC2006) 1 : = ( 1) 1 (kj/kg) (kgc/gj) (tc/t) 2011 5 5 (278 ) China Industrial Economics May 2011 No.5 1 12 (1. 100005; 2. 066004) [ ] : ; ; : ; ; [ ] ; ; ; [ ]F290 [ ]A [ ]1006-480X(2011)05-0047-11 2008 CO 2 ( ) (2009) (GDP) (Binhocker et al. 2008)

More information

:,,,,,, :,,,,,,,, (, 2007), ( Scott, 1985),,,,,,, : :,, ;, (L i & OgB rien, 1996) (policy2based resistance) ( rightful resistance),,,,, 35

:,,,,,, :,,,,,,,, (, 2007), ( Scott, 1985),,,,,,, : :,, ;, (L i & OgB rien, 1996) (policy2based resistance) ( rightful resistance),,,,, 35 : 2008 4 Society 28 :,,,,,,,, : :, (, 2005), : :,,,,,, ( : 07YBA010), 34 :,,,,,, :,,,,,,,, (, 2007), ( Scott, 1985),,,,,,, : :,, ;, (L i & OgB rien, 1996) (policy2based resistance) ( rightful resistance),,,,,

More information

I

I The Effect of Guided Discovery on The Learning Achievement and Learning Transfer of Grade 5 Students in Primary Schools I II Abstract The Effect of Guided Discovery on The Learning Achievement And Learning

More information

The Development of Color Constancy and Calibration System

The Development of Color Constancy and Calibration System The Development of Color Constancy and Calibration System The Development of Color Constancy and Calibration System LabVIEW CCD BMP ii Abstract The modern technologies develop more and more faster, and

More information

关于2007年硕士研究生培养方案修订几点要求的说明

关于2007年硕士研究生培养方案修订几点要求的说明 学 科 门 类 : 管 理 学 一 级 学 科 : 管 理 科 学 与 工 程 管 理 信 息 系 统 学 科 培 养 方 案 ( 二 级 学 科 代 码 :1201Z1) 一 学 科 概 况 管 理 信 息 系 统 是 一 个 集 管 理 科 学 信 息 技 术 和 行 为 科 学 等 多 学 科 交 叉 的 综 合 性 学 科 本 学 科 主 要 研 究 如 何 利 用 信 息 技 术 提 高

More information

第一章 緒論

第一章 緒論 Journal of China Institute of Technology Vol.30-2004.6 A Study on the Value Concept and Related Factors of the Students in Vocational High School in Taiwan Tseng-Chai ChengJan- Shing SunChing-Kuo Cheng

More information

VASP应用运行优化

VASP应用运行优化 1 VASP wszhang@ustc.edu.cn April 8, 2018 Contents 1 2 2 2 3 2 4 2 4.1........................................................ 2 4.2..................................................... 3 5 4 5.1..........................................................

More information