自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(29)
  • 资源 (31)
  • 收藏
  • 关注

原创 How to resize disk partitions in ubuntu

If you have already installed Ubuntu 12.04, then install GParted with sudo apt-get install gparted.Launch it using Alt+F2, and typing gparted.If you don't have root right, just type sudo gparted i

2016-01-29 22:31:29 786

原创 how to get current path in qt

method 1:cout method 2:define a macro in pro filemessage($${PWD}) #/home/tjiang/Workspace/TestQT/TestCGAL#message($(PWD)) #/home/tjiangDEFINES += CGAL_EIGEN3_ENABLEDDEFINES +=

2016-01-29 04:33:07 997

原创 how to add external library in qt under ubuntu

LIBS +=  -L"/home/tjiang/Workspace/CGAL-4.7/lib" -lCGAL_L denotes the lib path, _l denotes the lib name

2016-01-29 03:35:59 530

原创 cmake cannot find eigen3 in ubuntu

the reason is missing EIGEN3_INCLUDE_DIRthen we need to define it in cmakelist.txt fileadd a line like this in this file:Set(EIGEN3_INCLUDE_DIR "/usr/local/include/eigen-eigen-b30b87236a1b")

2016-01-29 02:40:02 7692

原创 INSTALL CGAL on ubuntu and use it in qt

Recently, i have read a paper named "as rigid as possible surface modeling", when I turned to its project web page, the author told us it had been implemented in CGAL. So with having a try mind, I dec

2016-01-29 00:20:51 944

原创 As-Rigid-As-Possible Surface Modeling

