GMM-FEM

授权协议 BSD-2-Clause License
开发语言
所属分类 应用工具、 科研计算工具
软件类型 开源软件
地区 不详
投 递 者 冯元徽
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

GMM-FEM Registration

WHAT DOES THE PACKAGE CONTAIN?

The code contains programs to perform rigid, affine and non-rigid registrationof 3D point clouds. The rigid and affine registration are performed using thealgorithm presented by Myronenko and Song [1]; whereas the non-rigidregistration is based on the work presented by Khallaghi et al. [2] and Fedorovet al. [3].

If this code contributes to a project that leads to a scientific publication,please acknowledge this fact by citing the relevant papers [2,3].

[1] Myronenko and Song., "Point set registration: Coherent point drift."Pattern Analysis and Machine Intelligence, IEEE Transactions on 32(12), 2010.

[2] Khallaghi et al., "Biomechanically Constrained Surface Registration:Application to MR-TRUS Fusion for Prostate Interventions", Medical Imaging, IEEE Transactions on 34(11), 2015.

[3] Fedorov et al., "Towards an open source framework for image registrationin support of MRI/ultrasound-guided prostate interventions", International Journal of Computer Assisted Radiology and Surgery, 2015.

BUILD INSTRUCTIONS

KNOWN DEPENDENCIES

Two libraries, Tetgen and Maslib, need to be built in order to run thealgorithms. We have already supplied these packages in /GMM-FEM/ThirdParty.

BUILDING TETGEN AND MASLIB for All Platforms

Makefiles are provided in the root folders of the packages for building thelibraries and MATLAB mex files. They can be invoked using the GNU makebuild system:

$ make -f Makefile.<platform>

where <platform> is either 'linux', 'mac', or 'windows'. The utility willattempt to guess where MATLAB is installed so it can find the required mexlibraries. To specify a path, provide the root folder:

$ make -f Makefile.<platform> MATLAB_ROOT=<path to matlab>

e.g. MATLAB_ROOT="C:/Program Files/MATLAB/R2013b"

Windows Users

Note that the code relies on some C++11 features that are not yet (as of September 2015) fullyimplemented in the VC++ compiler provided by Visual Studio 2013. Unfortunately, lack of Matlab and a Windows machine prohibit us from testing the build with new versions of Visual Studio. Therefore, we suggest downloading MinGW64 for compiling:

http://sourceforge.net/projects/mingw-w64/

When prompted, allow the installer to add the MinGW directory to your systempath. This will allow you to use the "make.exe" program for compiling. Depending on the version of MinGW64 installed, you may need to invoke:

$ mingw32-make -f Makefile.windows

VERIFYING THE BUILD

Run /GMM-FEM/Scripts/fem_only_test.m to perform non-rigid FEM-basedregistration.

TROUBLESHOOTING

If you get an error regarding not being able to find or link to the MATLABlibraries, first verify that the correct MATLAB path is being detected.Internal variables can be printed using

$ make -f Makefile.<platform> vars

If the MATLAB path is incorrect, then pass in the appropriate MATLAB_ROOTvariable. If the libraries still cannot be found, verify that you areusing a 64-bit compiler with 64-bit MATLAB.

If you get an issue similar to "Invalid MEX-file bvtree_build.mexa64 ... libstdc++.so.6: version `GLIBCXX_3.4.18' not found", it might be that Matlab is loading a different version of libstdc++. On Ubuntu machines, Matlab internally links libstdc++ to a version found under its own binary directory. A workaround is to change this linkage to point to gcc's std library, which on Ubuntu machines is usually found under /usr/lib/x86_64-linux-gnu.

 相关资料
  • GMM

    本文简明讲述GMM-HMM在语音识别上的原理,建模和测试过程。这篇blog只回答三个问题: 1.什么是Hidden Markov Model? HMM要解决的三个问题: 1) Likelihood 2) Decoding 3) Training GMM是神马?怎样用GMM求某一音素(phoneme)的概率? GMM+HMM大法解决语音识别 3.1 识别 3.2 训练 3.2.1 Training

  • 本文向大家介绍DNN和GMM的优势相关面试题,主要包含被问及DNN和GMM的优势时的应答技巧和注意事项,需要的朋友参考一下 GMM没有利用帧的上下文信息,GMM不能学习深层非线性特征变换。

  •   现有的高斯模型有单高斯模型(SGM)和高斯混合模型(GMM)两种。从几何上讲,单高斯分布模型在二维空间上近似于椭圆,在三维空间上近似于椭球。 在很多情况下,属于同一类别的样本点并不满足“椭圆”分布的特性,所以我们需要引入混合高斯模型来解决这种情况。 1 单高斯模型   多维变量X服从高斯分布时,它的概率密度函数PDF定义如下:   在上述定义中,x是维数为D的样本向量,mu是模型期望,sigm

  • 问题内容: 我已经实现了 算法 对于GMM使用这个 后[GMMs]与最大似然优化 努比](https://towardsdatascience.com/how-to-code-gaussian-mixture-models- from-scratch-in-python-9e7975df5252)未成功,如下所示: when I run the algorithm on a 1-D time-se

相关阅读

相关文章

相关问答

相关文档