科学网

 找回密码
  注册
基于偏微分的图像处理---实验图像
热度 1 张祖锦 2012-5-20 18:49
实验图像一.rar 实验图像二.rar 实验图像三.rar 实验图像四.rar 实验图像五.rar
个人分类: 图像分析(matlab,PDE)|3415 次阅读|2 个评论 热度 1
MATLAB数字图像处理源程序
热度 1 张祖锦 2012-5-18 18:32
第2章.rar 第3章.rar 第4章.rar 第5章.rar 第6章.rar 第7章.rar 第8章.rar 第9章.rar 第10章.rar 第11章.rar
个人分类: 图像分析(matlab,PDE)|5894 次阅读|2 个评论 热度 1
一些图像处理matlab程序---图像处理的偏微分方程方法
张祖锦 2012-5-17 18:47
P006RGB_Decomposition.rar P069Gray_level.rar P081Image_Segmentation_Base_On_Domain.rar P082Image_Segmentation_Base_On_Domain_WaterShed.rar P083Image_Segmentation_Based_On_Edge.rar P086Two_Dimens ...
个人分类: 图像分析(matlab,PDE)|12695 次阅读|没有评论
一些图像处理matlab程序---图像处理的变分和偏微分方程方法
张祖锦 2012-5-17 18:36
1_1_P3.rar 1_2_P3.rar 1_3_P5.rar 1_4_P6.rar 2_1_P24.rar 2_2_P26.rar 2_3_P27.rar 注: 1. 这是我以前在看《图像处理的变分和偏微分方程方法, 冯象初, 王卫卫, 科学出版社, 2009》的时候留下的一些matlab程序.文件的意思如下: 1_1_P3就是 ...
个人分类: 图像分析(matlab,PDE)|6985 次阅读|没有评论
Matlab 自带演示程序 --- qtdemo 函数
张祖锦 2011-11-20 22:52
Matlab 自带演示程序 --- qtdemo 函数
qtdemo; 注: DCT 矩阵舍弃系数后重构的图像与原图像的比较。
个人分类: 图像分析(matlab,PDE)|5726 次阅读|没有评论
JPEG 压缩原理 --- dctmtx 函数的应用
张祖锦 2011-11-20 22:46
JPEG 压缩原理 --- dctmtx 函数的应用
clear all; I=imread('cameraman.tif'); figure(1); imshow(I);title('原始图像'); I=im2double(I); D=dctmtx(8); % 系数取舍矩阵 mask= ; Bdct=blkproc(I, ,'P1*x*P2',D,D'); % 用 D*A*D' 来计算离散余弦变换 Bch=blkproc(Bdct, ,'P1.*x',mask); % ...
个人分类: 图像分析(matlab,PDE)|10343 次阅读|没有评论
离散余弦逆变换---idct2函数
张祖锦 2011-11-20 12:30
离散余弦逆变换---idct2函数
clear all; RGB=imread('autumn.tif'); figure(1);imshow(RGB);title('原始图像'); I=rgb2gray(RGB); D=dct2(I); figure(2);imshow(log(abs(D)), );title('反变换图像1'); tmp=D; tmp(abs(D)50)=0; K=idct2(tmp); figure(4);imshow(K, );title('反变换图 ...
个人分类: 图像分析(matlab,PDE)|6808 次阅读|没有评论
离散余弦变换---dct2函数
张祖锦 2011-11-20 12:15
离散余弦变换---dct2函数
clear all; RGB=imread('autumn.tif'); figure(1);imshow(RGB);title('原始图像'); I=rgb2gray(RGB); D=dct2(I); figure(2);imshow(log(abs(D)),[]);colormap(jet(64));colorbar; title('离散余弦变换结果'); 注记:1.二维离散余弦变换为 这里 a( ...
个人分类: 图像分析(matlab,PDE)|9012 次阅读|没有评论
Fourier 变换的旋转不变性
张祖锦 2011-11-19 12:28
Fourier 变换的旋转不变性
clear; f=zeros(256,256); f(117:137,124:130)=1; figure(1); imshow(f); title('原始图像'); F=fft2(f); F2=fftshift(abs(F)); figure(2); x=1:256;y=1:256; mesh(x,y,F2(x,y)); colormap jet; colorbar; title('Fourier 变换结果'); 与 http://bbs.sciencenet.cn/home.php?mod=space ...
个人分类: 图像分析(matlab,PDE)|5901 次阅读|没有评论
数字图像的 Fourier 变换 --- fft2, fftshift 函数
张祖锦 2011-11-19 12:24
数字图像的 Fourier 变换 --- fft2, fftshift 函数
clear all; I=imread('cameraman.tif'); figure(1); imshow(I); title('原始图像'); F=fft2(I); F2=abs(fftshift(F)); figure(2); imshow(log(F2),[]);% 用图像显示 Fourier 变换结果一般需要取对数 colormap jet(64);colorbar; title('Fourier 变换结果');
个人分类: 图像分析(matlab,PDE)|6834 次阅读|没有评论

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-4-19 15:51

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部