资源简介
主要是基于MATLAB的对图像特征的分类随机森林算法,想要更多MATLAB资源,联系我谢谢支持
代码片段和文件信息
%**************************************************************
%* mex interface to Andy Liaw et al.‘s C code (used in R package randomForest)
%* Added by Abhishek Jaiantilal ( abhishek.jaiantilal@colorado.edu )
%* License: GPLv2
%* Version: 0.02
%
% Calls Classification Random Forest
% A wrapper matlab file that calls the mex file
% This does prediction given the data and the model file
% Options depicted in predict function in http://cran.r-project.org/web/packages/randomForest/randomForest.pdf
%**************************************************************
%function [Y_hat votes] = classRF_predict(Xmodel extra_options)
% requires 2 arguments
% X: data matrix
% model: generated via classRF_train function
% extra_options.predict_all = predict_all if set will send all the prediction.
%
%
% Returns
% Y_hat - prediction for the data
% votes - unnormalized weights for the model
% prediction_per_tree - per tree prediction. the returned object .
% If predict.all=TRUE then the individual component of the returned object is a character
% matrix where each column contains the predicted class by a tree in the forest.
%
%
% Not yet implemented
% proximity
function [Y_new votes prediction_per_tree] = classRF_predict(Xmodel extra_options)
tic;
if nargin<2
error(‘need atleast 2 parametersX matrix and model‘);
end
if exist(‘extra_options‘‘var‘)
if isfield(extra_options‘predict_all‘)
predict_all = extra_options.predict_all;
end
end
if ~exist(‘predict_all‘‘var‘); predict_all=0;end
[Y_hatprediction_per_treevotes] = mexClassRF_predict(X‘model.nrnodesmodel.ntreemodel.xbestsplitmodel.classwtmodel.cutoffmodel.treemapmodel.nodestatusmodel.nodeclassmodel.bestvarmodel.ndbigtreemodel.nclass predict_all);
%keyboard
votes = votes‘;
clear mexClassRF_predict
Y_new = double(Y_hat);
new_labels = model.new_labels;
orig_labels = model.orig_labels;
for i=1:length(orig_labels)
Y_new(find(Y_hat==new_labels(i)))=Inf;
Y_new(isinf(Y_new))=orig_labels(i);
end
1;
t = toc;
disp([mfilename ‘总的运行时间为‘ num2str(t)])
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-05-27 22:15 18.对图像特征的分类随机森林算法\
文件 202 2011-05-28 23:40 18.对图像特征的分类随机森林算法\c.mat
文件 2228 2011-08-14 01:40 18.对图像特征的分类随机森林算法\classRF_predict.m
文件 14987 2011-08-14 00:02 18.对图像特征的分类随机森林算法\classRF_train.asv
文件 14895 2011-08-14 00:24 18.对图像特征的分类随机森林算法\classRF_train.m
文件 856 2011-05-28 23:40 18.对图像特征的分类随机森林算法\Compile_Check
文件 557 2011-05-28 23:40 18.对图像特征的分类随机森林算法\compile_linux.m
文件 1720 2011-05-28 23:40 18.对图像特征的分类随机森林算法\compile_windows.asv
文件 1740 2011-05-28 23:40 18.对图像特征的分类随机森林算法\compile_windows.m
目录 0 2017-05-27 22:15 18.对图像特征的分类随机森林算法\data\
文件 48856 2011-05-28 23:40 18.对图像特征的分类随机森林算法\data\twonorm.mat
文件 96300 2011-05-28 23:40 18.对图像特征的分类随机森林算法\data\X_twonorm.txt
文件 600 2011-05-28 23:40 18.对图像特征的分类随机森林算法\data\Y_twonorm.txt
文件 283471 2011-05-29 16:18 18.对图像特征的分类随机森林算法\m.mat
文件 2693 2011-05-28 23:40 18.对图像特征的分类随机森林算法\Makefile
文件 2523 2011-05-28 23:40 18.对图像特征的分类随机森林算法\Makefile.windows
文件 20992 2011-05-28 23:40 18.对图像特征的分类随机森林算法\mexClassRF_predict.mexw32
文件 26624 2011-05-28 23:40 18.对图像特征的分类随机森林算法\mexClassRF_predict.mexw64
文件 32256 2011-05-28 23:40 18.对图像特征的分类随机森林算法\mexClassRF_train.mexw32
文件 46080 2011-05-28 23:40 18.对图像特征的分类随机森林算法\mexClassRF_train.mexw64
目录 0 2017-05-27 22:15 18.对图像特征的分类随机森林算法\precompiled_rfsub\
目录 0 2011-06-02 16:28 18.对图像特征的分类随机森林算法\precompiled_rfsub\linux64\
目录 0 2017-05-27 22:15 18.对图像特征的分类随机森林算法\precompiled_rfsub\win32\
文件 6848 2011-05-28 23:40 18.对图像特征的分类随机森林算法\precompiled_rfsub\win32\rfsub.o
目录 0 2017-05-27 22:15 18.对图像特征的分类随机森林算法\precompiled_rfsub\win64\
文件 9840 2011-05-28 23:40 18.对图像特征的分类随机森林算法\precompiled_rfsub\win64\rfsub.o
文件 3255 2011-05-28 23:40 18.对图像特征的分类随机森林算法\README.txt
文件 9840 2011-05-28 23:40 18.对图像特征的分类随机森林算法\rfsub.o
目录 0 2017-05-27 22:15 18.对图像特征的分类随机森林算法\src\
文件 33889 2011-05-28 23:40 18.对图像特征的分类随机森林算法\src\classRF.cpp
文件 8947 2011-05-28 23:40 18.对图像特征的分类随机森林算法\src\classTree.cpp
............此处省略17个文件信息
相关资源
- lms自适应滤波算法提取胎儿心电matl
- matlab算法——计算三维散乱点云的曲
- music的MATLAB算法
- 运筹学运输问题闭合回路matlab算法
- PM,MUSIC四阶累积量等几种DOA估计算法
- 基于pso的测试函数Griewank得MATLAB算法代
- 广义预测控制MATLAB算法
- 车牌识别MATLAB算法
- 节点导纳矩阵的Matlab算法
- 图像处理中的模糊C均值聚类matlab算法
- 0.618法和fibonacci法matlab算法
- 自适应阈值分割matlab算法
- 机器人避障matlab算法
- ssim的MATLAB算法程序
- 内点法最优潮流MATLAB算法
- Logistic曲线的三种参数估计方法及ma
- MATLAB算法:对输入抽样值进行PCM编码
- GA matlab算法程序
- huff编解码matlab算法
- 三维装箱和VRP结合的MATLAB算法
- 广度优先遍历树的matlab算法实现
- puma机器人运动学正解MATLAB算法
- 多目标perota优化MATLAB算法
- 基于暗通道先验的图像去雾MATLAB算法
- 最大似然分类算法
- 提升小波包去噪MATLAB算法
- 电力系统状态估计MATLAB算法
- ackley函数求极小值问题-用matlab算法求
- 一个有关飞机的模板匹配的跟踪的m
- Matlab十五种经典算法
评论
共有 条评论