Welcome![Sign In][Sign Up]
Location:
Search - opencv w

Search list

[Graph programstream_vedio_on_web

Description: 通过OpenCV实现的网上视频程序,分服务器和客户端,需要OpenCV库的支持。-Stream vedio program developed under OpenCV library, there are server and client. You should have installed OpenCV library in you computer.
Platform: | Size: 4096 | Author: 瘦猪呆兔 | Hits:

[OpenCVW-S

Description: 利用OpenCV,自己编写的视频读取和保存的C文件-Using OpenCV, read and write your own video files saved C
Platform: | Size: 1024 | Author: 李鑫 | Hits:

[Special Effectsssimtest

Description: 基于Z.W的论文用C++实现的一个求两幅图片SSIM的代码,没有用到opencv,在比较方法上并没有使用local比较,而只是进行了简单的全局比较-Implemented based on the ZW paper C++ a request two pictures SSIM code is not used opencv, the comparison does not use local comparison, but rather a simple global
Platform: | Size: 3670016 | Author: 刘汉唐 | Hits:

[OpenCVopencv_rand_draw

Description: 本文主要介绍下opencv中自带的一个随机数发生器的类RNG,这里我用这个类来画一些图形,和基础学习笔记之opencv(13):基本绘图 一文中类似,只是 这里画出来图像的坐标,大小,颜色,角度等所有信息都是随机的,且是用RNG这个类产生的。参考文献为opencv自带tutiol及其代码。   开发环境:opencv2.4.2+Qt4.8.2+ubuntu12.04+QtCreator2.5   实验功能:   1. 该实验可以画6中几何图形和1个文本显示,每种都是画80个,每画完一个延时100ms。   2. 打开软件后,默认画的图为直线。可以在软件的左下角Drawing Type下拉列表中选择不同的几何绘画图形及文字,这6种几何图形分别为画直线,画矩形,画椭圆弧线,画多边形,画圆,画填充多边形。文本显示为显示“OpenCv Forever!”,选择完后在窗口中会自动显示其随机绘图过程,   3. 单击Close按钮,退出软件。-This article introduces a random number generator that comes in under opencv class RNG, I use this class to draw some graphics, and study notes based on opencv (13): Basic Drawing a text similar to just draw out the image coordinates, size, color, angle, and all information is random, and this class of RNG. Reference to the opencv own tutiol its code. Development environment: opencv2.4.2+Qt4.8.2+ubuntu12.04+QtCreator2.5 experimental features: (1) The experiment can draw 6 geometry and a text display, each painting are 80 per unfinished a delay of 100ms. 2 Open the software, the default picture shows the straight lines of the painting. Different geometric painting graphics and text in the lower left corner of the software Drawing Type drop-down list, select the six kinds of geometry for drawing straight lines, draw a rectangle, draw elliptical arc, polygon drawing, draw a circle, draw filled polygons. The text display to show " OpenCv Forever!" , Select exhausted in the window w
Platform: | Size: 2662400 | Author: wuwei | Hits:

[OpenCVwatershed

Description: 基于opencv实现分水岭算法的图像分割程序,在图像的不同区域画线,然后按w键运行算法,就可得到分割图像。-Image segmentation based on opencv achieve watershed algorithm procedures, in different areas of the image line drawing, and then press the w key operation algorithm, image segmentation can be obtained
Platform: | Size: 15656960 | Author: soleon | Hits:

[Hook apiw

Description: 增加滑块 opencv 2.2 以后的版本 蛮好用的- opencv
Platform: | Size: 3072 | Author: 郑超兵 | Hits:

[Other GamesGluttonous-Snake-by-CPP-and-Opencv

Description: 用C++和Opencv实现了一下贪吃蛇游戏 设计思路: 1.显示初始画面,蛇头box初始位置为中心,食物box位置随机 2.按随机方向移动蛇头,按a、s、d、w键控制移动方向,分别为向左,向下,向右,向上 3.蛇头位置与食物box位置重合,则把食物box加入到蛇身向量arraryBox里,并设置食物box为第一个元素 4.蛇身各个box移动规律是,每次移动后一个box的位置变为前一个box的位置 5.蛇头移动超越边界,游戏结束-With Opencv and C++ to achieve a snake game Design ideas: 1 shows the initial screen, box head initial position as the center, food box random position 2 according to the random direction snakeheads, according to a, s, D, w keys to control the direction of movement, respectively, to the left, down, right, up 3. Snake head position and food box positions coincide, the food box to join the snake vector arraryBox, and set the food box for the first element 4 snake movement is box, a box position after each move into position before a box 5 head moving beyond the boundary, the end of the game
Platform: | Size: 2048 | Author: 吕不韦 | Hits:

[OpenCVpicture-processing-w

Description: 利用OpenCV一些库函数对图像中的曲线进行编号并输出坐标数据。-Use OpenCV library functions to code the curve in the image and output the coordinate data
Platform: | Size: 9216 | Author: duancichen | Hits:

[Mathimatics-Numerical algorithms8数码

Description: 需要说明的是:本文示例图中的目标状态在计算上是最快捷的,首先取数很方便,一般地查看目标在第i个位置上的值,则需要访问数组goal[i],而这里goal[i]==i,故而无需访问数组;第二,要想知道数码n的目标位置,则需要找到goal[i]==n,然后row=i/3,col=i%3. 但是这里的话,row=n/3,col=n%3. 当我们用8位无符号整型来表示各个数码值(0~8)时,n/3和n%3操作是非常快的,比访问数组还快。 程序还提供一种玩游戏模式,即用户自己通过W,S,A,D四个键分别控制空格往上、下、左、右四个方向移动一步,功能很简单,界面部分是用OpenCV做的。界面部分和搜索部分是完全分离的,demo文件中main函数部分显示了如何将它们组合使用。(Need explanation is: This paper sample figure in the target state is the most efficient in calculation, the first number is very convenient, generally view the targets in the I position on the value, requires access to an array of goal[i], where goal[i]==i, therefore no need to access the array; second, to know the digital n the position of the target, you need to find goal[i]==n, row=i/3 and col=i%3., but here, row=n/3, col=n%3. when we use 8 bit unsigned integer to the digital value (0~8), n/3 and n%3 operations are very fast, faster than accessing array. Program also provides a play game mode, that is, users themselves through W, S, A, D, four keys, respectively, control space, up, down, left, right four directions move a step, the function is very simple, the interface part is done with OpenCV. The interface section is completely separate from the search section, and the main function section in the demo file shows how to combine them.)
Platform: | Size: 466944 | Author: llii | Hits:

CodeBus www.codebus.net