搜索资源列表
43566
- 本文主要叙述的是利用MATLAB软件实现图像的几何操作。利用imresize() imrotate() imcrop() 等函数实现图像的缩放,选转,剪切。 在对图像的几种几何操作中,图像的缩放和旋转都要用到插值操作。-This paper describes the use of MATLAB software images of geometric operations. Use imresize () imrotate ()
imresize
- 在MATLAB中实现图象缩放,主要针对4:3电视屏幕到16:9-in MATLAB image zoom, mainly aimed at 4:3 to 16:9 television screen
function
- makeresampler函数MATLAB原代码,是IMRESIZE程序丽的子函数-makeresampler function of the original MATLAB code IMRESIZE procedures Korea is the Functions
image_process
- This file include some image process program: void ImResize(IMAGEDATA *pRtImg, IMAGEDATA *pSrImg, int nFixSize) bool CalMoments(float Moments[7], IMAGEDATA *pSrImg) void RGB2Gray(IMAGEDATA *pRtImg, IMAGEDATA *pSrIm
imresize
- 图像插值算法有三种方法,最近邻插值、双线性插值、卷积插值
43566
- 本文主要叙述的是利用MATLAB软件实现图像的几何操作。利用imresize() imrotate() imcrop() 等函数实现图像的缩放,选转,剪切。 在对图像的几种几何操作中,图像的缩放和旋转都要用到插值操作。-This paper describes the use of MATLAB software images of geometric operations. Use imresize () imrotate ()
function
- makeresampler函数MATLAB原代码,是IMRESIZE程序丽的子函数-makeresampler function of the original MATLAB code IMRESIZE procedures Korea is the Functions
image_process
- This file include some image process program: void ImResize(IMAGEDATA *pRtImg, IMAGEDATA *pSrImg, int nFixSize) bool CalMoments(float Moments[7], IMAGEDATA *pSrImg) void RGB2Gray(IMAGEDATA *pRtImg, IMAGEDATA *pSrIm
imresize
- 图像插值算法有三种方法,最近邻插值、双线性插值、卷积插值-Image interpolation algorithm has three methods, nearest neighbor interpolation, bilinear interpolation, convolution interpolation
imresize
- imresize is a program that resize an image and than reshepe it
AdvMorph
- 用OpenCV实现的Matlab中形态学细化、提取骨架、收缩算法。测试效果与Matlab相同。-Algorithms of morphological thinning,Skeleton and Shrink,ported from Matlab to OpenCV.
imresize
- image resize in matlab
amplia_reduz_img
- function to zoom and shrink images using imresize of matlab
adaboost
- 人脸识别的adaboost。包括load_images,imresize,Classify。-Face Recognition adaboost. Including load_images, imresize, Classify.
resize
- Image resize algorithm using matlab.
bil
- this code written using IMRESIZE functions for bilinear
li9_23
- clear all I=imread( lena.bmp ) figure imshow(I) I2=imrotate(I,-4, bilinear ) 逆时针旋转4度 figure imshow(I2) I3=fliplr(I) 垂直镜像 figure imshow(I3) I4=imresize(I,0.5, bilinear ) 缩小为原图的1/2 figure imshow(I4)
imresize
- 图像放缩,能够实现图像的线性放缩,双线性放缩-Image scaling, image can be achieved linear scaling, bilinear scaling
imresize
- Matlab中的imresize图像插值算法代码-C++ code of imresize algorithm in Matlab
Homework-III
- 实现自己的imresize函数,具有最近邻和双线性两种操作方式-1. Write your own imresize() function code to simulate the matab function imresize(). You should implement at least the ‘nearest’ and the ‘bilinear’ methods. 2. Compare you result wit