搜索资源列表
drawImage
- 这是在vc6.0下,使用opencv1.0 实现的一个关于画图的小程序。具体参考《opencv教程 - 基础篇》里面的P83 页 drawing.c 。主要功能就是利用opencv实现图形的绘制。-This is in vc6.0, using opencv1.0 achieve a small program on the drawing. Specific reference to " opencv tutorial- The Basics," which the P8
4
- 看到有的网站搞分形艺术,才知道这个Z=Z*Z+C 如此的奇妙。 于是干脆在opencv下写出来,看看。效果还不错。呵呵。 这个小例子只能修改C的值,有兴趣的朋友可以自己改改代码,看能不能做出些美妙的图形。 代码提示:要获得高质量的图像,可以增加image_w,不过性能很低。-See some sites do fractal art, to know that Z = Z* Z+ C so wonderful. So they simply write under the op
connectprocess
- 在图像处理过程中,经常会遇到这样一部分图像,图像的整体部分如果人来看的话一眼就能看出,但是它的内部由于有各种小缺口,导致断开了,这样在计算机“眼”里就被认为是断开的,为了使图像达到适应人眼的感觉,需要将这些缺口和断开的口给连接上去,这就需要用到计算机图形学中的连通域处理技术。本文给出一个简单的连通域处理函数,当然这个函数是来自OpenCV著名教程Learning OpenCV中,只不过它的接口是基于c版本的OpenCV,而到目前为止,基于C++接口的OpenCV已经是主流,所以我将其接口改成了c
drawing-circle
- 自己寫的畫圓程序,很容易了解,提供給大家參考-Write C program to draw a circle using c graphics. In this program we use the graphics.h library function to draw a circle. To use graphics.h, we have to install the drivers in to the the system by using the initgraph() funct