医学图像处理笔记(3)

Image Convolution

医学图像处理笔记(3)_第1张图片

convolution application

Multimedia \Special effects\ photo enhancement\ computer image analysis

convolution calculate step

1. position the center of the kernel at the first pixed of an image and flip the kernel(选择180度)

2. Multiple and sum

3. slide to next pixel

边缘点处理:1. 丢弃边缘 2.边缘插值

小于0为0  ,大于255为255

Image Gradient and Edge detection

An edge is s set of connected pixels the lie on the boundary between two regions

How it comes

Different colors, brightness, textures, material, tissues

Different normal direction of surface

Different illuminance

Edge Category

医学图像处理笔记(3)_第2张图片

Gradient

A point is defined as an edge point if its 2-D first or second-order derivativeis greater than a special threshold

医学图像处理笔记(3)_第3张图片

gradient can also be interpreted as a complex number with its magnitude determined by:

and the direction determined by:

Roberts

Prewitt

Sobel


Image Noise Reduction

coherence -- incoherence

Gaussian\Median Filter\ open\ close

Gaussian reduction (更好地保持图像原来的属性) standard deviation越大,效果越强,越模糊

医学图像处理笔记(3)_第4张图片

Mean Filter(kernel尺寸越大,效果越强,越模糊)

医学图像处理笔记(3)_第5张图片

Median Filter(排序去中间值)

你可能感兴趣的:(图像处理)