▍1. PDF417-Encode-a-Decode
二维码PDF417编码和解码的源代码,可将它们修改后做成匹配的编码和解码对。(The source code of two-dimensional barcode PDF417 encoding and decoding, they can be modified to become a matched encoding and decoding. )
二维码PDF417编码和解码的源代码,可将它们修改后做成匹配的编码和解码对。(The source code of two-dimensional barcode PDF417 encoding and decoding, they can be modified to become a matched encoding and decoding. )
基于小波的视频图像压缩研究进展 基于小波的视频图像压缩研究进展(Wavelet-based video image compression research progress)
说明: XYZ视频图像压缩编码的应用原理与实际生活应用 (XYZ video image compression encoding)
This program contains some basic image processing things, such as: 256 colors to grayscale, contrast stretching, anti-color, brightness change, etc.
本程序是对24位图片进行灰度化,并进行去边缘的,二值化(This program is to 24 bits images of gray, and go to the edge, binary )
图像拼接及柱面全景图生成算法研究 图像拼接及柱面全景图生成算法研究(Image mosaicing and cylinder panorama generation algorithm is studied)
可以进行背景减除法-三帧法-高斯背景建模法运动检测( This file (the project file) contains information at the project level and is used to build a single project or subproject. Other users can share the project (.dsp) file, but they should export the makefiles locally. )
图像相似性检测的PPT,比较全面的总结,对主要用到的特征提取和特征匹配算法都有基本的介绍。(Image similarity detection of PPT, a more comprehensive summary of the main use of the feature extraction and feature matching algorithm has the basic The introduction.)
讲解滤波与二值图像处理,比较简单的图像处理源码(Explain the filtering and binary image processing, image processing source code is relatively simple)
使用GDAL库,用于遥感影像的特征点提取(Using the GDAL library, used for remote sensing image feature point extraction)
计算机图形学中小例子,MFC下实现Sutherland_Cohen直线段裁剪算法(Computer graphics small example)
图像处理方面,用VC++实现的连通区域标记的程序。(Image processing, with VC++ implementation of the procedures connected region markers.)
三维最大Renyi熵的灰度图像阈值分割算法(Maximum Renyi entropy of three-dimensional gray-scale image segmentation algorithm)
VC的图形处理以及简单的程序设计,简单易懂(VC graphics processing and simple program design, simple and understandable )
很有用的gdal库,并且已经编译好。请多多指教!(It is a very good resource!Please download!!)
rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h" #include <iostream.h> void main(float R, float G, float B, float& H, float& S, float&V) { // r,g,b values are from 0 to 1 // h = [0,360], s = [0,1], v = [0,1] // if s == 0, then h =-1 (undefined) float min, max, delta,tmp tmp = R>G?G:R min = tmp>B?B:tmp tmp = R>G?R:G max = tmp>B?tmp:B V = max // v delta = max- min if( max != 0 ) S = delta/max // s else { // r = g = b = 0 // s = 0, v is undefined S = 0 H = 0 return } if (delta == 0){ H = 0 return } else if(R == max){ if (G >= B) H = (G- B)/delta // between yellow & magenta else H = (G- B)/delta+ 6 } else if( G == max ) H = 2+ ( B- R )/delta // between cyan & yellow else if (B == ma)
说明: 压缩感知的经典代码,包括观测,稀疏表示,重建,其中观测用的高斯观测矩阵,稀疏用的DCT,重建用的OMP算法(Compressed sensing of the classic code, including observations, sparse representation, reconstruction, observed with a Gaussian observation matrix, sparse use of the DCT, re-use of the OMP algorithm)
基于图像处理的人脸检测系统,通过openCV软件来实现的(Image processing based face detection system, implemented by software openCV)
数字图象处理VC++实现,里面有很多图像处理方面的算法,有参考意义。(Digital image processing in VC++)