-
RgnGuide_src
这个源代码是用来实现图形之间的基本运算的,包括求交集、并集、差集等等。而且图形的形状也可以任意选择,可以是圆、线段、点、多边形等等。(the source code is used to achieve the basic graphics operations, including for intersection and set difference, and so on. The shape and graphics can choose freely, it can be won, segment, points, polygons, and so on.)
- 2020-12-12 15:49:18下载
- 积分:1
-
DFT_by_dft
VS 环境下利用opencv 实现图像的傅里叶变换,输入图片,保存输出结果。(Under VS environment use opencv to achieve image Fourier transform, the input image and save the output.)
- 2016-07-05 16:08:58下载
- 积分:1
-
opticalflow
用光流法进行运动物体的检测和跟踪,并返回运动方向(Light flow method of moving object detection and tracking, and return to the direction of movement)
- 2009-07-15 14:03:10下载
- 积分:1
-
imageedit
实现一些图像的编辑功能,比如图像的打开,关闭,新建,删除,反转,等一些功能(Implement some image editing features, such as the image open, close, create, delete, reverse, and some other functions)
- 2010-12-20 13:26:18下载
- 积分:1
-
chenggongchengxu
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)
- 2011-12-02 10:09:24下载
- 积分:1
-
Computergraphics
英文原本经典计算机图形学教程,PPT格式,很好的学习材料和上课资料(English was the classic computer graphics course, PPT format, good learning materials and school information)
- 2009-06-05 19:45:22下载
- 积分:1
-
Histogram-method
利用直方图双峰法选取适当阈值对图像进行二值化处理。此法只适用于直方图为双峰状图像。(Using the Shuangfeng method to the appropriate threshold histogram of image processing two values. This method is only applicable to the histogram of image of Shuangfeng.)
- 2015-04-14 15:56:07下载
- 积分:1
-
Marksdetection
自己曾经做的一个项目,基于几何特征的模式识别。可以有效的识别等边三角形,矩形,六角形 和圆形。 基于c++和OpenCV 编写的程序。是学习OpenCV的好代码。 图像处理&模式识别。(Marksdetection for equilateral triangles,rectangle, regular hexagon, special orthogonal polygons and circles Based on C++ and OpenCV good source code for image processing and mark detection)
- 2021-04-13 09:38:56下载
- 积分:1
-
jitu
说明: 计算机图形学基本算法
DDA直线
中点直线
BRESEMHAM圆
正负法圆
B样条曲线
B曲线
(DDA line algorithm for computer graphics, the midpoint of the basic straight-line method BRESEMHAM circle round the positive and negative B-spline curve B curve)
- 2010-04-19 20:38:49下载
- 积分:1
-
imageprocessing
Some of image processing tools in visual C++
- 2012-08-22 20:38:42下载
- 积分:1