计算机视觉中的特征提取与相关资源
1. 代码支持与编辑
在计算机视觉领域,有许多工具可用于代码编译和实现。有可直接编译代码的系统,同时在网站(https://www.southampton.ac.uk/wmsn/book/ )上提供了Matlab脚本,用于在线教程支持。需要注意的是,这些脚本仅用于教育目的。网络上还有许多其他用Matlab实现的技术。若要使Matlab工作表在Octave中运行,所需的编辑说明可在下载的压缩文件中的readme.txt文件里找到。
以下是一个用于反转图像的Matlab函数代码:
function inverted = invert(image)
% Subtract image point brightness from maximum
% Usage: new image = invert(old image)
% Parameters: image - array of points
[rows,cols]=size(image); % get dimensions
maxi = max(max(image)); % find the maximum
% subtract image points from maximum
for x = 1:cols %address all columns
for y = 1:rows %address all rows
inverted(y,x)=maxi-image(y,x);
end
end
2. 相关文献资源
2.1 期刊、杂志和会议
在计算
超级会员免费看
订阅专栏 解锁全文

被折叠的 条评论
为什么被折叠?



