登录
首页 » matlab » toolbox-for-dimensionality-reduction

toolbox-for-dimensionality-reduction

于 2011-09-22 发布 文件大小:221KB
0 186
下载积分: 1 下载次数: 133

代码说明:

  一个关于数据降维的工具包,外国牛人编写,囊括了各种降维方法,是一个很好的工具!(A tool for data reduction package, foreign cattle were written, include a variety of dimension reduction method is a good tool!)

文件列表:

toolbox for dimensionality reduction
....................................\compute_nn_distance.m,1518,2006-09-08
....................................\compute_nn_graph.m,1664,2006-09-08
....................................\dijkstra_fast.dll,57344,2004-05-03
....................................\hlle.m,5717,2005-10-10
....................................\isomap.m,3950,2006-05-05
....................................\leigs.m,7393,2006-09-08
....................................\lle.m,2477,2006-09-08
....................................\load_images_dataset.m,5834,2006-04-10
....................................\load_points_set.m,4267,2006-02-05
....................................\load_subimages_dataset.m,1903,2006-08-24
....................................\ltsa.m,2653,2006-09-08
....................................\nn_prepare.dll,120320,2001-01-16
....................................\nn_prepare.m,1645,2002-01-17
....................................\nn_search.dll,128512,2001-01-16
....................................\nn_search.m,1984,2002-01-17
....................................\pca.m,7182,2006-08-28
....................................\perform_dimreduc_interpolation.m,1523,2006-08-14
....................................\perform_geodesic_embedding.m,1254,2006-08-13
....................................\perform_local_pca.m,2092,2006-08-28
....................................\plot_flattened_dataset.m,1392,2006-08-13
....................................\range_search.dll,129024,2001-01-16
....................................\range_search.m,1920,2002-01-17
....................................\readme.txt,2505,2006-09-08
....................................\test_datasets.m,793,2006-09-08
....................................\test_dimreduc.m,1464,2006-09-08
....................................\test_display_pointsets.m,386,2005-10-11
....................................\test_images.m,1303,2006-09-08
....................................\test_isomap_landmarks.m,1105,2006-09-08
....................................\test_meshes.m,876,2006-08-13
....................................\test_nearest_neighboors.m,472,2006-09-08
....................................\test_pca.m,333,2006-09-08
....................................\test_subimages.m,2536,2006-09-08
....................................\toolbox
....................................\.......\build_euclidean_weight_matrix.m,706,2004-01-06
....................................\.......\compute_distance_matrix.m,310,2004-10-06
....................................\.......\compute_distance_to_points.m,548,2005-05-08
....................................\.......\load_image.m,7511,2005-07-19
....................................\.......\perform_rbf_interpolation.m,4065,2005-10-10
....................................\.......\plot_mesh.m,2259,2004-12-24
....................................\.......\plot_scattered.m,1364,2005-10-10
....................................\.......\read_off.m,2339,2005-09-03
....................................\.......\test_rbf.m,405,2005-10-10
....................................\.......\triangulation2adjacency.m,611,2005-02-08

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • shearlet
    此程序为shearlet程序,用于对图像进行分解变换,有兴趣的可以下载(This procedure for shearlet program for image decomposition transform, are interested can download)
    2020-11-23 15:19:34下载
    积分:1
  • CT_MATLAB_v0
    说明:  基于压缩感知理论的目标跟踪算法,实现对可视目标的稳健跟踪(Target tracking algorithm based on compressed sensing theory)
    2019-06-19 17:10:10下载
    积分:1
  • second-gray-image-statistics-and-FFT
    采集一幅像素大于64*64黑白图像; 常规的数学统计数据处理:计算图象各象素点灰度值得均值、标准差、方差,并绘出灰度直方图; 采用[FFT(傅立叶变换)]对图像进行分析(Acquisition of a pixel is greater than 64* 64 black and white images The conventional mathematical statistical data processing: calculation of each pixel grayscale image is worth the mean, standard deviation, variance, and draw grayscale histogram The [FFT (Fourier transform)] to do image analysis )
    2012-03-06 14:04:15下载
    积分:1
  • src
    说明:  ORB-SLAM 基本延续了 PTAM 的算法框架,但对框架中的大部分组件都做了改进, 归纳起来主要有 4 点: ORB-SLAM 选用了 ORB 特征, 基于 ORB 描述量的特征匹配和重定位, 都比 PTAM 具有更好的视角不变性。此外, 新增三维点的特征匹配效率更高, 因此能更及时地扩展场景。扩展场景及时与否决定了后续帧是否能稳定跟踪。ORBSLAM 加入了循环回路的检测和闭合机制, 以消除误差累积。系统采用与重定位相同的方法来检测回路(匹配回路两侧关键帧上的公共点), 通过方位图 (Pose Graph) 优化来闭合回路。PTAM 需要用户指定 2 帧来初始化系统, 2 帧间既要有足够的公共点, 又要有足够的平移量. 平移运动为这些公共点提供视差 (Parallax) , 只有足够的视差才能三角化出精确的三维位置。ORB-SLAM 通过检测视差来自动选择初始化的 2 帧。PTAM 扩展场景时也要求新加入的关键帧提供足够的视差, 导致场景往往难以扩展. ORB-SLAM 采用一种更鲁棒的关键帧和三维点的选择机制——先用宽松的判断条件尽可能及时地加入新的关键帧和三维点, 以保证后续帧的鲁棒跟踪; 再用严格的判断条件删除冗余的关键帧和不稳定的三维点,以保证 BA 的效率和精度。(Orb-slam basically continues the algorithm framework of PTAM, but most of the components in the framework have been improved, which mainly includes four points:)
    2020-06-11 23:43:54下载
    积分:1
  • GetTexture
    用于分别从四个方向提取图形图像的纹理特征(For texture feature graphic images were extracted four directions)
    2015-12-12 10:08:08下载
    积分:1
  • zengqiang
    说明:  图像增强程序,经测试有一定效果。其中采用模糊增强算法,值得参考。(Image enhancement procedures, have been tested and have a certain effect. Which the use of fuzzy enhancement algorithm, it is also useful.)
    2008-12-01 12:33:50下载
    积分:1
  • SANBAN
    对比两张图片上的散斑的变化来确定被测材料的变形和相关位移(Change of speckle contrast two images to determine the detected material deformation and displacement)
    2020-12-23 13:59:06下载
    积分:1
  • markov
    基于高斯混合模型markov树算法的图像分割。。。(Gaussian mixture model based markov tree algorithm for image segmentation. . .)
    2009-04-02 09:49:45下载
    积分:1
  • image_matching
    说明:  实现了三种图像匹配算法 1:归一化互相关匹配算法 2:基于Hausdorff距离的图像匹配算法 3:图像不变矩匹配算法(Three matching algorithms to achieve 1: normalized cross correlation matching algorithm 2: the image matching algorithm based on Hausdorff Distance 3: Image Invariant Moment Matching Algorithm)
    2021-03-28 19:09:11下载
    积分:1
  • ostu
    ostu图像分割阈值算法,对Ostu图像分割最优阈值进行优化处理,极大缩短了搜索图像阈值计算时间,与传统的枚举法Otsu方法相比,在计算时间上具有显著的优点。(ostu threshold image segmentation algorithm for image segmentation Ostu optimal thresholds to optimize the processing, greatly reduces the search image thresholding computation time, with the traditional enumeration method Otsu methods, in the calculation of time has significant advantages.)
    2021-03-01 11:09:34下载
    积分:1
  • 696516资源总数
  • 106918会员总数
  • 4今日下载