数字图像实验
hongbin_xu
一个苦逼的学生狗,生物特征识别与模式识别
展开
-
数字图像处理实验(5):Proj03-01 ~ Proj03-06
PROJECT 03-01 : Image Enhancement Using Intensity Transformations实验要求: Objective To manipulate a technique of image enhancement by intensity transformation or gray level transformation. Main r原创 2017-04-30 10:39:21 · 8062 阅读 · 3 评论 -
数字图像处理实验(14):PROJECT 06-01,Web-Safe Colors
实验要求: Objective: To know what are Web-safe colors, how to generate the RGB components for a given jpeg color image, or convert an image to RGB manually? Main requirements: Ability o原创 2017-05-27 20:45:03 · 1598 阅读 · 0 评论 -
数字图像处理实验(15):PROJECT 06-02,Pseudo-Color Image Processing
实验要求: 上面的实验要求中Objective(实验目的)部分是错误的。 然而在我拿到的大纲中就是这么写的,所以请忽视那部分,其余部分是没有问题的。 本实验是使用伪彩色强调突出我们感兴趣的灰度范围,在实验要求中制定了一些强调的对象。在程序中我们遍历所有的像素,判断其灰度级,如果在我们感兴趣的那一特定范围内,就使用彩色显示出来,即伪彩色图像处理。实验代码:%close all;clc;cl原创 2017-05-27 20:53:19 · 3116 阅读 · 0 评论 -
数字图像处理实验(16):PROJECT 06-03,Color Image Enhancement by Histogram Processing
实验要求: Objective: To know how to implement image enhancement for color images by histogram processing. Note that the definition of histogram for color images differs from that of histogram for gray原创 2017-05-27 21:04:27 · 3607 阅读 · 0 评论 -
数字图像处理实验(17):PROJECT 06-04,Color Image Segmentation
实验报告: Objective: Color image segmentation is a big issue in image processing. This students need to know the basics of this topic. Main requirements: Ability of programming with C, C原创 2017-05-27 21:13:46 · 3703 阅读 · 1 评论 -
数字图像处理实验(9):PROJECT 04-05,Correlation in the Frequency Domain
实验要求: Objective: To know how to implement correlation of 2 functions in the frequency domain and, using the fast algorithms. Main requirements: Ability of programming with C, C++, or原创 2017-05-25 10:14:30 · 1850 阅读 · 2 评论 -
数字图像处理实验(总计23个)汇总
数字图像处理实验(1):PROJECT 02-01, Image Printing Program Based on Halftoning原创 2017-05-31 10:30:10 · 16078 阅读 · 3 评论 -
数字图像处理:基于MATLAB的车牌识别项目
学过了数字图像处理,就进行一个综合性强的小项目来巩固一下知识吧。前阵子编写调试了一套基于MATLAB的车牌识别的项目的代码。今天又重新改进了一下代码,识别的效果好一点了,也精简了一些代码。这里没有使用神经网络等,只是用了最基础的数字图像处理算法,最后通过模板匹配,得到结果。源码下载链接:下载链接(注意:有两套,第二套是后来改进的,都能运行的)运行结果: 这里读取了车牌图片目录中的第一幅图片,并显示原创 2017-06-24 09:17:09 · 60126 阅读 · 82 评论 -
HOG+SVM行人检测
前言在前面的博客:HOG特征检测学习笔记中,介绍了HOG特征,也附有代码实现。这篇博客中将会使用HOG+SVM这一经典的目标检测算法来进行行人检测,但是不会讨论HOG或者SVM的理论部分,如果有不懂的请自行查阅以前的博客。我分别写了python版本和C++版本的demo,数据集是直接下载了别人的,这些都会附在文章的最后。 网上也有很多介绍HOG的不错的文章: HOG+SVM行人检测的...原创 2018-04-07 22:59:11 · 37471 阅读 · 48 评论 -
自适应中值滤波及实现
前言无意中看到了一篇比较老的论文,Adaptive median filters: new algorithms and results。感兴趣的可以下载下来看看。主要就是提出了一种自适应中值滤波算法,这个算法是很经典的中值滤波算法的改进版本,自动选择滤波器的大小,以追求更好的效果。原理十分简单,后面都尽量简短地进行说明。中值滤波器(Median Filter)中值滤波的思想就是比较一...原创 2018-04-01 21:04:17 · 47565 阅读 · 1 评论 -
HOG特征检测学习笔记
HOG简介HOG(Histogram of Oriented Gridients)特征检测算法,最早由法国研究院Dalal等在CVPR2005上提出,是一种用于检测人体目标检测的图像描述子,用于表征图像局部梯度方向和梯度强度分布特性。其主要思想是:在边缘具体位置未知的情况下,边缘方向的分布也可以很好地表示行人目标的外形轮廓。Dalal等提出的HOG+SVM算法当时在行人检测上取得了巨大的成功,...原创 2018-04-03 22:52:20 · 4910 阅读 · 1 评论 -
数字图像处理实验(13):PROJECT 05-04,Parametric Wiener Filter
实验要求: Objective: To understand the high performance of the parametric Wiener Filter in image restoration when there are additive noise after the image degradation. Main requirements:原创 2017-05-27 10:59:12 · 3017 阅读 · 0 评论 -
数字图像处理实验(12):PROJECT 05-03,Periodic Noise Reduction Using a Notch Filter
实验要求: Objective: To understand the principle of the notch filter and its periodic noise reducing ability. Main requirements: Ability of programming with C, C++, or Matlab. Instru原创 2017-05-27 10:33:55 · 3051 阅读 · 0 评论 -
数字图像处理实验(1):PROJECT 02-01, Image Printing Program Based on Halftoning
实验要求: Image Printing Program Based on Halftoning Objective: To know in principle what is “halftoning”, the definition of resolution, and how to print an image in a mono-chromosome printer. M原创 2017-04-21 23:16:37 · 3766 阅读 · 2 评论 -
数字图像处理实验(2):PROJECT 02-02, Reducing the Number of Gray Levels in an Image
实验要求: Reducing the Number of Gray Levels in an Image Objective To understand how the number of gray levels affect the image perceptual quality. Main requirements: Ability of progr原创 2017-04-22 07:57:18 · 4445 阅读 · 0 评论 -
数字图像处理实验(3):PROJECT 02-03, Zooming and Shrinking Images by Pixel Replication
实验要求: Zooming and Shrinking Images by Pixel Replication Objective To manipulate a technique of zooming and shrinking images by pixel replication. Main requirements: Ability of programmi原创 2017-04-22 08:09:29 · 4125 阅读 · 1 评论 -
数字图像处理实验(4):PROJECT 02-04 [Multiple Uses],Zooming and Shrinking Images by Bilinear Interpolation
实验要求: Zooming and Shrinking Images by Bilinear Interpolation Objective To manipulate another technique of zooming and shrinking images by bilinear interpolation. Main requirements:原创 2017-04-22 16:37:53 · 3859 阅读 · 0 评论 -
数字图像处理实验(7):PROJECT 04-03 , Lowpass Filtering
实验要求: Objective: To observe how the lowpass filtering smoothes an image. Main requirements: Ability of programming with C, C++, or Matlab. Instruction manual: (a) Implement the Gaussian l原创 2017-05-25 09:30:00 · 4609 阅读 · 0 评论 -
数字图像处理实验(8):PROJECT 04-04,Highpass Filtering Using a Lowpass Image
实验要求: 高通滤波器可以通过1减去低通滤波器的传递函数得到。 使用公式 计算可以的得到 。实验代码:% PROJECT 04-04 Highpass Filtering Using a Lowpass Imageclose all;clc;clear all;%img = imread('Fig4.11(a).jpg');img = mat2gray(img);figure;su原创 2017-05-25 09:48:39 · 2617 阅读 · 1 评论 -
数字图像处理实验(5):PROJECT 04-01 [Multiple Uses],Two-Dimensional Fast Fourier Transform
实验要求: Objective: To further understand the well-known algorithm Fast Fourier Transform (FFT) and verify its effectiveness to calculate the discrete Fourier transform (DFT). Main requirements:原创 2017-05-07 19:41:30 · 4314 阅读 · 0 评论 -
数字图像处理实验(6):PROJECT 04-02,Fourier Spectrum and Average Value
实验要求: Objective: To observe the Fourier spectrum by FFT and the average value of an image. Main requirements: Ability of programming with C, C++, or Matlab. Instruction manual:原创 2017-05-07 23:10:39 · 4111 阅读 · 0 评论 -
数字图像处理实验(10):PROJECT 05-01 [Multiple Uses],Noise Generators
实验要求: Objective: To know how to generate noise images with different probability density functions (distributions). The noise images are useful in simulation for image enhancement and image restor原创 2017-05-26 23:36:47 · 2332 阅读 · 0 评论 -
数字图像处理实验(11):PROJECT 05-02,Noise Reduction Using a Median Filter
实验要求: Objective: To understand the non-linearity of median filtering and its noise suppressing ability, especially for the pepper-noises, the salt-noises and the pepper-and-salt noises. Main re原创 2017-05-26 23:47:52 · 2147 阅读 · 0 评论 -
LBP纹理特征提取学习笔记
前言LBP(Local Binary Pattern,局部二值模式)是一种用来描述图像局部纹理特征的算子;它具有旋转不变性和灰度不变性等显著的优点。它是首先由T. Ojala, M.Pietikäinen, 和 D. Harwood 在1994年提出,用于纹理特征提取。而且,提取的特征是图像的局部的纹理特征。常用的特征描述子有:HOG、Harris、LBP等等,其中LBP是最为简单且有效的一种...原创 2018-04-13 10:39:07 · 48553 阅读 · 24 评论