Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - graph
Search - graph - List
DL : 0
直方圖等化(Histogram Equalization)為一種使用統計方法的影像處理程式設計,它的功能為將統計直方圖的色彩分布平均的打散在直方圖裡,也就是說,讓一張圖的直方圖分布均勻化,同樣的也是使用到LUT(Look-up Table)的方法 而在設計直方圖等化不可或缺的就是需要先知道統計學的機率密度函數(Probability Density Function,PDF)以及累積分配函數(Cumlative Distribution Function,CDF)相關的基本概念,在這邊會簡單的說明機率密度函數及累積分配函數的概念還有直方圖等化的程式設計實作,而OpenCV也提供了直接使用直方圖等化的函式,cvEqualizeHist(),下面就簡單的製作直方圖等化的程式設計 -Histogram equalization (Histogram Equalization) for a use of statistical methods of image processing programming, its function as a statistical histogram of color distribution of the average scatter in the histogram, the words, let the distribution of a histogram graph homogenization, the same also use the LUT (Look-up Table) method In the design of histogram equalization is an essential need to know the statistical probability density function (Probability Density Function, PDF) and cumulative distribution function (Cumlative Distribution Function, CDF) related to the basic concepts, in the side would be a simple shows probability density function and cumulative distribution function, the concept of histogram equalization programs are designed to implement, while OpenCV also provides direct access to the histogram equalization function, cvEqualizeHist (), Here s the simple production of histogram equalization programming
Date : 2026-01-01 Size : 1kb User : nip

parse.core is a emgu example,you can use many of it s code in your own programs
Date : 2026-01-01 Size : 99kb User : antsi

DL : 0
open cv 作灰階並用滑鼠查看圖形上每點灰 階值,cvThreshold,onMouse cvThreshold(原始圖形IplImage資料結構,計算後結果IplImage資料結構,門檻值,最大門檻值數值,CV_THRESH_BINARY) open cv 作灰阶并用滑鼠查看图形上每点灰阶值,cvThreshold,onMouse cvThreshold(原始图形IplImage资料结构,计算后结果IplImage资料结构,门槛值,最大门槛值数值,CV_THRESH_BINARY)-open cv for grayscale and mouse view the gray value of each point on the graph, cvThreshold, onMouse cvThreshold (original graphics IplImage data structure, IplImage data structure calculation results, the threshold value, the maximum threshold value, CV_THRESH_BINARY)
Date : 2026-01-01 Size : 1kb User : 張天彥

DL : 0
基于opencv的图像分割算法,改进了graph cut算法-image segmentation algorithm based on Opencv, improved from graph cut algorithm
Date : 2026-01-01 Size : 3.7mb User : 天使

一个基于Visual C++和opencv的运动检测程序,运行时鼠标画框圈选运动的无图就可以实现跟踪源代码。-Based Visual C++ and opencv motion detection program, run the mouse movement without frame circle graph tracking the source code can be achieved.
Date : 2026-01-01 Size : 7.72mb User : 快捷的

DL : 0
GRAPH CUT IMAGE SEGMENTATION
Date : 2026-01-01 Size : 17kb User : 高泉

DL : 0
用不同的核进行图像的二维滤波 函数cvSmooth实现各种方法的图形平滑。 一般来说,图像平滑主要是为了消除噪声。图像的常见噪声主要有加性噪声、乘性噪声和量化噪声等。由于图像的能量主要集在低频部分,而噪声所在频段主要在高频段,因此通常都是采用低通滤波的方法消除噪声。 函数cvFilter2D对图像做卷积运算。 对图像进行线性滤波,支持替换方式操作。当核运算部份超出输入图像时,边界外面的像素值等于离它最近的图像像素值。 -Graph smoothing function of two-dimensional filtering of the image with different nuclear cvSmooth achieve a variety of methods. Generally, image smoothing is mainly in order to eliminate the noise. Common image noise additive noise, multiplicative noise and quantization noise. Since the image of energy is mainly concentrated in the low-frequency portion, while the frequency band where the noise in the high-frequency band, and therefore are usually using the method of the low-pass filtering to eliminate noise. Convolve the function cvFilter2D image. Linear image filtering, support the replacement operation. When the the nuclear operation part exceeds the input image, the pixel value outside the boundary is equal to the nearest image pixel value.
Date : 2026-01-01 Size : 4kb User : 史润强

