Tuesday, November 13, 2012

some option on cmake

debug mode:
 
cmake .. -DCMAKE_BUILD_TYPE=Debug
 
compile with compile Options:
cmake .. -DBUILD_in_hand_scanner=ON
 



show make commands: make VERBOSE=1


Command
make -n
willl show all the command make will going to do.

show the detailed infomation   by command
make -d 
  

Monday, September 24, 2012

Some survey on Computer Vision


http://www.mendeley.com/groups/1048071/computer-vision-review-survey-papers/

Thursday, August 16, 2012

disable mouse middle key in linux

Run the following command:

xmodmap -e "pointer = 1 25 3 4 5 6 7 8 9"

OR  run
gedit ~/.Xmodmap
and add the following
pointer = 1 25 3 4 5 6 7 8 9
to the file
This works on my Ubuntu 12.04.

 
REF:http://jaredrobinson.com/blog/howto-disable-middle-mouse-paste-in-linux/

Tuesday, July 31, 2012

redirect error on linux

command 2>file1
This command will output all the errors to file1.
 If file1 already existed,  the contents will be overwrite.

command 2>> file2
will append the error messages to file2. 

Thursday, July 19, 2012

A nice way to build 3d model from 3d point

http://stackoverflow.com/questions/8292214/using-openni-and-kinect-to-get-cloud-points

Iterative closest point(ICP) algorithm

Iterative closest point algorithm is used to construct 3d model from points .

Famous ICP library including:

MeshLab   GPL license
http://meshlab.sourceforge.net/

CloudCompare GPL License
http://www.danielgm.net/cc/

PCL (Point Cloud Library)   BSD license
http://pointclouds.org

Tuesday, July 17, 2012

about face image analysis

Dr.  Sami Romdhani did a nice research on create face 3d model from 2d image.
His doctor thesis can be downloaded from the following link. 
http://informatik.unibas.ch/personen/romdhani_sami/

Unfortunately , I did not find the Matlab Morphable Model toolbox created by Dr. Sami...

Monday, July 16, 2012

Facial landmark detection


A facial landmark detection framework can be download from following link.

http://cmp.felk.cvut.cz/~uricamic/flandmark/


Linux LDD & objdump command

ldd command show dependencies of library.

usage:
ldd /lib/file.name

objdump command list the information of library.
This command can be used to check if some method was compiled in this library.

usage :
objdump  -t /lib/file.name | grep method

Tuesday, July 10, 2012

Jongmoo Choi 研究关于人脸3维成型。
 
 
http://www.milbo.users.sonic.net/
中有关于 人脸识别的 Active Shape Model 的程序代码
也有关于 回归的Earth系统的C代码。