自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(13)
  • 资源 (71)
  • 收藏
  • 关注

转载 DLL用于非C++语言时的注意事项

我做的一个示例程序建立win32 dynamic link library project,add dummy.h #ifndef _DUMMY_H_#define _DUMMY_H_extern "C" _declspec(dllexport) int Mult(int);#endif /* _DUMMY_H_ */add dummy.cpp

2012-12-14 16:34:15 418

原创 Russell the history of western philosophy and 房龙+宽容(英文版).pdf

The family letters of Thomas JeffersonPublished for the Thomas Jefferson Memorial Foundation by the University Press of Virginia, 1966 -506 页Thomas Jefferson was a prolific letter writer; it has b

2012-12-03 12:30:57 2385

转载 加速matlab运行的三重境界

2010-01-24 09:22 加速matlab运行的三重境界加速matlab运行的三重境界%%%%%%%%%%%%%%% 一、 遵守Performance Acceleration的规则 二、 遵守三条规则 三、 绝招 %%%%%%%%%%%%%%%%% 一、 遵守Performance Acceleration的规则 关于什么是“Per

2012-12-01 15:03:26 565

原创 how to draw Opencv face detection Adaboost ROC/PR (绘制方法)

关于adaboost的一些说明 cf.http://www.opencv.org.cn/forum/viewtopic.php?t=4264Rainer Lienhart, Empirical Analysis of Detection Cascades of Boosted Classifiers for Rapid Object Detection: Receiver Operating

2012-11-18 17:08:49 2355 1

原创 image segmentation emulating ecognition source code in vc6 下载地址

