登录
首页 » matlab » Active_Appearance_Mode(hand)

Active_Appearance_Mode(hand)

于 2011-01-12 发布 文件大小:9880KB
0 117
下载积分: 1 下载次数: 245

代码说明:

  完整的可运行AAM模型的matlab代码,附有测试图像,matlab 2009测试通过(Complete AAM model can run matlab code, with a test image, matlab 2009 test pass)

文件列表:

AAM Functions
.............\AAM_align_data.m,984,2010-03-17
.............\AAM_align_data_inverse.m,404,2010-03-17
.............\AAM_Appearance2Vector.m,1216,2010-03-19
.............\AAM_ApplyModel.m,7841,2010-03-19
.............\AAM_CombineShapeAppearance.m,1331,2010-03-17
.............\AAM_MakeAppearanceModel.m,1908,2010-03-19
.............\AAM_MakeSearchModel.m,6181,2010-03-17
.............\AAM_MakeShapeModel.m,1285,2010-03-17
.............\AAM_NormalizeAppearance.m,155,2010-03-17
.............\AAM_Vector2Appearance.m,618,2010-03-19
.............\AAM_Weights.m,2350,2010-03-17
AAM_example.m,8099,2010-03-22
Fotos


.....\train001.mat,792862,2010-02-12

.....\train002.mat,1240485,2010-02-12

.....\train003.mat,935188,2010-02-12

.....\train004.mat,1277713,2010-02-12
.....\train005.jpg,32044,2010-02-10
.....\train005.mat,1284249,2010-02-12
.....\train006.jpg,22160,2010-02-10
.....\train006.mat,815440,2010-02-12
.....\train007.jpg,21454,2010-02-10
.....\train007.mat,787937,2010-02-12
.....\train008.jpg,24265,2010-02-10
.....\train008.mat,889927,2010-02-12
.....\train009.jpg,22379,2010-02-10
.....\train009.mat,965003,2010-02-12
.....\train010.jpg,22093,2010-02-10
.....\train010.mat,881443,2010-03-19
Functions
.........\DrawContourGui.fig,4488,2010-02-10
.........\DrawContourGui.m,7543,2010-02-12
.........\drawObject.m,1245,2010-03-17
.........\linspace_multi.m,216,2010-02-11
.........\LoadDataSetNiceContour.m,2191,2010-03-19
.........\PCA.m,651,2010-03-02
.........\PreProcessCp2tform.m,2813,2010-03-17
.........\SelectPosition.m,2307,2010-03-21
license.txt,1335,2010-03-22

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

发表评论

0 个回复

  • levelsetImagesegment
    自己用水平集方法编的,实现了医学图像的分割,效果不错,可试一下(Their allocation by level set method, and realize the medical image segmentation, the effect good, can try)
    2008-04-14 10:25:51下载
    积分:1
  • 拼接---去除黑边
    使用python语言实现多张图像的拼接,并且处理拼接之后的裂缝和黑边。(Use python language to achieve splicing of multiple images, and deal with cracks and black edges after splicing.)
    2019-04-02 15:24:23下载
    积分:1
  • histogram
    图像直方图统计,并生成灰度图。 matlab程序(Histogram of the image statistics, and generate grayscale. Matlab program)
    2017-11-06 19:45:02下载
    积分:1
  • RayTracer
    VB像素光影跟踪(图像渲染)工具,有需要的就下载吧。(VB Tracking pixel lighting (image rendering) tools, there is a need to download it.)
    2013-08-04 15:09:52下载
    积分:1
  • 基于压缩感知的SAR成仿真程序
    说明:  基于cs的sar成像仿真,包括omp、sl0、osl0、onsl0等cs算法(ISAR imaging simulation based on CS, including OMP, sl0, osl0, onsl0 and other CS algorithms)
    2021-04-06 15:39:02下载
    积分:1
  • sparse_learning
    cholesky算法信号稀疏解 对于数据压缩有很大帮助(we are the world we are the children we are the ones)
    2012-03-24 21:22:48下载
    积分:1
  • Virtual-oscilloscope
    说明:  虚拟示波器实现示波器的功能 数据采集 处理 存储(Virtual oscilloscope)
    2021-03-10 14:19:26下载
    积分:1
  • sift
    SIFT算法,可以有效的找到不同画面中的对应特征点,在跟踪和图形识别方面有很好的用途(SIFT algorithm, can effectively find a different screen the corresponding feature points, in the tracking and pattern recognition as a very good use of)
    2009-01-14 10:35:07下载
    积分:1
  • GeometricVersion3
    课程设计 几何图形(满分50 分) 版本1:满分10 分 设计抽象类GeometricObject 及其子类Triangle 和Circle。 GeometricObject 类设计要求如下: ■ 一个名为color 的Color 类型的私有数据域,表示对象的颜色。 ■ 一个名为filled 的Boolean 类型的私有数据域,表示对象是否填充颜色。 ■ 一个名为dateCreated 的Date 类型的私有数据域,表示对象的创建日期。 ■ 一个无参构造方法。 ■ 一个能创建特定color 和filled 的有参构造方法。 ■ 相关数据域的访问器和修改器。 ■ 两个个名为draw 和erase 的抽象方法。 ■ 一个名为getArea 的抽象方法。 ■ 一个名为getPerimeter 的抽象方法。 ■ 重写toString 方法。 Triangle 类设计要求如下: ■ 三个名为side1、side2 和 side3 的double 类型的私有数据域表示三角形的三条边。它 们的默认值是1.0。要求三个数据域保留2 位小数。 ■ 一个无参的构造方法创建默认三角形。 ■ 一个能创建带指定side1、side2 和 side3 的有参构造方法。 ■ 所有三个数据域的访问器和修改器方法。 ■ 父类抽象方法的实现。 ■ 重写toString 方法。 Circle 类(Curriculum Design Geometry (out of 50) Version 1: 10 points Design an abstract class and its subclasses GeometricObject Triangle and Circle. GeometricObject class design requirements are as follows: ■ a named color of the Color type private data field that indicates the object s color. ■ a Boolean type called filled private data field that indicates whether the object fill color. ■ Date type named dateCreated private data field, which means that the object was created. ■ a no-argument constructor. ■ one can create a specific color and filled in with arg constructor. ■ Related data field accessor and modifier. ■ two months called draw and erase the abstract methods. ■ an abstract method named getArea. ■ an abstract method named getPerimeter. ■ overridden toString method. Triangle class design requirements are as follows: ■ three named side1, side2 and a double side3 private data field indicates the type of triangle with three sides. It Our default value is 1.0. Requires)
    2020-12-10 08:59:18下载
    积分:1
  • kmeans
    实现基于颜色的Kmeans图像分割,只是需要自己设定聚类中心数目,聚类中心初始化采用Kmeans++(Kmeans image segmentation based on color, but need to set the number of cluster centers, clustering center initialization using Kmeans++)
    2017-01-08 20:31:37下载
    积分:1
  • 696518资源总数
  • 104384会员总数
  • 26今日下载