欢迎来到冰豆网! | 帮助中心 分享价值,成长自我!
冰豆网
全部分类
  • IT计算机>
  • 经管营销>
  • 医药卫生>
  • 自然科学>
  • 农林牧渔>
  • 人文社科>
  • 工程科技>
  • PPT模板>
  • 求职职场>
  • 解决方案>
  • 总结汇报>
  • 党团工作>
  • ImageVerifierCode 换一换
    首页 冰豆网 > 资源分类 > DOCX文档下载
    分享到微信 分享到微博 分享到QQ空间

    北邮国院视频图像处理.docx

    • 资源ID:154623       资源大小:31.10MB        全文页数:29页
    • 资源格式: DOCX        下载积分:3金币
    快捷下载 游客一键下载
    账号登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录 QQ登录
    二维码
    微信扫一扫登录
    下载资源需要3金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

    加入VIP,免费下载
     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    北邮国院视频图像处理.docx

    1、EBU723U Image and Video Processing 2014/15Coursework report and exercisesName:_Yu Ma_Username:_jp10212769_Exercise 1 (a)Reading/writing PGM/PPM images: The first step towards image and video processing is reading images from file and write them to file. There exist different standards that store the

    2、 information in different formats; before opening an image, knowledge of the standard is necessary. Two widely used image formats are PPM and PGM. The PGM format is a greyscale file format designed to be easy to manipulate. A PGM image represents a greyscale graphic image. For most purposes, a PGM i

    3、mage can just be thought of an array of integers. The name PGM is the acronym of Portable Grey Map. The name PPM is the acronym for Portable Pixel Map. Images in this format (or a precursor of it) were once also called portable pixmaps. It is a highly redundant format, and contains a lot of informat

    4、ion that the Human Visual System (HVS) cannot even discern. However, as PGM, PPM is very easy to write and analyze. The goal of the first part of todays lab is to let students become comfortable with these two formats. You will implement functions to read and to write PPM and PGM images. The final d

    5、emonstration of the implemented software will be done using well-known test images: LENA, BABOON, PEPPERS, etc. You can find PPM and PGM versions of these images in the EBU723U intranet pages. The writing function must add as comment in the header: “image created by your_name your_surname”. Include

    6、in your submission the file resulting from reading the images provided and writing them back in their original format.Summarize in 5 points the operations necessary to read a PGM/PPM image:1. Open the image in read mode.2. Ignore comments in the file3. Distinguish the image is a PGM or PPM.4. Read i

    7、nformation of the image.5. Read matrix.Summarize in 5 points the operations necessary to write a PGM/PPM image:1. Open the image in write mode.2. Write comments in the file.3. Decide writting a PGM or PPM image.4. Write information of the image.5. Write matrix.What is the difference between the iden

    8、tifier P3 and P6?For identifier P3,the image is stored as ASCII and each line is less than 70 characters.For identifier P6,the image is stored as binary.P6 format is smaller than P3 format and read P6 format file is faster than P3 format file.Exercise 1 (b)Format conversions: in this part of the lab

    9、, the images will be converted from colour to grey scale; in other words a PPM image will be converted to the PGM format. You will implement a function called “BUPT_format_converter” which transforms images from color to grey-scale using the following YUV conversion:Y = 0.257R + 0.504G + 0.098B + 16

    10、U = 0.439R + 0.368G 0.071B + 128V = -0.148R 0.291G + 0.439B + 128What component represents the luminance, i.e. the grey-levels, of an image? Y represents the luminance.Use thee boxes to display the results for the colour to grey-scale conversion. Lena colour (RGB)Lena greyBaboon greyBaboon colour (R

    11、GB)Is the transformation between the two colour-spaces linear? Motivate your answerThe transformation between the two colour-spaces is linear.Transform each layer,then combine each outcome.Or Transform layers together.These two outcomes are same.f(ax+by) = af(x)+bf(y)Display in the box the Lena imag

    12、e converted to YUV 3 channels format. Are the colors of the previous picture distorted? If yes why?They are different.Because RGB used for PC and YUV used for TV.If we show YUV image on PC,it will be distorted.Based on the formula for the RGB to YUV conversion, derive the formula for the YUV to RGB

    13、conversion?R=1.164*(Y-16)+1.596*(V-128)G=1.164*(Y-16)-0.813*(V-128)-0.391*(U-128)B=1.164*(Y-16)+2.018*(U-128)Use the formula you derived at the previous step to convert the YUV image back to the original RGB format. Display the result in the box.Exercise 1 (c)Sub-sampling: The HVS is incapable of pe

    14、rceiving certain details in an image. Therefore high compression ratios can be achieved by exploiting the characteristics of the HVS, thus discarding what has a low visual relevance. However, this process can introduce distortions in the compressed data. A simple way to exploit the characteristics o

    15、f the HVS compression purposes is to sub-sample an image. A drawback of this approach is that it is possible to incur in well-know problems of a discrete representation, such as aliasing. This part of the lab covers some simple sub-sampling operations.Implement a function that sub-samples grey level images by a factor n, with n a multiple of 2. The function should be able to sub-sample independently in the horizontal and in the vertical direction or in both directions at the same time. Display the results of su


    注意事项

    本文(北邮国院视频图像处理.docx)为本站会员主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们

    copyright@ 2008-2022 冰点文档网站版权所有

    经营许可证编号:鄂ICP备2022015515号-1

    收起
    展开