自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 收藏
  • 关注

原创 数据结构

<br />一次冒泡排序:<br /><br />#include <iostream><br />using namespace std;<br />typedef struct node<br />{<br /> int data;<br /> struct node *next;<br />}node, * linklist;<br /><br />linklist creat_l(linklist &l,int n);<br />void jisuan(linklist l,int n);<br /

2011-04-05 16:04:00 276

原创 Queue

# -*-coding: utf-8 -*-# Author :writen by Qiusheng Li# Time: 2014/08/19# Email:liqiusheng_123@hotmail.com# enqueue Insert an item at the back of the queue# dequeue Remove an item from the front o

2014-08-19 20:15:30 468

原创 Queue1 -using two stacks impliment

# -*-coding: utf-8 -*-# Author :writen by Qiusheng Li# Time: 2014/08/18# Email:liqiusheng_123@hotmail.com# enqueue Insert an item at the back of the queue# dequeue Remove an item from the front o

2014-08-18 20:52:27 454

原创 Queue python

# -*-coding: utf-8 -*-# Author :writen by Qiusheng Li# Time: 2014/08/16# Email:liqiusheng_123@hotmail.com# enqueue Insert an item at the back of the queue# dequeue Remove an item from the front o

2014-08-16 21:38:36 819

原创 Stack---python

# -*-coding: utf-8 -*-# Author :writen by Qiusheng Li# Time: 2014/08/15# push Insert an item at the top of the stack# pop Remove an item from the top of the stack# peek Look up the element on the top#

2014-08-15 16:19:56 506

转载 ParaView整体介绍

ParaView是一个开源的,跨平台的数据处理和可视化程序。ParaView用户可以迅速的建立起可视化环境利用定量或者是定性的手段去分析数据。利用它的批量处理能力可以在三维或者是在报表中交互进行“数据挖掘”(这里不知道翻译的对不对)。ParaView开发使用分布式的内存计算资源来对非常大的数据集进行分析。它可以在超级计算机上运行万亿次的数据集以及笔记本电脑更小的数据分析。 本课程提供了

2014-07-13 16:24:24 9032

转载 在ParaView中有效的使用属性面板

The Properties panel in ParaView has undergone some changes since ParaView 3.98 with still more coming for the upcoming ParaView 4.0 release. The Properties panel, being the panel that users use to

2014-05-21 17:04:40 1372

转载 VTK的学习资源

本文介绍从哪儿开始学习VTK(Visualization Toolkit的简称),如何在网上找寻VTK的学习资源。 首先,可以到维基百科或者百度百科上查看VTK条目,了解VTK是什么。http://en.wikipedia.org/wiki/VTKhttp://baike.baidu.cn/view/627777.htm 然后可以到VTK官方网站看其

2014-05-17 16:42:48 824

原创 给定大小数组,随机取出不相同m个数。

#include #include #include #define MAX 10int data[MAX];int main(){    int i,j,m,temp; for(i=0;i {  data[i]=i; } scanf("%d",&m); if(m {  for(j=MAX;j>MAX-m;j--)  {   te

2013-04-01 00:38:50 481

原创 acm

1.1 数组和字符串1.1.1 一维数组倒置 要求不增加额外的内存空间 const int MAX=20;void Fun(int *a,int n){   int *p,*q,t;   int m=n/2;   for(p=a,q=a+n-1;p   {          t=*p;          *p=*q;          *q=t;  

2011-06-06 21:53:00 707

原创 简单排序

<br />一次冒泡排序:<br /><br />#include <iostream><br />using namespace std;<br />typedef struct node<br />{<br /> int data;<br /> struct node *next;<br />}node, * linklist;<br /><br />linklist creat_l(linklist &l,int n);<br />void jisuan(linklist l,int n);<br /

2011-04-06 21:28:00 315

原创 tagTest

<br />public tagRECT {<br />   int left,<br />   int top,<br />   int right,<br />   int bottom<br />)

2011-04-05 14:40:00 325

转载 高斯背景建模

<br />OPENCV中混合高斯背景模型的实现 --转自面朝大海,春暖花开的空间 <br />看高斯混合模型的论文的时候感觉一头雾水,主要是那些概率公式比较难懂,看了几遍论文和代码才有了一点感觉,以下是个人的对混合高斯背景模型代码的理解,后面会通过进一步理解不断对此贴修正.....<br />注:本人对该代码的理解也有很多不到位的地方,希望以后会慢慢矫正。程序中代码的实现与论文中公式有些出入,不过不影响对全局的把握和理解。<br />////////////////////////cvCreateGaus

2011-03-16 21:19:00 683

原创 背景差法OpenCV实现程序代码

背景差法OpenCV实现程序代码<br />默认分类2010-11-12 22:10:27阅读70评论0  字号:大中小 订阅<br />#include "highgui.h"<br />#include "cv.h"<br />#include <stdio.h><br />#include"例子一.h" <br />int main(int argc,char**argv)<br />{<br />//声明指针,矩阵<br />IplImage*image=NULL;<br />IplImage*ba

2011-03-08 17:31:00 1877

原创 opencv使用cvDFT 傅立叶转换的例子

opencv使用cvDFT 傅立叶转换的例子 <br />int main(int argc, char* argv[])<br />...{<br /><br />    unsigned int i;<br />    CvMat* s = cvCreateMat(1,32,CV_32FC1);<br />    CvMat* d = cvCreateMat(1,32,CV_32FC1);<br />    CvMat* s2 = cvCreateMat(1,32,CV_32FC1);<br />   

2011-03-08 17:23:00 1653

空空如也

空空如也

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

TA关注的人

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