CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - imread

搜索资源列表

  1. SPIHT(Matlab).zip

    3下载:
  2. % Matlab implementation of SPIHT (without Arithmatic coding stage) % % By Jing Tian, scuteejtian@hotmail.com fprintf('-----------   Welcome to SPIHT Matlab Demo!   ----------------\n'); fprintf('-----------   Load
  3. 所属分类:压缩解压

    • 发布日期:2008-07-07
    • 文件大小:232873
    • 提供者:jasonchang
  1. wavelift

    0下载:
  2. 暂时只支持jpeg2000支持的 cdf97 和spline53 可以这样来测试: x=imread( E:\\study\\jpeg2000\\images\\lena.tif ) % see the decomposition coefficients y=wavelift(x, 1, spl53 ) using spline 5/3 wavelet figure subplot(1,2,1) imshow(x) subplot(1,2,2) imshow(mat2g
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:6454
    • 提供者:余庆红
  1. wavecdf97(x=imread)

    0下载:
  2. 用基本小波97进行变换wavecdf97(x=imread)-the basic wavelet transform wavecdf97 97 (x = imread)
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2008-10-13
    • 文件大小:3599
    • 提供者:王雨今
  1. imread

    0下载:
  2. 灰度图象的直方图均衡化;梯度;直方图规定化;灰度图象的直方图数据;灰度直接变换:增强对比度-gray image histogram equalization; Gradient; Histogram provisions; Gray image histogram data; Gray direct transformation : Enhanced Contrast
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:2933
    • 提供者:yang
  1. PVEInterpolation

    0下载:
  2. Partial volume correction method using reverse diffusion interpolation This function implements a reverse diffusion scheme to interpolate images to correct for partial volume effect. Under the assumption that the pdf is about the size of the pix
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2008-10-13
    • 文件大小:1635038
    • 提供者:xj
  1. dsakf

    0下载:
  2. % 文件名:randlsbget.m % 程序员:余波 % 编写时间:2007.6.25 % 函数功能: 本函数将完成提取隐秘于上的秘密信息 % 输入格式举例:result=( scover.jpg ,56, secret.txt ,2001) % 参数说明: % output是信息隐藏后的图象 % len_total是秘密信息的长度 % goalfile是提取出的秘密信息文件 % key是随机间隔函数的密钥 % result是提取的信息 functi
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:3423
    • 提供者:yubo
  1. pingtu

    0下载:
  2. 这两天着迷goolge earth抓图,编写了一个拼图的程序,主要是用到了imread imwrite和对话框几个知识点,很简单的。
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:1195
    • 提供者:jerry
  1. rc

    0下载:
  2. 实验目的 本次实验与书中第二章及3.2节的部分内容有关,包括以下几个部分: (1)开始使用MATLAB (2)显示图像,理解图像的模型 (3)使用图像的不同格式,理解图像压缩的意义 (4)对图像做简单的操作 本次实验需要熟练使用以下几个MATLAB命令: imread, imwrite, imshow,figure
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:1676
    • 提供者:Victor
  1. Code2

    1下载:
  2. 实验目的: 1) 图像水平集合 2) 图像加密算法 3) 边缘提取 4) 噪音图像的产生 (2)显示图像,理解图像的模型 (3)使用图像的不同格式,理解图像压缩的意义 (4)对图像做简单的操作 本次实验需要熟练使用以下几个MATLAB命令: imread, imwrite, imshow,figure
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2008-10-13
    • 文件大小:6415
    • 提供者:Victor
  1. OpenCV_face_detector

    1下载:
  2. This zip file contains source code and windows executables for carrying out face detection on a gray scale image. The code implements Viola-Jones adaboosted algorithm for face detection by providing a mex implementation of OpenCV s face detector. Ins
  3. 所属分类:图形/文字识别

    • 发布日期:2008-10-13
    • 文件大小:1295516
    • 提供者:ruan
  1. 区域生长Threshoid为分割阈值

    0下载:
  2. %Threshoid为分割阈值 [filename,pathname]=... uigetfile({'*.*';'*.bmp';'*.tif';'*.png'},'select picture'); %选择图片路径 str=[pathname filename]; %合成路径+文件名 I=imread(str); I=double(I); [m,n,k]=size(I);%图像大小 Threshold=50/255.0;%归一化,并设置阈值为50 ColorRed=
  3. 所属分类:源码下载

  1. 加噪音去噪音

    0下载:
  2. clear all %加噪音去噪音 I = imread('wolf.jpg'); I=rgb2gray(I); J = imnoise(I,'salt & pepper',0.02); K = medfilt2(J); imshow(J), figure, imshow(K)
  3. 所属分类:matlab例程

  1. 对图像进行YCbCr分解

    0下载:
  2. rgb=imread('lena.png'); YCbCr=rgb2ycbcr(rgb); subplot(221),imshow(rgb),title('image'); Y=YCbCr(:,:,1); Cb=YCbCr(:,:,2); Cr=YCbCr(:,:,3); ycbcrmap(:,:,1)=Y; ycbcrmap(:,:,2)=128; ycbcrmap(:,:,3)=128; subplot(222),imshow(Y),title('Y'); ycbcrma
  3. 所属分类:matlab例程

    • 发布日期:2014-11-13
    • 文件大小:313
    • 提供者:liudaixin
  1. colormoment

    1下载:
  2. 读取图片,提取图片的颜色矩特征,其中变量I=imread( 1.jpg ),1.jpg即为需要读取的图片。-Read the image, color moments extracted image features, including variable I = imread (' 1. Jpg ' ), 1.jpg shall be required to read the pictures.
  3. 所属分类:matlab

    • 发布日期:2017-03-31
    • 文件大小:19878
    • 提供者:yijing
  1. suofang

    0下载:
  2. 读入任意大小的图像,实现长和宽上的比例缩放,matlab 图像预处理处理中有用的小程序-imread a image and resize the size of the image
  3. 所属分类:Graph program

    • 发布日期:2017-03-29
    • 文件大小:477068
    • 提供者:xiewenjuan
  1. identi

    0下载:
  2. 识别对象如下:trainset: 训练集合,该集合中从0~9的数字,所有图片大小相同。各个集合中的图像可以在Matlab中用imread函数读取为数组形式,用imshow函数显示出其图像,例如:图像0 (10).bmp可以用A=imread( 0 (10).bmp )读取为数组A,用imshow(A)或imshow( 0 (10).bmp )显示其图像。-Identify objects as follows: trainset: training set, the collection of
  3. 所属分类:Graph Recognize

    • 发布日期:2017-11-09
    • 文件大小:1798
    • 提供者:whirlwind
  1. imread

    0下载:
  2. 分析了数字图象二值化处理的特点,提供了几种二值化处理技术,并对这些算法进行了测试与比较,最后根据实践应用对二值化处理中的动态阈值的选取策略等相关技术作出了阐述-Analysis of digital image binarization deal characteristics, offers several binarization processing technology, and these algorithms were tested and compared with the las
  3. 所属分类:Special Effects

    • 发布日期:2017-04-10
    • 文件大小:693
    • 提供者:fengyu
  1. imread

    0下载:
  2. opencv实现图像处理,显示一个图像矩阵,简单有效-opencv of image processing, display an image matrix, simple and effective
  3. 所属分类:Graph program

    • 发布日期:2017-04-09
    • 文件大小:1715014
    • 提供者:李珺
  1. imread

    0下载:
  2. open cv 開檔處理 開圖檔 cvLoadImage /* #define CV_LOAD_IMAGE_UNCHANGED -1 原圖影像 #define CV_LOAD_IMAGE_GRAYSCALE 0 灰階 #define CV_LOAD_IMAGE_COLOR 1 彩色 #define CV_LOAD_IMAGE_ANYDEPTH 2 任何彩度 #define CV_LOAD_IMAGE_ANYCOLOR 4 任何彩色 */-open cv open file handle to o
  3. 所属分类:OpenCV

    • 发布日期:2017-03-26
    • 文件大小:658
    • 提供者: 張天彥
  1. imread

    0下载:
  2. imread文件代码,m格式,需要的-imread code,m format,download and check it if need it
  3. 所属分类:matlab

    • 发布日期:2017-04-08
    • 文件大小:5268
    • 提供者:陈欣
« 12 3 4 5 »
搜珍网 www.dssz.com