- 博客(125)
- 资源 (3)
- 收藏
- 关注
原创 我写的万能多用途简洁的Makefile
我写的万能多用途,简洁的Makefile。希望对你有用。############################################################### 简洁通用的Makefile文件(Ver 1.1)## Smart Makefile for general purpose (Ver 1.1)## Author: 汤 永康 Yongkang TANG
2012-08-11 20:35:47 3967
原创 Window下设置Octave
从http://sourceforge.net/projects/octave/files/Octave_Windows%20-%20MinGW/Octave%203.6.0%20for%20Windows%20MinGW%20installer/中下载Octave3.6.0_gcc4.6.2_20120129.7z (主 程序包)Octave3.6.0_gcc4.6.2
2012-02-14 13:32:05 5541
原创 Linux下Debug模式正确安装OpenCV
cmake -D CMAKE_BUILD_TYPE=DEBUG .makesudo make installsudo ldconfig
2011-10-07 17:08:48 2090
原创 Matlab显示图片的Edge
Matlab中显示Edge的函数edge(Binary Image图片对象, edge类型[, 阈值 ])比如 edge(img, 'sobel')可选的edge有 'sobel', 'prewitt', 'prewitt', 'log', '
2011-09-22 18:09:49 8165
原创 Linux下编译OpenCV程序的参数
Linux下编译OpenCV程序所需要的参数如下`pkg-config --cflags --libs opencv`比如g++ `pkg-config --cflags --libs opencv` 程序.cpp
2011-09-07 17:08:36 2794
原创 OpenCV2提取,设置某个特定点的颜色
OpenCV2中,提取图像(cv::Mat对象)的特定点,并设置。核心代码如下:Vec3b &p = img.at(y坐标,x坐标)Blue, Green, Red 的三个值分别是p[0], p[1] , p[2]示例代码如下:
2011-09-06 14:51:19 5303
原创 GNU autotools 显示编译的详细信息
最近在看Linphone。使用默认的autotools (autoconf, libtool, automake)编译linphone,一直看不到gcc的编译的参数。郁闷的好久,最后才发现在自动生成的Makefile中有一个 --silent 参数。屏蔽了gcc编译参
2011-09-02 09:51:00 862
原创 CentOS 安装 GUI
安装GUIyum groupinstall "X Window System" "GNOME Desktop Environment" 启动GUIstartx如果需要在系统启动的时候,自动启动GUI编辑 /etc/inittab id:
2011-08-28 13:27:33 4391
原创 Linphone 的音质 据说ALSA好于OSS
参照http://www.voip-info.org/wiki/view/LinphoneLinphone 的音质 据说ALSA好于OSS
2011-08-27 16:57:45 1691
原创 Ubuntu输出系统启动的log
打开配置文件。$ sudo gedit /etc/default/bootlogd默认是No,修改成yes# Run bootlogd at startup ?BOOTLOGD_ENABLE=yesLog文件将保存到/var/log/b
2011-08-15 20:23:39 6001
原创 超强的万能 makefile
超强的万能makefile 出处 : http://ldc.usb.ve/~vtheok/cursos/ci2126/sd10/practicas/code7/Makefile首先在 SRCDIRS 源程序设置目录文件比如 SRCDIRS = test
2011-08-14 23:26:56 4195
原创 用OpenCV随机显示 一个圆圈,并保存成文件
用OpenCV 2.2 随机显示圆圈这程序可以用来作为 Kalman, Particle Filter 的追踪目标。#include #include "opencv2/opencv.hpp"using namespace cv;bool
2011-08-12 12:52:15 964
原创 使用OpenCV把视屏分割成图片
用 frame = cvQueryFrame (capture) 获取 视屏中的图片然后调用cvSaveImage 保存图片。完整的程序如下#include #include #include #include intmai
2011-08-09 12:43:58 1981
原创 OpenCV提取某个特定点的像素值
OpenCV 默认的颜色空间是 BGR,类似于RGB,但不是RGB。即某个像素的第一个值是Blue的值, 第二个是Green的值,第三个是R的值。程序的核心是 用 cvGet2D(图片, y坐标, x坐标) 获取 CvScalar 对象。注意y,
2011-08-09 12:00:56 13373
原创 一位牛人关于 SIFT算法的讲解
http://blog.csdn.net/v_JULY_v/archive/2011/03/13/6245939.aspx 日后再研究。
2011-06-20 21:31:00 2443
原创 Ming-Hsuan Yang: Publications
http://faculty.ucmerced.edu/mhyang/pubs.html
2011-06-18 14:15:00 4746 1
原创 wavesurfer
wavesurfer 一个开源的 声音波形查看,记录软件。 软件可从下列链接获得http://sourceforge.jp/projects/sfnet_wavesurfer/releases/
2011-06-09 18:51:00 1917
转载 Download 163 video
#coding:gbkimport os, sys, urllibfrom BeautifulSoup import BeautifulSouptrue = Truefalse = Falsenull = Nonedef output(str): """ 输出调试信息 """ print strdef download
2011-06-09 15:54:00 1120
原创 Atomatic Speech Recognition(ASR)
Helen Meng http://www.se.cuhk.edu.hk/people/hmmeng.html Publication Listhttp://www.se.cuhk.edu.hk/hccl/publications/ 奈良线段科学技术大学院大学 鹿野研究室 声音研究相关的信息http://spalab.naist.jp/database/datab
2011-06-06 16:51:00 1132
原创 从网上找到了一个 读取声音的程序
/*Ubuntu 10.04下测试通过*//* * parrot.c * Program to illustrate /dev/dsp device * Records several seconds of sound, then echoes it back. * Runs until Control-C is pressed. */#include #include #include #include #include #include #include #define LENGTH 3 /* h
2011-05-28 22:13:00 889
原创 计算机视觉领域的 国际会议列表
<br />计算机视觉领域的 国际会议列表<br /> <br />http://conferences.visionbib.com/Iris-Conferences.html<br />
2011-02-04 11:41:00 1395
原创 一个关于姿势识别的总结
<br />一个关于姿势识别的小总结<br /> <br />http://diuf.unifr.ch/diva/web/site/index.php/teaching-seminars/10-seminars/125-gesture-recognition<br />
2011-02-04 11:17:00 1374
原创 一个传说中的计算机视觉牛人
<br />Richard Szeliski<br /><br /><br />http://research.microsoft.com/en-us/um/people/szeliski/<br /> <br />hai不甚了解。再研究研究
2011-01-15 22:08:00 1099
原创 国际流行开源机器学习和模式识别工具
<br />Machine Learning<br /> M2K - M2K represents the music-specific set of D2K modules designed to create a Virtual Research Lab (VRL) for MIR/MDL development, prototyping and evaluation. M2K provides the framework for the MIREX (Music Informat
2011-01-15 21:48:00 4239
原创 网上搜集的口语模板
<br />引用自:http://bbs.gter.net/bbs/thread-933901-1-1.html<br /> <br />iBT口语模版<br />% O$ U5 q, ~: h |% L# e9 m<br />Tips: Make it NATURAL, pauses, such as “well”, “um”, “kind of”, and “you know”, are advisable, but don’t do it too much.<br />/ j6 f. ]6 n3 z
2010-12-10 23:43:00 810
原创 TOEFL-ibt 模板
<br />整理 徐开宏 老师的 Toefl-IBT模板。<br /> <br />第一篇 写作<br /> <br />The lecture is mainly discussing ______, ________ and ___________by _________, challenging what are stated in the reading passage that _________, _________ and _______. <br /><br />First of al
2010-12-10 23:05:00 646
原创 couting transitive relation
<br /> <br />一个计算Transitive relation个数的程序。<br />目前,只能计算到1--5.<br />等有空了,对程序扩充。<br /> <br /> <br />#include<stdio.h><br />#include<stdlib.h><br />#include<string.h><br /><br />int checkTransitive(int num, int* bit, int nSize)<br />{<br /> for(i
2010-12-09 12:39:00 844
原创 Install PHP , MYSQL, Apache2 on Ubuntu
<br />sudo apt-get install mysql-server apache2 php5 php5-mysql<br />10.04
2010-11-30 12:54:00 551
原创 一个关于SVM的说明
<br />http://www.neuro.sfc.keio.ac.jp/~masato/study/SVM/index.htm<br />先做个笔记。等有空了,慢慢研究研究。
2010-11-17 01:45:00 704
原创 庆应大学的一个关于数据挖掘的教程
<br />庆应大学的一个关于数据挖掘的教程<br />http://furukawa.sfc.keio.ac.jp/course/DM01/uehara-sensei/ppframe.htm
2010-11-01 22:27:00 767
原创 一个关于DTW和HMM比较的文章
<br /> <br />A paper named "From DTW to HMM"<br />Author: Chunsheng Fang from University of Cincinnati<br /> <br />http://www.docstoc.com/docs/24134331/From-Dynamic-Time-Warping-%28DTW%29-to-Hidden-Markov-Model<br />
2010-11-01 22:22:00 3260
原创 Yale 关于死亡的视频
<br />Yale 大学关于死亡的一个视频。<br /> <br />看到这个视频的第一眼,就已经对这个课程感兴趣了。<br /> <br />Shelly Kagan教授 盘腿上课!!<br />而且讲的很卖力,很有激情。<br /> <br />有空了,打算看下去。<br />http://v.163.com/special/philosophy-death/
2010-10-29 20:48:00 1001
原创 三天学会 Object Recognition
<br />先Mark一下。<br /> <br />http://d.hatena.ne.jp/aidiary/20091102/1257167398
2010-10-29 18:59:00 789
原创 Kalman Filter使用所感
<br />参照<br />http://opencv-users.1802565.n2.nabble.com/Kalman-Filter-example-code-td2913451.html<br />网站中的<br />Heather Larson-2<br />和<br />Reverend Scragglepus<br />的帖子,<br />照着跑成功了 Kalman Filter。<br /> <br />实验的结果不尽如人意。<br />当人手停止移动的时候,Kalman预测的是人依然在动!
2010-10-25 20:20:00 919
原创 数据平滑化程序
<br />数据的平滑化程序<br /> <br />三点平均法,即 使用三个点的各个坐标的平均值,作为当前点的坐标。<br />这样可以实现比较好的显示效果。<br /> <br />同理可以扩充到N点平均。
2010-10-25 20:03:00 1176
原创 一个别人做的DTW相关研究的列表。
http://mikilab.doshisha.ac.jp/dia/research/report/2009/1312/004/report20091312004.html
2010-09-20 14:50:00 961
原创 Ubuntu : change timezone and synchronize computer time
<br />change timezone<br />sudo dpkg-reconfigure tzdata<br /> <br /> <br />synchronize time<br /> <br />sudo ntpdate time.windows.com<br />
2010-09-14 11:06:00 1468
原创 data smoothing
<br />Mail about data smoothing<br /> <br />http://stackoverflow.com/questions/204184/how-to-smooth-data-and-calculate-line-gradient<br />
2010-09-13 23:23:00 749
原创 Visual Studio 2008调试后,无法关闭终端窗口的问题。
<br />Visual Studio 2008 + Windows XP 在结束调试后,<br />无法自动关闭 命令行窗口。<br />想正常关机,也关不掉。<br /> <br />是KB978037的问题<br /> <br />微软已经提供了 补丁。<br /> <br />http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=982551<br /> <br />上了补丁,就 OK 了。
2010-08-17 16:02:00 1404
原创 一个可以浏览中文论文的网站
<br />一个可以浏览中文论文的网站。<br /> <br />http://www.doc88.com/p-73247114090.html<br /> <br />
2010-08-15 22:11:00 850
简洁通用makefile
2012-08-08
OpenGL 开发的三维人体模型
2010-03-28
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人