-
运动检测系统
本人从别处下载得到的运动图像检测系统,觉得还不错,分享下。
- 2022-02-09 10:54:07下载
- 积分:1
-
vfp截屏小程序
该代码通过调用windows gdi函数获取系统画图句柄来截取屏幕。 希望对vfp爱好者有所帮助。
- 2022-03-18 13:30:22下载
- 积分:1
-
opencv运动检测
应用背景在不同背景下提取手势的二值图像,这里主要在背景不怎么变化的情况下,通过划分前景背景提取出手势图像。关键技术利用多帧平均建立背景模型,然后就是滑动平均法实现背景的实时更新。
- 2022-04-28 16:00:52下载
- 积分:1
-
our code implements automatic face recognition based on hidden Markov model and support vector machi
我们的代码实现了基于隐马尔可夫模型和支持向量机的自动人脸识别;
- 2023-07-22 08:20:06下载
- 积分:1
-
VB 调用摄像头
资源描述VB 通过VFM调用USB摄像头,可实现画面显示,录制视频,调节摄像头参数等功能
- 2022-08-21 18:59:41下载
- 积分:1
-
Vanishing point detection algorithms of our algorithm and some previous research
A simple MATLAB code demo for our ISVC10 paper.
Bo Li, Kun Peng, Xianghua Ying, Hongbin Zha, Simultaneous Vanishing Point Detection and Camera Calibration from Single Images, Proc. International Symposium on Visual Computing 2010, Part II, LNCS 6454, pp. 151--160.
- 2023-04-15 02:35:04下载
- 积分:1
-
拉普拉斯锐化(边缘检测)
图象在传输和转换过程中,一般情况下质量都要降低,除了加入了噪声的因素之外,图象还要变得模糊一些。这主要因为图象的传输或转换系统的传递函数对高频成分的衰减作用,造成图象的细节和轮廓不清晰。图象锐化就是加强图象中景物的细节和轮廓,使图象变得较清晰。在数字图象中,细节和轮廓就是灰度突变的地方。我们知道,灰度突变在频城中代表了一种高频分量,如果使图象信号经历一个使高频分量得以加强的滤波器,就可以达到减少图象中的模糊,加强图象的细节和轮廓的目的。可以看出,锐化恰好是一个与平滑相反的过程。我们使用对象素及其邻域进行加权平均,也就是用积分的方法实现了图象的平滑;反过来,应当可以利用微分来锐化一个图象。
- 2022-09-02 06:55:02下载
- 积分:1
-
Efficient Graph-Based Image Segmentation 代码实现
资源描述code implementation for “Efficient Graph-Based Image Segmentation,” P. Felzenszwalb and D. Huttenlocher,Int’l J. Computer Vision, vol. 59, no. 2, pp. 167-181, Sept. 2004.
It is a well-known algorithm which has been checked and used in many applications. I got this code from internet, and thanks for share.
- 2022-01-26 04:44:03下载
- 积分:1
-
real imyt gio
而~isDone(hvidesrc)
- 2022-01-25 22:02:28下载
- 积分: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