大学职业搜题刷题APP
下载APP
首页
课程
题库模板
Word题库模板
Excel题库模板
PDF题库模板
医考护考模板
答案在末尾模板
答案分章节末尾模板
题库创建教程
创建题库
登录
logo - 刷刷题
创建自己的小题库
搜索
【简答题】

下列matlab代码将高斯混合模型 Gaussian mixture models (GMMs)用于数字视频的运动检测,摄像机和街景背景静止,只有最多两辆轿车运动。请根据上下文填写(2)、(11)、(13)、(16)、(24)横线处代码。 (1) foregroundDetector = vision.ForegroundDetector('NumGaussians', 3, 'NumTrainingFrames', 50); (2) = vision.Blobysis('BoundingBoxOutputPort', true, 'AreaOutputPort', false, 'CentroidOutputPort', false, 'MinimumBlobArea', 150); (3) videoReader = vision.VideoFileReader('visiontraffic.avi'); (4) videoPlayer = vision.VideoPlayer('Name', 'Detected Cars'); (5) videoPlayer.Position(3:4) = [650,400]; % window size: [width, height] (6) se = strel('square', 3); % morphological filter for noise removal (7) while ~isDone(videoReader) (8) % read the next video frame (9) frame = step(videoReader); (10) % Detect the foreground in the current video frame (11) foreground = step(foregroundDetector, ); (12) % Use morphological opening to remove noise in the foreground (13) filteredForeground = imopen(foreground, ); (14) % Detect the connected components with the specified minimum area, and (15) % compute their bounding boxes (16) bbox = step(blobysis, ); (17) % Draw bounding boxes around the detected cars (18) result = insertShape(frame, 'Rectangle', bbox, 'Color', 'green'); (19) % Display the number of cars found in the video frame (20) numCars = size(bbox, 1); (21) result = insertText(result, [10 10], numCars, 'BoxOpacity', 1, 'FontSize', 14); (22) step(videoPlayer, result); % display the results (23)end (24) release( ); % close the video file

手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
收藏 - 刷刷题收藏
举报
参考答案:
举一反三

【单选题】语音转换的主要方法有码本映射法、高斯混合模型法和深度神经网络法等,以下有关说法错误的是()

A.
三种方法都要建立源说话人和目标说话人间语音特征的映射关系
B.
码本映射法通过 源说话人和目标说话人 码本间的映射关系保证语音内部频谱的连续性
C.
高斯混合模型法用混合高斯分布模型表示语音的声学特征
D.
深度神经网络法可以建立 源说话人和目标说话人间的 非线性 映射关系

【多选题】基于邻近帧差值的固定阈值假设检验的数字视频运动检测,存在鬼影 ghosting 等问题,可以改进的方法包括

A.
双邻近帧差值二值化求交方法
B.
平均噪点方法
C.
背景建模方法
D.
自适应阈值的假设检验方法
相关题目:
【单选题】语音转换的主要方法有码本映射法、高斯混合模型法和深度神经网络法等,以下有关说法错误的是()
A.
三种方法都要建立源说话人和目标说话人间语音特征的映射关系
B.
码本映射法通过 源说话人和目标说话人 码本间的映射关系保证语音内部频谱的连续性
C.
高斯混合模型法用混合高斯分布模型表示语音的声学特征
D.
深度神经网络法可以建立 源说话人和目标说话人间的 非线性 映射关系
【多选题】基于邻近帧差值的固定阈值假设检验的数字视频运动检测,存在鬼影 ghosting 等问题,可以改进的方法包括
A.
双邻近帧差值二值化求交方法
B.
平均噪点方法
C.
背景建模方法
D.
自适应阈值的假设检验方法
刷刷题-刷题-导入试题 - 刷刷题
参考解析:
AI解析
重新生成
题目纠错 0
发布
刷刷题-刷题-导入试题 - 刷刷题刷刷题-刷题-导入试题 - 刷刷题刷刷题-刷题-导入试题 - 刷刷题
刷刷题-刷题-导入试题 - 刷刷题
刷刷题-刷题-导入试题 - 刷刷题
刷刷题-单词鸭