Attention: The documentation and code and executables of this project has been moved to [here](https://github.com/JzHuai0108/ImageSegmentor).  我的那篇同名的博文里面没有说明下载地址,是我的疏忽!望大家见谅!下面是CSDN中的代码下载链接!如果有更新...

2012-08-02 18:51:24 2125 1

原创 image segmentor emulating eCognition's Multiresolution segmentation source code and user guide

Attention: The documentation and code and executables of this project has been moved to [here](https://github.com/JzHuai0108/ImageSegmentor).  Brief IntroductionThis software has realized the fo...

2011-11-07 21:02:59 2233

原创 STL vector usage tips and problems

<br />Today I program using STL vector,and find some characteristics of vector.<br />To initiate a vector by another vector after declaration, there are two ways.<br />1, vector<int> m;<br />vector<int> n;<br />m.assign(n.begin(),n.end());<br />2, m=vector

2011-01-26 16:30:00 526

原创 image segmentation emulating ecognition source code in vc6 图像分割算法模仿FENA

Attention: The documentation and code and executables of this project has been moved to [here](https://github.com/JzHuai0108/ImageSegmentor).   I have been developing a program aimed at image ...

2010-12-13 21:23:00 2580 15

原创 内存释放出错delete 失败 one tip

<br />这两天调试一个图像形态学变换的算法,有个函数里面分配内存存储图像数据,然后进行数据访问,对每个像素访问它的相邻像素的值,到最后释放内存却总出错。这个函数从人家的程序考过来的,没有问题在源程序里,我郁闷。不断修改,free 换成delete, 仍然不成,最后不得不不用delete ,反而不报错了。但这是个隐患。今天终于弄明白了,原来是内存访问越界,由于完全用数组下标形式访问数据,结果越界检索没有报错,到了free的时候,就报错了,really subtle!

2010-08-09 10:02:00 909

原创 JC验算点法matlab程序设计

practice JC method in MATLAB

2010-07-17 20:45:00 8648

原创 how to create images using gdal

<br />There are two general techniques for creating files, using CreateCopy() and Create(). <br />I had tried both methods in my MFC application. In the program, given one GDALDataset, all the bands were fetched and processed. <br />I wanted to save the da

2010-07-15 21:58:00 390

原创 how to create images using gdal

<br />There are two general techniques for creating files, using CreateCopy() and Create(). <br />I had tried both methods in my MFC application. In the program, given one GDALDataset, all the bands were fetched and processed. <br />I wanted to save the da

2010-07-15 21:57:00 465

原创 支持开源--破解envi代码发布--hierclust

Attention: The documentation and code and executables of this project has been moved to [here](https://github.com/JzHuai0108/ImageSegmentor). 我恨有许多好的算法没有开源代码,恨很多人被迫浪费精力重走别人的路,于是我把envi里面的算法用vc++6和stl...

2009-09-06 18:56:00 1560 3

image segmentor release version 2012 Aug

image segmentor emulating eCognition's Multiresolution segmentation source code and user guide博文中指的编译好的Release 版本,可在windows环境中运行。

2012-08-02

image segmentor update 2012 Aug

image segmentor emulating eCognition's Multiresolution segmentation source code and user guide 博文所述的C++ MFC源代码。

2012-08-02

image segmentor source code updated

This software has realized the following methods for segmentation: GRAPH BASED SEGMENTATION, quad tree segmentation, Multiresolution segmentation, and two-stage segmentation, watershed, mean shift; ALSO, mrf classification,primitive building extraction, change detection based on gradient correlation, histogram matching, intensity correlation and rosin automatic thresholding.

2011-11-07

image segmentor source code and release 图像分割器

This program's introduction is in my blog of this website. The algorithms and implementation details are also discussed in my blog. Please refer to this link if you use this program publicly.

2010-12-13

数字图像处理基本算法mfc源代码

包括canny edge detection,阈值变换,维纳滤波,直方图均衡,图像细化,旋转,图像配准,图像分割kmeans, isodata, fuzzy c means, fuzzy clustering, mrf image seg, 图像浏览,road svm using matlab, snakes matlab, anistropic gaussian filter

2010-07-17

Visual C++图像处理中文教程+北大数字图像处理教程+VC++数字图像处理典型算法及实现+数字图像处理简明教程及代码

Visual C++图像处理中文教程+北大数字图像处理教程+VC++数字图像处理典型算法及实现+数字图像处理简明教程及代码 四本书中包含了许多基本的图像处理的算法和vc++程序,但是如同所有的中文书一样,不详实,不系统,可以借鉴其中的代码。

2010-07-17

digital image processing

digital image processing english version. I don't know the author. This book includes image segmentation, region description, image classification, restoration,compression.

2010-07-17

ansys and marc 算例 of 江见鲸陆新征 结构有限元分析与应用

是江见鲸结构有限元分析与应用的配套程序,陆新征编的,我改动了其中几个,与大家分享!

2010-07-17

混凝土非线性分析讲义+ANSYS分析ANSYS分析实例与工程应用+ANSYS分析实例集+钢筋混凝土结构非线性有限元理论与应用+钢筋混凝土结构非线性有限元分析

混凝土非线性分析讲义+ANSYS分析ANSYS分析实例与工程应用+ANSYS分析实例集+钢筋混凝土结构非线性有限元理论与应用+钢筋混凝土结构非线性有限元分析 相当于五本书了。许多东西值得借鉴!

2010-07-17

graph coloring code and website

some websites for graph coloring and joe cuberson's graph coloring and graph generator in gnu c++ in unix and a very smart c++ source code for vertex coloring in vc++.

2009-09-08

Modified fast adaptive mean shift compiled in vc++6+kappa coefficient

This file contains some necessary essays for mfams and the project building mfams. and a matrix library named newmat10, if you want to use matrix and mahalanobis metric,you can add it to the project include path. What's more, a function named evl implementing Kappa coefficient is added.Also, some test data is included.

2009-09-06

imagex image segmentation region grow+ hierarchical clustering vc++6

THIS file contains what I've been toiling for. imagex_1_0and _1_1 is a project I developed for image segmentation using region grow and graph based seg and edge guided region merging,the user guide is included in each file. And WHAT i am proud of is the hierclust contained in Imagex_2_0, which implemented the algorithm of hierarchical clustering introduced in<Implementation of a Fast Algorithm for Segmentating SAR Imagery> using THE metric from ECOGNITION.

2009-09-06

edison 程序编译 vc++ CRT+GUI

this file contains 2 file:1,edison-debug, the gui version project for edison. Building procedure,first, ensure you have installed wxMSW (I use wxwidgets-2.8.10)and compiled the libs and configured the environment of vc++6, following the instructions in Introduction to wxwidgets in www.codeproject.com. second, unzip this file with the name edison-debug, and build exe, fine! Note: if wx.rc not found, enter the directory of <wxWidgets>\include\ and <wxWidgets>\include\msvc in the entry of Tools->directories->Include files.2, the win32 console application for edison. JUST unzip the file and build it, you shall get the exe file.Have fun!

2009-08-30

real analysis 4book embeded

FOUR books about real analysis:1,real analysis by richard F.Bass,2,RealAnalysis,3ed,byH.L.Royden,3,realanalysis by ouwehand of university of capetown,4,realanalysis by williamG.Faris.

2009-08-29

ant colony optimization dissertations zip

FIVE theses about ACO ant colony optimization: 1,An artificial ant colonies approach to medical iamge segmentation,2,An image processing system for driver assistance,3,An improved ant colony algorithm for fuzzy clustering in image segmentation,4,基于蚁群智能的遥感影像分类新方法,5,一种基于流形的蚁群聚类算法.

2009-08-29

decision tree primer and tutorial

4 files included: 1,decision tree primer, 2,决策树简介,c4.5, chaid,3,决策树算法介绍,chaid,4,decision trees, a primer for decision making professionals.

2009-08-29

常用数据挖掘算法-aprori clustering kmeans svm neural network genetic karuna c ++

very comprehensive toolkit for data mining!

2009-08-29

c# matrix code&kernel density estimator functions in matlab&mahalanobis dist in matlab

there are three files in this zip.1, c# code for matrix and a small tutorial,2, kde -kernel density estimator toolkit in matlab,3, a .m file for mahalanobis distance computation implemented in matlab. IT owe its existence to strong functions in matlab.

2009-08-29

Linear Algebra and its Applications-3ed-Brooks Cole&高等代数教案&组合矩阵论

three classic books in algebra and matrix: 1,abbr_Linear Algebra and its Applications, (3ed, Brooks Cole, 1988)(T)(516s),2,高等代数教案,elementary,3,组合矩阵论,inscrutable.

2009-08-29

随机过程论 一二三卷全

很高深的东西,至少算研究生课程,就是可能有些年代久远。

2009-08-29

matlab manuallet&c++连接matlab之研究&MATLAB GUI程序段&MATLAB6.0数学手册doc版&MatlabProgrammingManual2&fuzzy logic in matlab

This cart carries many files listed below:1,matlab manual and introductory tutorials is a brief introduction to matlab;2,c++连接matlab之研究,Taiwan,with many details and above all, illustrations by images.3,MATLAB GUI编程中几个有用的程序段, you may find it useful when working on gui.4,MATLAB6.0数学手册doc版,complete version,5,Matlab Manual mainpage,6,MatlabProgrammingManual,7,tutorial2programminginmatlab,8,matlabmanual for fuzzylogic.

2009-08-29

matlab流形学习算法工具包&matlab机器学习算法软件包&matlab svm toolkit

There are three matlab toolkits in this zip file. 1,一个包含丰富内容的流形学习算法工具包,有图形示例文件demo.fig,包括laplacian特征映射算法.流形规则调整.svm分类算法等内容,希望对研究机器学习的朋友有用.2,一个机器学习算法软件包,包括神经网络,模糊逻辑,支持向量机,采用MATLAB平台实现,3,支持向量机Matlab工具箱1.0 BY 陆振波,更详细的软件请见他的网页blog.这是一个精简版,还有五个svm 工具箱,我也收集在我的资源里,有兴趣请help yourself. Note:one of the programs of svm contains a function named spca for pca computation is erroneous because it takes the minium part of eigenvectors! ATTENTION!

2009-08-29

数字图像模式分类 使用bayes and neural network c++

This is a program for digit image classification using bayes and neural networks and some other algorithms. ADVIce:if you watta see how to program bayes networks, this may be helpful.

2009-08-29

cximage-6.0.0 source code and demo

This is full source code for cximage and the demo of csimage are included.

2009-08-29

模糊数学基础及实用算法的vb代码

I got this when I studied fuzzy algorithms, if you're familiar with vb and interested in fuzzy theories, download it and try it out!

2009-08-29

example_fft exe

this file implements fft containing many dll.

2009-08-28

工程数学公式手册--台湾版

clumsy characters fuzzy mainlander!

2009-08-28

《数据挖掘原理与应用——SQLServer2005数据库》算法案例

I got this when I try to do sth. about data mining. Look at this when you are interested!

2009-08-28

数据挖掘-实用机器学习技术书中程序weka的java实现

weka is a very useful tool for data mining.

2009-08-28

积分几何与几何概率&拓扑空间论&微分几何讲义陈省身Ebook

积分几何与几何概率&拓扑空间论&微分几何讲义陈省身 三本大作,有些年代了。

2009-08-28

武大&yoshida&maddox 泛函分析

this file contains three textbooks for functional which are :1,武大泛函分析,至少算研究生课程,2,maddox泛函分析,这一个比较容易,3,yoshida泛函分析,需要比较好的测度论和集合论基础。如果对这些东西看起来有困难,建议看看中央电大的许凤教授的泛函分析基础。

2009-08-28

Cross-Platform GUI Programming with wxWidgets

this book explains how to use wxwidgets in many applications. Note: wximage might sheds light on image processing problems. comparing to opencv and cximage, it's more portable and independent of work environment, though may be less powerful than opencv and less interface friendly than cximage, and it receives more attention than both of the proceeding library. Believe not, check google!

2009-08-28

c++basic&mfc operate bmp&image format introduction&libtiff leaflet&image transform ppt&region grow code grey &threshold selection for image segmentation

this assorted file includes:1,bmp文件MFC中翻转、保存和解析代码;2,c++programming shows some basic concepts in c++;3,imageformatdepict depicts six image format;4,libtiff how to use, demostrates use of libtiff reading and saving tiff files;5,区域增长分割代码for灰度图,6,图像分割中阈值的自动选取的研究及其算法实现,7,图像变换ppt讲解。

2009-08-28

ENVI与IDL二次开发教程&important aspects of global model-mapping technology

NoW THAT envi is in intense relation with arcgis, IDL catches on. this file briefly tells you how to program in idl and a supplementary file named On The Road To 3D Geographic Systems-important aspects of global model-mapping technology tells something about geosystems.

2009-08-28

wxPython2.8-win32-ansi-2.8.10.1-py26&wxPython2.8-win32-docs-demos-2.8.10.1

This file includes two exe file for wxpython which are file for installation and documents for reference. IT'S REQUIRED thatPYTHON IS INSTALLED IN your computer.

2009-08-28

mySvm for naive svm niu-svm sv distribution support estimation c++

THIS IS A doctorate implementation of svm by stefan ruping. It supports simple input format.What characters this svm realization is full and detailed usage document and some examples.

2009-08-28

how to program combining matlab and c++

THIs file includes: 1,a manual for using matlab;2, how to call vc functions in matlab using mexfunction with detailed procedure;3,how to use matlab functions in c++ through comtool and other means, such as matcom.4,the api reference for matlab.you might find this document in matlab help directory. hoWEVER,it's useful to put it in your pocket.

2009-08-28

a simple library for matrix computation in c++

THIS is a SIMPLE library for matrix in c++. It can do QR decomposition and LU AND inversion. HOwever, in my view, newmat10 takes priority when selecting a good matrix library with its simplicity and good help documents. Otherwise, if you want to compare the difference between those libraries,you can download this file and try it out!

2009-08-28

svm-km &ls-svmlab&osu-svm3.00&stprtool&svm-stevegunn

this file contains many typical variations of svm, such as smo and npa and kernel method for pca.IN all, five useful libraries for svm classification and regression.

2009-08-28

neural network and fuzzy system elementary ppt

YOU may find many important rudiment of NN AND FS in those ppt although it seems the content is not complete.

2009-08-28

空空如也

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

TA关注的人

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