OPENCV
dreamharding
什么都没有留下
展开
-
OPENCV的2-10备注
#include "cv.h" #include "highgui.h" #include // Convert a video to grayscale // argv[1]: input video file // argv[2]: name of new output file // IplImage* doresize(IplImage* in){ IplImage* out1 =原创 2016-11-22 17:58:50 · 442 阅读 · 0 评论 -
OPENCV之运行摄像头程序闪退 备注
int main( int argc, char** argv ) { //int i=0; cvNamedWindow( "Example2_9", CV_WINDOW_AUTOSIZE ); CvCapture* capture; capture = cvCreateCameraCapture(0); assert( capture != NULL );原创 2016-11-22 22:39:25 · 3774 阅读 · 0 评论 -
利用ROI再一个窗口中显示多个视频
这里只显示了两个,其实还可以将这个显示多视频函数封装成一个子函数。 #include #include #include using namespace std; using namespace cv; int main( int argc, char** argv ) { //int i=0; cvNamedWindow( "Example2_9", CV_WINDOW_A原创 2016-12-20 12:52:30 · 1006 阅读 · 0 评论 -
双目测距
之前做双目测距时也是参考了不少博文,一直忘了整体,现在将部分结果保存下来https://download.csdn.net/download/dreamharding/10739966 当然这个实现的鼠标点击输出三维坐标。 后面在此基础上加了一些对目标X,Y,Z方向的干扰滤除,然后自动框选出目标以及其中心点 当然这些都是比较理想的情况下了(* ̄︶ ̄),但起码实现了功能,嘿嘿 最...原创 2018-10-25 20:44:48 · 3186 阅读 · 3 评论