资源简介
多尺度hessian滤波器,图像增强,参考frangi的论文
代码片段和文件信息
function [Lambda1Lambda2IxIy]=eig2image(DxxDxyDyy)
% This function eig2image calculates the eigen values from the
% hessian matrix sorted by abs value. And gives the direction
% of the ridge (eigenvector smallest eigenvalue) .
%
% [Lambda1Lambda2IxIy]=eig2image(DxxDxyDyy)
%
%
% | Dxx Dxy |
% | |
% | Dxy Dyy |
% Compute the eigenvectors of J v1 and v2
tmp = sqrt((Dxx - Dyy).^2 + 4*Dxy.^2);
v2x = 2*Dxy; v2y = Dyy - Dxx + tmp;
% Normalize
mag = sqrt(v2x.^2 + v2y.^2); i = (mag ~= 0);
v2x(i) = v2x(i)./mag(i);
v2y(i) = v2y(i)./mag(i);
% The eigenvectors are orthogonal
v1x = -v2y;
v1y = v2x;
% Compute the eigenvalues
mu1 = 0.5*(Dxx + Dyy + tmp);
mu2 = 0.5*(Dxx + Dyy - tmp);
% Sort eigen values by absolute value abs(Lambda1) check=abs(mu1)>abs(mu2);
Lambda1=mu1; Lambda1(check)=mu2(check);
Lambda2=mu2; Lambda2(check)=mu1(check);
Ix=v1x; Ix(check)=v2x(check);
Iy=v1y; Iy(check)=v2y(check);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3938164 2009-06-11 14:40 ExampleVolumeStent.mat
文件 3976 2009-12-02 22:02 FrangiFilter2D.m
文件 5657 2010-03-02 16:05 FrangiFilter3D.m
文件 1025 2009-06-11 15:19 Hessian2D.m
文件 1938 2009-06-11 15:23 Hessian3D.m
文件 986 2009-10-27 14:46 eig2image.m
文件 12432 2009-08-26 14:14 eig3volume.c
文件 0 2009-10-02 13:37 eig3volume.m
文件 22500 2009-09-30 19:33 imgaussian.c
文件 2073 2009-09-24 18:09 imgaussian.m
文件 1335 2010-03-02 10:09 license.txt
文件 116255 2009-06-11 14:03 vessel.png
相关资源
- VC 图像几何变换、图像平移、垂直水
- PCA分类器论文+代码实现+训练测试图像
- 公安视频图像信息数据库协议_v1.3.p
- 基于PCA的人脸识别技术的研究
- 基于深度学习的图像检索系统CNN
- 复杂背景与天气条件下的棉花叶片图
- 基于tensorflow的深度学习图像分类案例
- stm32f1+ov7725进行图像处理
- 图像识别程序代码Version 2.0 January 20
- labelImg-master.zip
- opencv图像处理方法总结.pdf
- 舌图像分割
- 基于stm32的0v7670图像处理
- 图像高斯噪声和椒盐噪声,中指均值
- 数字图像处理 刚萨雷斯 第三版中文版
- 图像分割方法在遥感图像分析中的应
- 基于彩色图像的Canny边缘检测算法
- 数字媒体技术总结
- H-JPGRecovery超强jpg照片恢复软件v2.0中文
- 论文研究-基于SURF和快速近似最近邻搜
- 匀光匀色软件(ModifyUI)V20181105绿色免
- 论文研究-基于Harris角点和SURF特征的遥
- 论文研究-改进的基于SIFT和RANSAC的图像
- Foto-Mosaik-Edda(马赛克拼图制作软件)
- Img2Ozf(Ozi地图转换工具)v3.20官方安
- 论文研究-基于卷积神经网络的图像隐
- 图片视频转文本TXT字符图像(技术宅
- topaz滤镜64位中文版2017整合版Photosho
- ImageConverter(万能图片转换器)2009免
- VC 图像处理相关源代码,共28套打包
评论
共有 条评论