版本2和15间的区别 (跳过第13版)
于2007-03-20 00:49:40修订的的版本2
大小: 2652
编辑: czk
备注:
于2008-03-24 15:37:36修订的的版本15
大小: 2045
编辑: 218
备注:
删除的内容标记成这样。 加入的内容标记成这样。
行号 1: 行号 1:
== 实验内容 ==
 1. 使用强度变换的图像增强。这个实验主要是尝试各种强度变换的方法来增强图像。下载一个图片,并尝试使用:(a) 对数变换公式{{{g = c*log(1+double(f))}}} (b) 指数变换公式{{{g = 1./(1 + (m./(double(f) + eps)).^E)}}} 在(a)中只有唯一的参数c,而在(b)中有两个参数c和r。在大多数图像增强任务中,尝试是不可避免的。这个实验的目标是通过(a)和(b)方法得到最好的视觉增强效果。一旦(根据你自己的判断)你得到了两种变换的最好的视觉效果,请解释这两者之间的主要区别。
== 目的 ==
 1. 掌握强度变换
 1. 掌握直方图计算
 1. 掌握对图像进行直方图均衡化
 1. 掌握对图像常用的空域滤波
行号 4: 行号 7:
 1. Histogram Equalization == 内容 ==
 1. 使用强度变换的图像增强。这个实验主要是尝试各种强度变换的方法来增强图像。下载一个这个图片 [[attachment:Fig0308.tif]] ,并尝试使用:(a) 对数变换公式{{{g = c*log(1+im2double(f))}}} (b) 指数变换公式{{{g = 1./(1 + (c./(im2double(f) + eps)).^r)}}} 在(a)中只有唯一的参数c,而在(b)中有两个参数c和r。在大多数图像增强任务中,尝试是不可避免的。这个实验的目标是通过(a)和(b)方法得到最好的视觉增强效果。一旦(根据你自己的判断)你得到了两种变换的最好的视觉效果,请解释这两者之间的主要区别。
行号 6: 行号 10:
(a) Write a computer program for computing the histogram of an image.  1. 直方图均衡化:(a)写一个程序计算图像的直方图;(b)实现直方图均衡化算法;(c)下载图片这个图片 [[attachment:Fig0308.tif]] ,尝试对它进行直方图均衡化。你的报告中至少要包含原始图像、它的直方图、直方图均衡化转换函数的图示、增强后的图像、增强后的图像的直方图。通过这些结果来分析图像是怎么被增强的。
行号 8: 行号 12:
(b) Implement the histogram equalization technique discussed in Section 3.3.1.
行号 10: 行号 13:
(c) Download Fig. 3.8(a) and perform histogram equalization on it.  1. 空域滤波。写一个程序对图像进行空域滤波。滤波模板的大小是固定的3x3。但是系数是可变的。这个程序要写得通用一些,后面的程序可能需要用到这个算法。
行号 12: 行号 15:
As a minimum, your report should include the original image, a plot of its histogram, a plot of the histogram-equalization transformation function, the enhanced image, and a plot of its histogram. Use this information to explain why the resulting image was enhanced as it was.  1. 拉普拉斯滤波。(a)使用前面两个程序实现一个拉普拉斯增强算法,使用如下模板
 {{{
-1 -1 -1
-1 8 -1
-1 -1 -1
}}}
 (b) 对图像 [[attachment:Fig3.40(a).jpg|attachment:Fig3.40(a).jpg]] 进行拉普拉斯滤波,并对它进行增强以使其适合观测。
行号 14: 行号 23:
   1. Arithmetic Operations

Write a computer program capable of performing the four arithmetic operations between two images. This project is generic, in the sense that it will be used in other projects to follow. (See comments on pages 112 and 116 regarding scaling). In addition to multiplying two images, your multiplication function must be able to handle multiplication of an image by a constant.

 1. Spatial Filtering

Write program to perform spatial filtering of an image (see Section 3.5 regarding implementation). You can fix the size of the spatial mask at 3 x 3, but the coefficients need to be variables that can be input into your program. This project is generic, in the sense that it will be used in other projects to follow.

 
 1. Enhancement Using the Laplacian

(a) Use the programs developed in Projects 03-03 and 03-04 to implement the Laplacian enhancement technique described in connection with Eq. (3.7-5). Use the mask shown in Fig. 3.39(d).

(b) Duplicate the results in Fig. 3.40. You will need to download Fig. 3.40(a).

 1. Unsharp Masking

(a) Use the programs developed in Projects 03-03 and 03-04 to implement high-boost filtering, as given in Eq. (3.7-8). The averaging part of the process should be done using the mask in Fig. 3.34(a).

(b) Download Fig. 3.43(a) and enhance it using the program you developed in (a). Your objective is to choose constant A so that your result visually approximates Fig. 3.43(d).
 1. Unsharp masking:(a) 使用前面写的程序实现high-boost滤波。平滑滤波处理使用如下模板进行
 {{{
1/9 1/9 1/9
1/9 1/9 1/9
1/9 1/9 1/9
}}}
 (b) 下载图片 [[attachment:Fig3.43(a).jpg|attachment:Fig3.43(a).jpg]] ,使用这个算法来增强它。

目的

  1. 掌握强度变换
  2. 掌握直方图计算
  3. 掌握对图像进行直方图均衡化
  4. 掌握对图像常用的空域滤波

内容

  1. 使用强度变换的图像增强。这个实验主要是尝试各种强度变换的方法来增强图像。下载一个这个图片 Fig0308.tif ,并尝试使用:(a) 对数变换公式g = c*log(1+im2double(f)) (b) 指数变换公式g = 1./(1 + (c./(im2double(f) + eps)).^r) 在(a)中只有唯一的参数c,而在(b)中有两个参数c和r。在大多数图像增强任务中,尝试是不可避免的。这个实验的目标是通过(a)和(b)方法得到最好的视觉增强效果。一旦(根据你自己的判断)你得到了两种变换的最好的视觉效果,请解释这两者之间的主要区别。

  2. 直方图均衡化:(a)写一个程序计算图像的直方图;(b)实现直方图均衡化算法;(c)下载图片这个图片 Fig0308.tif ,尝试对它进行直方图均衡化。你的报告中至少要包含原始图像、它的直方图、直方图均衡化转换函数的图示、增强后的图像、增强后的图像的直方图。通过这些结果来分析图像是怎么被增强的。

  3. 空域滤波。写一个程序对图像进行空域滤波。滤波模板的大小是固定的3x3。但是系数是可变的。这个程序要写得通用一些,后面的程序可能需要用到这个算法。
  4. 拉普拉斯滤波。(a)使用前面两个程序实现一个拉普拉斯增强算法,使用如下模板
    -1 -1 -1
    -1  8 -1
    -1 -1 -1

    (b) 对图像 attachment:Fig3.40(a).jpg 进行拉普拉斯滤波,并对它进行增强以使其适合观测。

  5. Unsharp masking:(a) 使用前面写的程序实现high-boost滤波。平滑滤波处理使用如下模板进行
    1/9 1/9 1/9
    1/9 1/9 1/9
    1/9 1/9 1/9

    (b) 下载图片 attachment:Fig3.43(a).jpg ,使用这个算法来增强它。

图像空域增强实验 (2008-03-24 15:37:36由218编辑)

ch3n2k.com | Copyright (c) 2004-2020 czk.