孤独的猫

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2011年4月9日

摘要: 虽然网络上很多人使用 Redhat 或者Fedora 作为上位机操作系统,但是我觉得使用Ubuntu最为方便,因为需要的软件包大部分都可以通过 apt-get 方式来安装,而不必从源代码开始自己编译。要知道,自己编译源代码可不是一件轻松的事,因为在编译过程中经常会出现令人意外而且莫名其妙的错误。 阅读全文
posted @ 2011-04-09 23:45 孤独的猫 阅读(418) 评论(0) 推荐(0) 编辑

摘要: 在系统->首选项->网络链接中在DSL中添加一个连接,输入用户名和密码即可,服务可不填,就可以上网了。 阅读全文
posted @ 2011-04-09 23:36 孤独的猫 阅读(490) 评论(0) 推荐(0) 编辑

摘要: apt-get install build-essential #这将安装gcc/g++/gdb/make 等基本编程工具 apt-get install gnome-core-devel #这将安装 libgtk2.0-dev libglib2.0-dev 等开发相关的库文件 阅读全文
posted @ 2011-04-09 23:34 孤独的猫 阅读(236) 评论(0) 推荐(0) 编辑

摘要: ubuntu 阅读全文
posted @ 2011-04-09 23:33 孤独的猫 阅读(471) 评论(0) 推荐(0) 编辑

摘要: 在OpenCv中提供一种自适应阀值技术,这种方法由cvAdaptiveThreadshold()来实现#include <cv.h>#include <highgui.h>#include <math.h>IplImage *Igray=0, *It = 0, *Iat;int main( int argc, char** argv ){ if(argc != 7){return -1; } //Command line double threshold = (double)atof(argv[1]); int threshold_type = atoi(a 阅读全文
posted @ 2011-04-09 18:05 孤独的猫 阅读(199) 评论(0) 推荐(0) 编辑

摘要: 对cvSetMouseCallback设置鼠标回调函数,cvRect画出矩形,以下为学习opencv的代码示例: 阅读全文
posted @ 2011-04-09 17:58 孤独的猫 阅读(1334) 评论(0) 推荐(1) 编辑

摘要: opengl的抗锯齿 1.对直线和点主要用函数GL_Enable(GL_LINE_SMOOTH)或GL_Enable(GL_POINT_SMOOTH) 阅读全文
posted @ 2011-04-09 13:41 孤独的猫 阅读(1294) 评论(0) 推荐(0) 编辑

摘要: Public Class Form1 Private Const Pi As Single = 3.1415926 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDrawing.Click 'Debug.Print("tttt") End Sub 阅读全文
posted @ 2011-04-09 13:34 孤独的猫 阅读(776) 评论(0) 推荐(0) 编辑