自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(12)
  • 资源 (17)
  • 收藏
  • 关注

原创 opencv视频播放和进度条

#include #include #include #include #include #include #include #include #include "cv.h"#include "highgui.h"using namespace std;int g_slider_position = 0;CvCapture* g_capture

2016-12-09 10:46:03 1055

转载 opencv图像直方图

#include "opencv2/highgui/highgui.hpp" #include "opencv2/imgproc/imgproc.hpp" #include #include using namespace cv; using namespace std; static bool equalizeChannelHist(const Mat & inp

2016-12-08 20:53:25 428

原创 矩阵操作

#include #include #include #include #include #include #include using namespace std;//降阶法求行列式的值,就是按照线性代数书上的公式,我是按照第一行进行展开template double static det(T **mat, const int n){ assert(mat != NU

2016-12-08 14:52:20 441

转载 opencv Farneback光流法

#include #include "opencv2/opencv.hpp" using namespace cv; using namespace std;#define UNKNOWN_FLOW_THRESH 1e9 static void makecolorwheel(vector &colorwheel) { int RY = 15; int YG =

2016-12-08 14:37:25 999

转载 找最小的封闭轮廓的图像

#include #include #include using namespace std;using namespace cv;static vector > contours;static vector heirarchy;Mat img_all_contours;static void make_contours_closed(vector > contours) {

2016-12-08 14:10:27 1133

原创 简单的运算符重载---复数加减乘除

#include "complex.h"#include using namespace std;inline Complex Complex::operator+(const Complex &c){ //cout<<"class +"<<endl; return Complex(this->real + c.real, this->imag + c.imag);}inli

2016-12-02 14:49:52 1048

转载 学习c++多态的几个小例子

//reference: http://blog.csdn.net/hackbuteer1/article/details/7475622#include #include#include using namespace std; class Time{public: int hour; int minute; int second;protected:priva

2016-12-02 14:43:29 2491

转载 简单的win32多线程---生产者、消费者模型

#include #include using namespace std;#define BUFSIZE 5static int SharedBuffer[BUFSIZE];static int head = 0, tail = 0;static int count = 0;static HANDLE hMutex;static HANDLE hNotFullEvent, hN

2016-12-02 14:33:11 1171

转载 win32共享内存简单实例

//win32ShareMemoryClient.cpp#include #include using namespace std; int main(){ HANDLE hMutex = NULL; HANDLE hFileMapping = NULL; LPVOID lpShareMemory = NULL; HANDLE hServerWrit

2016-12-02 14:26:34 2152

转载 win32 wmi编程获取系统信息

//GetSysInfo.h#pragma once#include class GetSysInfo{public: GetSysInfo(void); ~GetSysInfo(void);public:/********获取操作系统版本,Service pack版本、系统类型************/void GetOSVersion(CString &strOSV

2016-12-02 14:20:14 748

原创 opencv3.10光流法和前景提取法

//bgfg_segm.h#ifndef BGFG_SEGM_H#define BGFG_SEGM_H#include "opencv2/core.hpp"#include "opencv2/core/utility.hpp"using namespace cv;enum Method{ MOG, MOG2, GMG, FGD_STAT};extern void

2016-12-02 13:56:43 6224 1

转载 opencv中的图像亮度变换(图像增强)

#include using namespace cv; using namespace std; int imageAdjust(Mat &src, Mat &dst, double low_in, double high_in, double low_out, double high_out, double gamma) { if (low_in 1 && hig

2016-12-02 13:43:10 4515 6

基于深度学习的菜肴识别应用程序

基于百度AI云服务接口开发的一个windows桌面应用程序---菜肴识别,该菜肴识别桌面应用读取一张菜肴图片,然后识别出该图片中菜肴的种类,图片可以来自本文件系统或者本地摄像头。

2019-06-01

内存池NedAllocator

NedAllocator是一个跨平台的高性能多线程安全的内存池,使用c语言开发,提供了C++借口。

2017-12-06

消除视频抖动工具vstab源码

vstab是一个效果不错的运行在linux系统下的一个视频消抖工具,这里提供了该工具的源代码,可以在linux下编译运行。另外,还附带了简易使用说明书。

2017-10-13

opencv2 实例代码

opencv2 实例代码大全

2017-07-26

GPU混合高斯前景提取

cuda编程实现混合高斯前景提取算法,达到了实时性的要求。

2017-07-26

夜间车辆检测和计数

此项目代码通过检测夜间车尾灯从而完成车辆的检测和计数,仅仅适用于夜间情况。使用开源opencv库,c/c++编程实现。

2017-07-26

GPU多任务调度

1、在cpu端使用多线程利用系统中的多gpu(如果系统中有n个gpu,可以指定任意个gpu参与计算)执行多个任务(可以是任意个),可以自由设定任务数量和任务队列大小。2、在同一个gpu上以不同的顺序执行多个任务(每个任务可能有多个kernel函数),并且统计不同的顺序序列,每个任务执行的时间和每个任务所有kernel执行时间;同时也可以每次执行一个任务序列。3、和2中的类似,主要实现单gpu上所有任务的kernel不同的执行序列对执行时间的影响。 以上实现的程序,主要用来考察不同的执行顺序(包括任务级和核函数级的各种不同顺序)对gpu功耗的影响,程序中部分参数怎么改、怎么添加任务,可以给我留言。

2016-12-08

基于opencv计算机视觉的车道检测

能够实现简单的车道检测

2016-12-08

使用Sobel算子检测阴影

使用Sobel算子检测阴影

2016-11-28

TLD跟踪算法

TLD跟踪算法

2016-11-28

argtable-1.4

argtable-1.4

2016-11-28

CarFace-Detection-Adaboost

CarFace-Detection-Adaboost

2016-11-28

CUDA入门示例代码

cuda入门示例代码

2016-11-19

caltech-lane-detection

基于计算机视觉的车道检测技术

2016-11-19

fftw-3.3.5-dll64

A fast, free C FFT library; includes real-complex, multidimensional, and parallel transforms. Benchmarked against many other FFTs

2016-11-19

simple_vehicle_counting-master

基于计算机视觉的车辆检测和计数

2016-11-19

Integrating Context and Occlusion for Car Detection by Hierarchical And-Or Model

车辆检测

2016-11-19

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除