- 1、本文档共7页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
MATLAB关于中图像处理与动画制作问题的研究(摘要及前言)
MATLAB中关于图像处理与动画制作问题的研究摘要一、MATLAB 中图像处理MATLAB 基本系统提供了几个简单图像处理函数,利用这些函数对图像进行读写和显示。MATLAB 还有一个功能更强的图像处理工具箱,可以对图像进行更专业的处理。1.用imread 函数将图像文件读入 MATLAB 工作空间,用imwrite 函数将图像数据和色图数据一起写入图像文件。其函数调用格式分别为A=imread(fname) 和imwrite(A,fname,fmt) 。其中,fname 为读/写的文件名,fmt 为图像文件格式。2.用image 和imagesc 来将图像显示。为了保证图像的显示效果,还应使用colormap函数设置图像的色图。二、MATLAB 中的动画制作MATLAB 具有动画制作能力,一种是储存一系列各种类型的二维或三维图,然后将它们像电影一样按次序播放出来,称为逐帧动画。另一种是描绘质点运动轨迹的动画,称为轨迹动画。1.MATLAB 中逐帧动画用到的函数: getfrname、moviein 和movie 。其中,getframe 函数的功能是截取一幅画面信息,形成一个很大的列向量;moviein(n) 函数的功能是建立一个足够大的n列矩阵,用来保存n幅画面的数据,以备播放。Movie(m,n) 函数功能是播放m所定义的画面n次,默认时一次。2.MATLAB中用comet和comet3 函数展现质点在二维和三维空间的运动轨迹。这种轨迹称为彗星轨迹曲线,函数调用格式为:comet(x,y,p) 和comet3(x,y,z,p) 。其中,x、y、z组成曲线的坐标参数,p是彗星长度的参数,默认是0.1。在二维图形中彗星长度为y向量长度的p倍。在三维图形中,彗星长度为z向量长度的p倍。关键字:图像处理;色图;动画制作;彗星轨迹A INVESTIGATION ABOUT DEAL IMAGE AND CREATE CARTOONABSTRACTNO.1. Deal images in matlabMatlab basic system provide several simple images deal functions, use those functions to read and write or display images. In addition, matlab include a strong image dealing function toolbox, may deal images much professional.Fist. Use function imread to read imagefile in matlab workplace, and use function imwrite to write image’s data and colormap in imagefile. Their transfer format are : A=imread(fname) and imwrite(A,fname,fmt). Among the the transfer format, fname represent for the filename of the imagefile to be read or written, fmt represent for the filefrmat of the image.Second. Matlab use the functions image and imagesc to display images. To ensure the images’ display effect, yet use function colormap to intercalate the image’s colormap.NO.2. Create cartoon in matlabMatlab can create cartoon. Matlab can save a series of two dimensions images and three dimensions images, then play them out in turn like a movie. This called gradual frame cartoon. Another is to describe a contrail of a particle, which called contrail cartoon.Fist. The functions in matlab to create gradual frame cartoon include getfrname、moviein and m
文档评论(0)