DL : 0
SIFT算子计算旋转图的匹配点,python编写,仅供参考-SIFT operator calculate rotation graph matching points, python prepared for reference purposes only
Date : 2026-01-01 Size : 721kb User : lxs

DL : 0
using opencv to do graph cut.instead a grab cut, this is a graph cut using opencv besed C++, it is easy to be used.
Date : 2026-01-01 Size : 5kb User : WanGong

DL : 0
检测一个图形的轮廓并进行画出,该算法的精度很高。-Detection and draw the outline of a graph,High precision of the algorithm.
Date : 2026-01-01 Size : 4.63mb User : 吴远栋

DL : 0
OpenCV库根据提供的数组画数据图,使用这个库可以在屏幕上,或者图像上画曲线图。可以在测试一个算法时,非常方便的观察到数字数组。-Showing a simple graph of an array.This library is just a collection of functions that can be used to simply plot a graph of an array in its own window, or to overlay graphs into existing an IplImage. This makes it both easy to use and powerful enough for more complex uses such as combining multiple graphs into one.
Date : 2026-01-01 Size : 4kb User : Roy

one cut 算法是微软研究院发表的一篇关于前背景图像分割论文,用户只需简单地交互,即可快速分割前背景,代码比较清晰,内部graph cut和gmm等一些算法可以拿来学习或借鉴。-one cut algorithm is the Microsoft Research published a paper on the front background image segmentation, the user simply interact, you can quickly split before the background, the code is relatively clear, internal graph cut and gmm and some algorithms can be used to learn or draw .
Date : 2026-01-01 Size : 16.4mb User : 石华杰

对输入的一张彩色图像,自己写代码实现Harris Corner 检测算法: 1. 不能直接调用OpenCV 里面与Harris 角点检测相关的一些函数; 2. 只能用C/C++,不能用其他语言; 3. GUI 只能用自带的HighGUI,不能用QT 或其他的; 4. 平台可以用Windows, Linux, MacOS; 5. 显示中间的处理结果及最终的检测结果,包括最大特征值图,最小特征值图,R 图(可以考虑彩色 展示),原图上叠加检测结果等,并将这些中间结果都输出成图像文件; 6. 命令格式: “xxx.exe 图片文件 k 参数(=0.04) Aperture_size(=3)”。-The input of a color image, write your own code to achieve Harris Corner Detection Algorithm: 1. Can not be called directly inside OpenCV some functions associated with the Harris corner detection 2. To only use C/C++, can not be used in other languages 3. GUI only with their own HighGUI, can not use QT or other 4. The platform can be used Windows, Linux, MacOS 5. Display intermediate and final results of the test results, including the largest eigenvalues diagram, the minimum feature value graph , R chart (you can consider color display), picture superimposed on the test results, etc., and these intermediate results are output as an image file 6. Command Format: " xxx.exe picture file k parameters (= 0.04) Aperture_size (= 3 ). "
Date : 2026-01-01 Size : 493kb User : qian

DL : 0
用于相似颜色图像检索,传统直方图法,巴氏系数法,传统欧式距离法-For the image similarity graph, the traditional histogram Bhattacharyya coefficient method, traditional Euclidean distance method
Date : 2026-01-01 Size : 2kb User : 潇枫

DL : 0
找到图形中的轮廓 并以轮廓切割图形并分别显示出来-Find the outline of the graph and cut it with the outline.
Date : 2026-01-01 Size : 1kb User : 啦啦

DL : 0
一个学生写的Graph Cuts算法用于分割的OpenCV实现-Graph Cuts Segmentation in OpenCV
Date : 2026-01-01 Size : 19kb User : 王德晨

模板匹配用来在一副大图中搜寻查找模板图像位置的方法(Template matching is used to search for a method of searching the location of template images in a large graph)
Date : 2026-01-01 Size : 92kb User : LeixianWang
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.