-
基于MFC下OpenGL的环境配置
对于那些初学者 OpenGL 的学生,你可能不知道太多什么是 MFC。它并不重要,只要 OpenGL 去相信有一天你会使用 MFC,但当你需要时,宝贝你得到更深入地了解配置环境的 OpenGL 在 MFC 中吗?如果不是,没关系,那里的已配置的资源,来和下载它 !
- 2022-04-22 00:34:24下载
- 积分:1
-
如何进行简单的有序抖动算法 (半色调图像)?
翻译 maninwest@Codeforge 作者:Mr. Lai Tai-Yu@CodeProject我们常在报纸上看到图片。观察这样的图片你会发现它是由一个个点组成的。我们也可以做出这种效果。很有趣。适用于初学者。背景操作系统: Microsoft Windows 7 专业版 (64 位) 开发实用程序: Microsoft Visual Studio 2010使用代码 // The height of the image.
for ( int iY = 0; iY < imageA->DibInfo->bmiHeader.biHeight; iY++ )
{
// The height of the image.
for ( int iX = 0; iX < imageA->DibInfo->bmiHeader.biWidth; iX++ )
{
// The index of pixel, because we use the three depth bit to present one pixel of color,
// Therefore, we have to multiply three.
lIDXA = ( iX * 3 ) + ( iY * imageA->DibInfo->bmiHeader.biWidth * 3 );
// To get the pixel depth of the blue channel,
byteRGB_BA = imageA->DibArr
- 2022-04-24 07:36:05下载
- 积分:1
-
Vibe项目
应用背景此源代码为背景扣除模型。背景扣除模型是目标跟踪中的重要部分。这个方法是很容易的,高质量的结果。关键技术盛传的方法很好。在背景建模如MOG,mog2,GMG的许多方法,自适应背景建模等。感觉是很好的方法,比。
- 2022-01-24 14:13:16下载
- 积分:1
-
图像的拉普拉斯变换
MFC界面,求图像的拉普拉斯变换。
- 2023-03-04 04:15:03下载
- 积分:1
-
自动选取阈值C++源代码
算法分两步,首先生成直方图,记录下每个灰度值的像素点个数;
pg为存放直方图数据的数组,pg[i]为灰度为i的像素点个数,
ps: ——为全部灰度的一阶矩
——为全部灰度的零阶矩,即全部像素个数
假定阈值为j,对阈值小于j
- 2022-02-16 01:47:05下载
- 积分:1
-
中值滤波c++实现
这是一个用C++语言实现一个中值滤波程序,含有中值滤波相关理论知识的PPT。程序里应用到的技术有:中值滤波、直方图均衡化、
脊线方向提取、Gabor滤波、指纹细化、特征提取、特征点过滤、基于局部特征点的特征匹配等等……
-This is a C++ language implementation with a fingerprint identification
procedure that requires the FVC meet international competition
standards, and establish a fingerprint in the school library on the
measurement. Program where the technology applied to the following:
median filter, histogram equalization, the direction of ridge line
extraction, Gabor filtering, fingerprint refinement, feature extraction,
feature point filtering, based on local feature points of the feature
matching and so on
- 2023-01-28 06:50:04下载
- 积分:1
-
BP神经网络的例子
BP网络的训练是matlab中文论坛的例子,效果比较好。调用主函数是我自己写的。
- 2022-01-24 08:58:17下载
- 积分:1
-
hough椭圆拟合代码,非常好用
资源描述椭圆拟合(高斯分解和奇异值分解(很准确)两种)
- 2023-07-20 22:35:03下载
- 积分:1
-
PLSgui程序
PLSgui是一个图形给用户界面的Matlab程序,通过鼠标和键盘传递信息。当然我们可以通过命令行执行我们的程序,它只是PLSgui的一部分功能。
- 2023-04-11 16:15:28下载
- 积分:1
-
Feature detection and matching
本书介绍如何解决图像处理中非常常见的问题-特征检测。
- 2022-05-26 19:26:22下载
- 积分:1