搜索资源列表
智能算法学习笔记
- 智能算法 属于模式识别内容 介绍和比较了现在常用的算法 如遗传算法等 例子通俗易懂-intellgient arithmetic belongs to pattern recognition,This notes present and compare up-to-date arithmetic,inherit arithmetic exp. The examples r easy to understand.
vc学习笔记之一怎样实现xp风格按钮
- vc学习笔记之一怎样实现xp风格按钮,现作者将教大家如何使用VC制作-vc learning how to achieve one xp style buttons, is the author will teach you how to use the VC production
BitmapFormat
- mp文件是非常常用的位图文件,无论是游戏还是其他都被广泛使用。针对bmp文件的处理也有一堆现成的api进行调用,然而文件内部究竟怎样,如何自己来解析这样的文件呢?为了消除无聊,我用了几天时间来研究了一下,同时作为学习笔记,进行记录。-mp document is very common bitmap document, or other game has been widely used. Bmp against document processing is a pile of ready-ma
NeHeopenglmaterial
- NEHE的经典OPENGL编程指导,初学者必备的学习笔记.
cairo_study
- cairo 学习 笔记 源码分析 例子-cairo learn from examples of source code analysis notes
OPEN-CV-notes
- opencv 学习笔记,很好的学习资料,旨在帮助读者快速入门OpenCV,而无需阅读冗长的参考手册。还包括笔者做双目视觉相关经验,-opencv study notes, a very good learning materials designed to help readers Quick Start OpenCV, without having to read lengthy reference manual. I do binocular vision also includes rel
drectshowaaa
- derectshow学习笔记-derectshow Study Notes
AnroidBook
- Anroid教程 包括Android程序开发初级教程和一些学习笔记 对新手获取有点帮助-Android Programming Tutorial Anroid including the primary learning tutorial, and some notes for a little help to the novice
OPENGL
- OPENGL有关的学习笔记 里面有一些程序 很值得学习-OPENGL the study notes a number of programs which are worth learning
Learning_sift
- SIFT的学习笔记, 初学的有用,深入理解的东西不多-SIFT study notes, useful for beginners, in-depth understanding of small things
qt_course
- Qt学习笔记: 包括OpenGL编程学习 8-5 用OpenGL绘图(Graphics with OpenGL) OpenGL是绘制2D和3D模型的标准API。在OpenGL基础上,Qt可以使用QtOpenGL模块绘制3D图形。本节假设您已经熟悉OpenGL。如果对OpenGL不了解,可以浏览http://www.opengl.org/。 -Qt course , very detailed programming document.
imageprocessnotes
- 这是matlab图像处理的学习笔记,里面有一些非常有用的命令。-this is the study notes for image processing in matlab.
OpenCV-study-notes
- 自己整理的一一些关于OpenCV学习笔记-OpenCV study notes
JpegStudy
- Jpeg学习笔记,不错的资料,对于想学习图像压缩这一方面的朋友很有帮助-Jpeg study notes, good material, to want to learn the image compression on the one hand, friends have the help very much
opengl
- opengl的学习笔记,笔记清楚实用,可供初学者参考!-opengl study notes!
OpenCV_study_notes
- OpenCV的学习笔记,边学边记,希望对您有用。-The OpenCV study notes, to learn while in mind, I hope useful to you.
HALCON-learning-notes
- Halcon学习笔记,Halcon的自我描述,HDevelop界面的学习-HALCON learning notes
opencv_rand_draw
- 本文主要介绍下opencv中自带的一个随机数发生器的类RNG,这里我用这个类来画一些图形,和基础学习笔记之opencv(13):基本绘图 一文中类似,只是 这里画出来图像的坐标,大小,颜色,角度等所有信息都是随机的,且是用RNG这个类产生的。参考文献为opencv自带tutiol及其代码。 开发环境:opencv2.4.2+Qt4.8.2+ubuntu12.04+QtCreator2.5 实验功能: 1. 该实验可以画6中几何图形和1个文本显示,每种都是画80个,每画完一
opengl_qt_rotate
- 在这一节中主要简单介绍下怎样给平面几何着色,以及怎样让绘制出来的几何图形旋转起来。在上一节OpenGL_Qt学习笔记之_02(绘制简单平面几何图形) 中已经介绍了如何利用opengl画一些简单的图像,那么这一节就在上面的基础上给它着色,且让他旋转。-The main brief in this section under how to plane geometry shader, and how to draw out geometry rotation. A OpenGL_Qt study n
opengl_qt_draw3D
- 四棱锥由5个面构成一个封闭的立体图,其中4个共顶点的侧面是三角形,底面是个四边形。如果我们要绘制一个3D的四棱锥只需要绘制这5个面即可,绘制的方法和前一篇文章OpenGL_Qt学习笔记之_03(平面图形的着色和旋转)的相同。只不过这里的顶点坐标是3维的,所以图像深度那一维不一定为0。因此我们可以事先计算好四棱锥各个顶点的坐标,这对学过立体几何的人来说应该是小case了。然后绘制每个面就可以。 注意,在opengl中绘制每个面时,所有面给出的顶点的顺序都要按照逆时针或者顺时针(我这里采用的