代码搜索:opencv用
找到约 10,000 项符合「opencv用」的源代码
代码结果 10,000
www.eeworm.com/read/291333/8423621
txt readme.txt
Ch OpenCV package is Ch binding to OpenCV.
With Ch OpenCV package, C (or C++) programs using OpenCV C functions
can readily run in Ch without compilation.
The latest Ch OpenCV package can be obt
www.eeworm.com/read/273255/10922077
m make.m
% This make.m is used under Windows
mex mexHaarDetect.cpp -IOpenCV\cv\include\ -IOpenCV\cxcore\include\ OpenCV\lib_ms\cv.lib OpenCV\lib_ms\cxcore.lib
www.eeworm.com/read/291046/8443763
makefile
OBJECT=blobtrack
CXX=g++
CPPFLAGS=`pkg-config --cflags opencv`
LDFLAGS=`pkg-config --libs opencv`
all: $(OBJECT)
clean:
rm -f $(OBJECT)
www.eeworm.com/read/386761/8728200
cpp stdafx.cpp
// stdafx.cpp : source file that includes just the standard includes
// MFC_OpenCV.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdaf
www.eeworm.com/read/428524/8861618
makefile
OBJECT=kalman
CXX=g++
CPPFLAGS=`pkg-config --cflags opencv`
LDFLAGS=`pkg-config --libs opencv`
all: $(OBJECT)
clean:
rm -f $(OBJECT)
www.eeworm.com/read/377176/9291514
cpp stdafx.cpp
// stdafx.cpp : 只包括标准包含文件的源文件
// snake_opencv.pch 将作为预编译头
// stdafx.obj 将包含预编译类型信息
#include "stdafx.h"
// TODO: 在 STDAFX.H 中
// 引用任何所需的附加头文件,而不是在此文件中引用
www.eeworm.com/read/179398/9358222
txt readme.txt
Ch OpenCV package is Ch binding to OpenCV.
With Ch OpenCV package, C (or C++) programs using OpenCV C functions
can readily run in Ch without compilation.
The latest Ch OpenCV package can be obt
www.eeworm.com/read/177369/9457883
plg dsplit.plg
Build Log
--------------------Configuration: DSPLIT - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\yang\L
www.eeworm.com/read/365201/9875290
makefile
OBJECT=ex01
all: $(OBJECT)
clean:
rm -f $(OBJECT)
$(OBJECT): $(OBJECT).c
$(CXX) $^ -o $@ `pkg-config --cflags --libs opencv`
www.eeworm.com/read/365201/9875292
makefile
OBJECT=canny
all: $(OBJECT)
clean:
rm -f $(OBJECT)
$(OBJECT): $(OBJECT).c
$(CXX) $^ -o $@ `pkg-config --cflags --libs opencv`