-
Efficient Salient Region Detection with Soft Image Abstraction
资源描述Detecting visually salient regions in images is one of the fundamental problems in computer vision. We propose anovel method to decompose an image into large scale perceptually homogeneous elements for efficient salient region detection, using a soft image abstraction representation.
By considering both appearance similarity and spatial distribution of image pixels, the proposed representation abstracts out unnecessary image details, allowing the assignment of comparable saliency values across similar regions,and producing perceptually accurate salient region detection. We evaluate our salient region detection approach on the largest publicly available dataset with pixel accurate annotations. The experimental results show that the proposed method outperforms 18 alternate methods, reducing the mean absolute error by 25.2% compared to the previous best result, while being computationally more efficient.
- 2022-03-24 19:39:44下载
- 积分:1
-
小波在图像识别中的作用
算法步骤:
Step1:对原图像进行2级小波分解;
Step2:对识别图像构建统计特征向量;
Step3:由式(5-3)求两幅图像特征向量夹角的余弦值;
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-04-29 17:53:48下载
- 积分:1
-
视频采集回放程序
该代码主要完成视频图像采集和回放,将摄像头的视频数据采集上来,存入输入视频缓冲区,然后再拷贝到输出缓冲区,最终显示视频,代码包括硬件初始化,参数配置是采集回放等内容。
- 2023-03-24 01:45:03下载
- 积分:1
-
数字图像处理 基本操作
基本的图像处理操作,包括模糊、锐化、滤波、腐蚀、膨胀等基本操作
- 2023-07-31 12:50:05下载
- 积分:1
-
Chanvese活动轮廓程序
Chanvese活动轮廓程序。图片,文档,使用说明一应俱全。程序运行顺利
- 2022-04-19 03:56:26下载
- 积分:1
-
人工蜂群算法
优化技术这里使用的是人工蜂群算法远远优于常规的优化技术。该技术是一种用于检测眼睛比常规技术也香农FANO算法是用来寻找熵的形象。
- 2022-03-20 22:06:17下载
- 积分:1
-
opencv2.4.9 and VS2010 视频抓取图像帧的源程序
VS2010解决方案按OpenCV相关配置1.读入视频文件 将视频加载至内存,文件名需按正确路径添加2.逐帧读取文件 将视频逐帧读取,并每帧读取成图片保存3.帧图像保存 帧图像名包括图像名和序号
- 2022-05-17 05:27:16下载
- 积分:1
-
应用matlab编写的canny边缘提取边界分割算子,很强大,做图像的赶紧过来看看
资源描述应用matlab编写的canny边缘提取边界分割算子,很强大的边界提取算子,彩色图像的输入,如何你想要修改成为自己的图像,可以通过更改低通跟高通滤波的阈值来对自己的图像进行具体处理,真心很强大的程序,适合初学者的matlab程序
- 2022-01-25 19:33:22下载
- 积分:1
-
OpenCV图像灰度变化
此代码是为了改变图像灰度。这个程序使用Microsoft Visual Studio,代码块等(Visual C++为基础)。图像处理的现代技术。所以喜欢它。
- 2022-11-24 16:35:03下载
- 积分:1
-
基于卡尔曼滤波器的运动物体追踪
clear,clc,close all;
% compute the background image
Imzero = zeros(240,360,3);
video=aviread("SampleVideo.avi");
Im = double(cat(4,video(1:2:end).cdata))/255;
clear video
% Convert to RGB to GRAY SCALE image.
nFrames = size(Im,4);
Imzero = Im(:,:,:,1);
for i = 2:5
Imzero = Im(:,:,:,i)+Imzero;
end
Imback = Imzero
- 2023-07-26 08:50:04下载
- 积分:1