linkto: http://home.dei.polimi.it/matteucc/Clustering/tutorial_html/index.htmlFuzzy C-Means Clustering The Algorithm Fuzzy c-means (FCM) is a method of clustering which allows one piece of data to belong to two or more clusters. This method (developed by Dunn in 1973 and improved by... Read More
posted @ 2012-09-05 21:10 homegis Views(506) Comments(0) Diggs(0) Edit
前言: 最近在学习《Unix编程艺术》。以前粗略的翻过,以为是介绍unix工具的。现在认 真的看了下,原来是介绍设计原则的。它的核心就是第一章介绍的unix的哲学以及17个设计原则,而后面的内容就是围绕它来展开的。以前说过,要学习适合 自己的资料,而判断是否适合的一个方法就是看你是否能够读得下去。我对这本书有一种相见恨晚的感觉。推荐有4~6年工作经验的朋友可以读一下。 正题: 作者在介绍Unix设计原则时,其中有一条为“表示原则:把知识叠入数据以求逻辑质朴而健壮”。结合之前自己的一些经验,我对这个原则很有共鸣,所以先学习了数据驱动编程相关的内容,这里和大家分享出来和大家一起讨论。 数... Read More
posted @ 2012-07-16 18:31 homegis Views(200) Comments(0) Diggs(0) Edit
Some problem shows as follow when executing IDL/ENVI program in Terminal from remote Linux Server:% DEVICE: Unable to connect to X Windows display: :0 % DEVICE: Unable to open X Windows display. Is your DISPLAY environment variable set correctly? Solution to this problem in step:ssh to r... Read More
posted @ 2012-06-14 23:51 homegis Views(1801) Comments(0) Diggs(0) Edit
ENVI安装: 1 建立/usr/local/itt 目录2 copy *.tar文件到itt目录下3 本目录下解压*.tar4 执行sudo ./install 安装,默认选项5 64位机器可能会抛出错误:libXp.so.6: cannot open shared object file 解决:安装libXp,sudo apt-get install libXp-1*6 完毕 IDL 调用:shell命令:$IDL program.pro -args parameter1 parameter2 .... Read More
posted @ 2012-05-15 20:22 homegis Views(1436) Comments(0) Diggs(0) Edit
参考文献:【1】PPT 详细 http://wenku.baidu.com/view/6e39b519964bcf84b9d57b70.html【2】matlab程序 http://www.math168.com/UploadFiles/2009326161552683.swf 【3】wiki介绍 http://en.wikipedia.org/wiki/Flow_network (http://zh.wikipedia.org/wiki/%E7%BD%91%E7%BB%9C%E6%B5%81)【4】应用 http://222.240.219.68:8080/files/files_uploa Read More
posted @ 2012-05-09 22:21 homegis Views(571) Comments(0) Diggs(0) Edit
Gfarm Installation check the process currently running: $netstat –tuanp if the software has been installed, remove them: $sudo apt-get purge XXX refer to the normal installation guide, INSTALL.en to install dependent libraries. Gfarm 2.5 for example:$sudo apt-get install libssl-dev libldap2... Read More
posted @ 2012-05-01 23:41 homegis Views(456) Comments(0) Diggs(0) Edit
多表之间的连接有三种方式:Nested Loops,Hash Join 和 Sort Merge Join. 下面来介绍三种不同连接的不同: 一. NESTED LOOP: 对于被连接的数据子集较小的情况,嵌套循环连接是个较好的选择。在嵌套循环中,内表被外表驱动,外表返回的每一行都要在内表中检索找到与它匹配的行,因此整个查询返回的结果集不能太大(大于1 万不适合),要把返回子集较小表的作为外表(CBO 默认外表是驱动表),而且在内表的连接字段上一定要有索引。当然也可以用ORDERED 提示来改变CBO默认的驱动表,使用USE_NL(table_name1 table_name2)可是强制C.. Read More
posted @ 2012-05-01 23:40 homegis Views(313) Comments(0) Diggs(1) Edit
早些时候写过《 IDL 与 外部语言的几种集成方式(一)——connector》,这几天在VS2005下重新折腾IDL7.1程序调用,发现有些问题。已经解决,总结如下: 三种方法 : 一. IDLDrawWidget 控件(可视化界面) 1. 新建Windows应用程序,添加IDLDrawWidget控件到环境,拖拽至程序界面。 2. 触发事件中添加代码: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->intn;t... Read More
posted @ 2010-04-02 00:27 homegis Views(1290) Comments(0) Diggs(0) Edit
推荐一个我觉得比较方便又免费的卫星图片下载工具——getmaps,若你有需要下载卫星图的话,赶紧去下载试试吧。下载地址:http://bbs.godeyes.cn/showtopic-334439.aspx,打不开或是看不到的,可以去上帝之眼论坛里搜索,下载8月2日版000742.rar即可,一并下载说明和实例152246.rar。下载解压之后,共有7个文件,注意使用8月2... Read More
posted @ 2009-12-20 17:33 homegis Views(1117) Comments(0) Diggs(0) Edit
1 熟悉MRT MODIS产品的类型不同,一景HDF格式的影像包含的波段也各不相同。MRT处理时需要选择处理波段,0表示不作处理,1表示处理,首先要确定影像的波段数。 1、拼接 Mrtmosaic.exe程序用来拼接影像。调用方式为: mrtmosaic -i "g:\n%1.txt" -s " 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0... Read More
posted @ 2009-12-20 17:00 homegis Views(5816) Comments(0) Diggs(0) Edit