自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 QT30 how to use QcheckBox and QRadioButton in qt

mainwindow.cpp#include "mainwindow.h"#include "ui_mainwindow.h"#include MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow){ ui->setupUi(this);

2016-03-31 04:01:31 540

原创 QT29 how to use QWebView and open web page in QWebView

for qt 5 or above1. modify pro file#-------------------------------------------------## Project created by QtCreator 2016-03-30T20:04:00##-------------------------------------------------QT

2016-03-31 03:53:19 526

原创 QT28 how to display a splash screen in qt

modify main.cpp#include "mainwindow.h"#include #include #include int main(int argc, char *argv[]){ QApplication a(argc, argv); QSplashScreen *splash = new QSplashScreen(); sp

2016-03-31 03:44:49 406

原创 QT27 how to read text file and display file to a textbrowser or textedit

#include "mainwindow.h"#include "ui_mainwindow.h"#include #include #include MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow){ ui->setupUi(this);

2016-03-31 03:36:50 452

原创 QT26 show time and date

1. mainwindow.h#ifndef MAINWINDOW_H#define MAINWINDOW_H#include namespace Ui {class MainWindow;}class MainWindow : public QMainWindow{ Q_OBJECTpublic: explicit MainWindow(QWidge

2016-03-31 03:29:59 402

原创 QT24&25 how to run exe file by clicking a button in Qt

#include "mainwindow.h"#include "ui_mainwindow.h"#include #include MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow){ ui->setupUi(this);}MainWin

2016-03-31 03:16:41 548

原创 QT23 how to open a website in a default user browser

#include "mainwindow.h"#include "ui_mainwindow.h"#include #include MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow){ ui->setupUi(this);}MainWi

2016-03-31 03:08:25 687

原创 QT22 database values in QLineEdit or textbox if select QListView

1.modify the employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDialog(parent), ui(new Ui::Emp

2016-03-31 02:59:53 525

原创 QT21 Display selected row from QTableView to QlineEdit

1. modify employeeinfo.cpp #include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDialog(parent), ui(new Ui::Emplo

2016-03-31 02:53:51 825

原创 QT20 database values in QLineEdit or textbox if select combobox

1.modify employeeinfo window2. modify employee.cpp #include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDialog

2016-03-31 02:28:05 585

原创 QT19 How to link QComboBox with sqlite Database values

1.modify employeeinfo window2.modify employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDial

2016-03-31 02:12:51 601

原创 QT18 how to link QListView with sqlite Database values

1. modify employeeinfo window2. modify employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDi

2016-03-31 02:02:27 532

原创 Qt17 load sqlite table data to qtableview

1. reedit employeeinfo window2. modify employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) : QDi

2016-03-31 01:52:49 941

原创 QT16 delete data from sqlite database with pushbutton

1. modify the employeeinfo window2. modify the employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent) :

2016-03-31 01:31:31 525

原创 Qt15 Update a data from Sqlite database with pushbutton

1. reedit the employeeinfo window as2. modify the employeeinfo.cpp#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *parent

2016-03-31 01:19:40 621

原创 QT14 how to save data in sqlite database with pushbutton

1. reedit the employinfo window like2.reedit the employinfo.cpp as#include "employeeinfo.h"#include "ui_employeeinfo.h"#include "login.h"#include EmployeeInfo::EmployeeInfo(QWidget *pa

2016-03-31 01:01:07 550

原创 Qt13 Creating connection open and close function with sqlite database

1.  drag a label widget on employeeinfo window, name as label_sec_status2. modify login.h#ifndef LOGIN_H#define LOGIN_H#include #include #include #include #include "employeeinfo.h"nam

2016-03-30 07:14:30 706

原创 QT12 How to open a new window after successful Login

1. create a qt design form classFile->New File or Project->Files and Classes(QT)->Qt Designer Form ClassForm Template(Dialog without Buttons)Class name(EmployeeInfo)2. modify login.h

2016-03-30 01:58:52 636

原创 QT11 How to set image with QLabel in Qt

1. drag a label widget on the window, remove the string contained:2. insert two lines into class login constructor function in login.cpp:login::login(QWidget *parent) : QMainWindow(parent)

2016-03-30 01:38:46 1082

原创 QT8&9&10 Login Form using sqlite in QT application

1. Following the work in qt tutorial 7, we add some widgets on our window2. create a table named employeeinfoinsert some data into the table3. modify login.h as follows:#ifndef

2016-03-30 01:02:56 943

原创 QT7 How to connect Qt to SQLite

1. create a qt widgets application, name it as Sqlite_DB, modify the class name as Login2. switch to ui designer, drag a label onto the window used for showing the prompting information3. modify t

2016-03-29 23:00:57 609

原创 SQLite1 Install SQLite on windows

1. download sqlite tools containing sqlite3.exe from the official website:https://www.sqlite.org/download.htmlAt this time in my situation the link is:https://www.sqlite.org/2016/sqlite-tools-wi

2016-03-29 22:22:12 438

原创 AT3 two-dimensional surfaces : the sphere

2016-03-29 01:31:19 431

原创 using tetgen to generate tetrahedra

for tetgen installation please refer to http://blog.csdn.net/seamanj/article/details/510020861. edit object and export as .obj file in maya2. convert .obj to .off format in meshlab

2016-03-28 23:17:38 1186

原创 install tetgen on windows

1.download source code from the official wetbsite:http://wias-berlin.de/software/tetgen/#Download2. extract to a target directory, here which is like:C:\work_files\tetgen1.5.03. open cmake

2016-03-28 23:06:05 2649 5

原创 install boost 1.6.0

1. download boost 1.6.0 from the official websitehttp://www.boost.org/users/history/version_1_60_0.html2.extract the compressed file to a target directory, in my case it's:C:\work_files\boost_

2016-03-28 22:01:52 1930

原创 PDE14 heat equation intuition

2016-03-23 10:02:32 685

原创 PDE13 Wave equation: separation of variables

2016-03-23 09:50:00 514

原创 PDE12 wave equation: charactistics

2016-03-23 09:45:03 582

原创 PDE11 wave equation: d'Alembert examples

2016-03-23 08:47:20 547

原创 PDE10 wave equation: d'Alembert's formula

2016-03-23 08:22:14 1072

原创 PDE9 wave equation: general solution

2016-03-23 08:19:12 626

原创 PDE8 wave equation: derivation

2016-03-23 08:08:09 561

原创 PDE7 wave equation: intuition

2016-03-23 08:05:00 432

原创 PDE6 Transport with decay

2016-03-19 09:23:49 696

原创 AT2 Homeomorphism and the group structure on a circle

2016-03-19 05:57:03 377

原创 AT1 one-dimensional objects

2016-03-19 05:49:31 312

原创 AT0 Intrudoction

prob 1: how to make this?

2016-03-19 05:48:03 372

原创 PDE5 method of characteristics

2016-03-18 07:04:08 968

原创 PDE3&4 Transport equation: derivation & general solution

F(x,t)=0法向量为:(Fx, Fy)方向向量为:(-Fy, Fx)所以对于直线 x - ct = x0方向向量为:(c, 1)

2016-03-18 07:01:31 926

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关注的人

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