paper source2.1if M is a psd(positive semi definite) matrix, then for any orthogonal R, Tr(M)≥Tr(RM)Tr(M) \ge Tr(RM){ note: In this monograph positive(semi) define matrices are necessarily symmetric.

2016-01-28 00:21:12 3335

原创 congruent matrix

2016-01-27 22:48:37 707

转载 positive definite quadratic form and positive definite matrix

2016-01-27 22:46:09 1065

原创 install eigen in ubuntu and use it in qt

1. download eigen from the link : http://eigen.tuxfamily.org/index.php?title=Main_Page2.extract and copy to a location you wantsudo cp -avr /home/tjiang/Downloads/eigen-eigen-b30b87236a1

2016-01-27 19:46:10 873

原创 install glm library in ubuntu and use it in qt

1. open link http://sourceforge.net/projects/ogl-math/?source=typ_redirectthen download and extract2.sudo cp -r /home/tjiang/Downloads/glm/ /usr/local/include/3.then add the gl

2016-01-27 19:43:45 1570

原创 using c++11 standerd in qt

add following two lines in .pro file# C++ flagQMAKE_CXXFLAGS_RELEASE=-O3QMAKE_CXXFLAGS += -std=c++11

2016-01-27 19:20:22 445

原创 Install Qt 5.5.1and Qt Creator3.6.0 in Ubuntu 14.04

Install Qt 5.3 in Ubuntu 14.04For 32bitwget http://download.qt-project.org/official_releases/qt/5.3/5.3.0/qt-opensource-linux-x86-5.3.0.runchmod +x qt-opensource-linux-x86-5.3.0.run./qt-openso

2016-01-27 18:04:38 2688

原创 DE20 Derivative Formulas

2016-01-25 09:56:46 631

原创 DE19 Introduction to the Laplace Transform

2016-01-25 09:53:43 477

原创 DE17 Finding Particular Solutions via Fourier Series

2016-01-25 09:52:33 421

原创 DE16 Continuation: More General Periods

2016-01-25 09:51:39 392

原创 DE15 Introduction to Fourier Series

2016-01-25 09:50:54 482

原创 DE14 Interpretation of the Exceptional Case: Resonance

2016-01-25 09:49:22 393

原创 DE13 Finding Particular Solutions to Inhomogeneous ODEs

2016-01-25 09:47:35 518

原创 DE12 Continuation: General Theory for Inhomogeneous ODEs

2016-01-25 09:42:11 418

原创 DE11 Theory of General Second-order Linear Homogeneous ODEs

2016-01-25 09:40:56 495

原创 DE10 Continuation: Complex Characteristic Roots

2016-01-25 09:38:34 450

原创 槽函数的好处

比如类A里面包含类a1,a2,这时a1要与a2通信的话,如果用槽函数则不需要它们之间相互知道,只需要在类A中把它们关联起来即可.

2016-01-22 23:16:38 1356

原创 Meshless Deformations Based on Shape Matching

论文来源公式(7)的推导:

2016-01-16 06:20:40 990 1

原创 DE9 二阶常系数线性方程

2016-01-16 06:08:06 494

转载 QT 的信号与槽机制介绍

QT 是一个跨平台的 C++ GUI 应用构架,它提供了丰富的窗口部件集,具有面向对象、易于扩展、真正的组件编程等特点,更为引人注目的是目前 Linux 上最为流行的 KDE 桌面环境就是建立在 QT 库的基础之上。QT 支持下列平台:MS/WINDOWS-95、98、NT 和 2000;UNIX/X11-Linux、Sun Solaris、HP-UX、Digital Unix、IBM AIX、S

2016-01-14 02:33:50 464

转载 普通指针到智能指针的转换

普通指针到智能指针的转换int* iPtr = new int(42);shared_ptrint> p(iPtr);智能指针到普通指针的转换int* pI = p.get();注意的地方:那就是不要将智能指针与普通指针混用。如果项目允许,坚持使用智能指针,避免原生指针。智能指针与普通指针需要特别特别特别的小心翼翼,比如以下的情况。

2016-01-12 23:19:24 26015

原创 GL中如何让画的点为圆形

else if(UiSettings::showMode() == UiSettings::POINT) { glEnable( GL_POINT_SMOOTH ); glPointSize(10.0f); glPolygonMode( GL_FRONT_AND_BACK, GL_POINT ); }

2016-01-11 04:43:54 1308 1

转载 彻底解决 LINK : fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏

最近我的VS2010不知道怎么回事,平时用的好好的,近期竟然出现了所谓的LINK : fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏头痛万分,查了各种资料一直无解,今天为了封装资源,嵌入清单,所以不惜血本仔细找了下,终于有解决方案了。平时我们都是将 项目–>项目属性–>配置属性–>连接器–>清单文件–>嵌入清单 中的“是”改为“否”,

2016-01-10 22:25:49 379

average diffusion distance

average diffusion distance implemented in matlab

2016-08-13

Farthest Sampling on 3D meshes with mesh kept based on diffusion distance

Farthest Sampling on 3D meshes with mesh kept based on diffusion distance implemented in matlab

2016-08-13

Fast Marching on 3D Meshes with diffusion distance

Fast Marching on 3D Meshes with diffusion distance implemented in matlab

2016-08-13

PCA implementation

PCA implementation in matlab

2016-08-06

Farthest Sampling on 3D meshes with mesh kept

Farthest Sampling on 3D meshes with mesh kept

2016-08-03

Fast Marching on 3D Meshes

implement fast marching on 3d meshes in matlab

2016-07-31

farthest point sampling

implement farthest point sampling in matlab

2016-07-25

2D Fast Marching Computations

implement 2d fast marching computations in matalb

2016-07-25

princal component analysis implemented in matlab

princal component analysis implemented in matlab

2016-07-09

as-conformal-as-possible surface registration

implement paper "as-conformal-as-possible surface registraion" in matlab

2016-07-07

position based dynamics

position based dynamics implemented in matlab

2016-07-05

mixed finite elements

implement mixed finite elements in matlab

2016-06-23

laplacian interpolation

implement laplacian interpolation in matlab

2016-06-23

libmysqlclient.so.16

solve QSqlDatabase: QMYSQL driver not loaded problem

2016-05-17

GLM显示带纹理的OBJ

GLM显示带纹理的OBJ

2016-02-04

2d perlin noise ocean

采用二维柏林噪声模拟的海洋 .zip

2016-01-09

softmax regression

softmax regression 源代码 源码用的armadillo数学库,如何安装armadillo数学库,请看我的博客 http://blog.csdn.net/seamanj/article/details/49892715

2015-11-20

shadow Mapping 阴影投影

shadow Mapping 阴影投影 主要介绍阴影投影实现的原理 和 实现方法

2014-05-12

3D_Shader_DisplacementMapping_Sphere.rar

移位贴图(Displacement Mapping)的实现

2013-09-05

3D_Shader_ProjectivetTexturing.rar

投影贴图(projective texturing)的实现

2013-09-01

3D_Shader_CubeEnvMapping.rar

立方体环境映射(cubic environment mapping)的实现,其中包括了反射,折射,菲涅尔效应,色散等知识.

2013-08-29

3D_Shader_NormalMapping.rar

3D 法线贴图(normal mapping)的实现

2013-08-15

3D_Shader_SphereEnvMapping_by_seamanj

3D球形环境映射(3D Sphere environment mapping)的实现

2013-08-15

3D_Shader_SphereEnvMapping.rar

球形环境映射(sphere environment mappint)原理的实现

2013-07-23

USB监控器.rar

USB监控器_去网页打开 使用到的工具,OD和W32DASM

2013-06-14

texture&blending

DX 混合 纹理操作 包括多重纹理的操作,以及BACKBUFFER的读取

2013-05-03

3D_Math_Quaternion

四元组的应用 包含: 1.从"按定轴旋转某角度"建立四元组 2.四元组的球形插值插值 3.四元组与3x3旋转矩阵的相互转换

2013-03-08

3D_Shader_Expansion&Shrinkage;_by_Seamanj

3D_Shader_Expansion&Shrinkage;_by_Seamanj

2013-03-08

3D_Math_Solve_Matrix_Inverse_by_Seamanj.rar

矩阵各种求逆的方法 包括: 1.用矩阵行列式求逆 2.用高斯-约当消元法求逆 3.用LU分解求逆

2013-03-06

3D_Math_Solve_Matrix_Inverse.rar

矩阵各种求逆的方法 包括: 1.用矩阵行列式求逆 2.用高斯-约当消元法求逆 3.用LU分解求逆

2013-03-06

3D_Math_Quaternion_by_Seamanj.rar

四元组应用的实现 包括了 1.从"按指定轴旋转多少度"建立四元组 2.四元组的球形插值 3.四元组与3x3旋转矩阵的相互转换

2013-03-06

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除