Package gov.nih.mipav.model.algorithms
Class libdt.Dytex
- java.lang.Object
-
- gov.nih.mipav.model.algorithms.libdt.Dytex
-
- Enclosing class:
- libdt
public class libdt.Dytex extends java.lang.Object
Dynamic Texture class. This is the class for a standard dynamic texture. It serves as the base class for the online version of the DT. It includes functions for: 1) estimating parameters; 2) regularizing; 3) synthesizing video; 4) pre-processing video for usage with DT (for other classes).
-
-
Field Summary
Fields Modifier and Type Field Description libdt.Mat
A
< observation meanlibdt.Mat
C
< transition matrixlibdt.Mat
Cvs
< indicates am empty Dtlibdt.DytexOptions
dtopt
boolean
isCvs
< Cvs precomputed valueboolean
isempty
< for synthesis, number of columns in a frame (0 if unknown).libdt.Mat
mu0
< observation matrixlibdt.CovMatrix
Q
< observation noise covariancelibdt.CovMatrix
R
< initial state meanlibdt.CovMatrix
S0
< state noise covarianceint
vcols
< initial state covarianceint
vrows
< initial state covariancelibdt.Mat
Ymean
< options for the Dytex
-
Constructor Summary
Constructors Constructor Description Dytex()
< Cvs computedDytex(libdt.DytexOptions opt)
-
-
-
Field Detail
-
dtopt
public libdt.DytexOptions dtopt
-
Ymean
public libdt.Mat Ymean
< options for the Dytex
-
A
public libdt.Mat A
< observation mean
-
C
public libdt.Mat C
< transition matrix
-
mu0
public libdt.Mat mu0
< observation matrix
-
R
public libdt.CovMatrix R
< initial state mean
-
Q
public libdt.CovMatrix Q
< observation noise covariance
-
S0
public libdt.CovMatrix S0
< state noise covariance
-
vrows
public int vrows
< initial state covariance
-
vcols
public int vcols
< initial state covariance
-
isempty
public boolean isempty
< for synthesis, number of columns in a frame (0 if unknown).
-
Cvs
public libdt.Mat Cvs
< indicates am empty Dt
-
isCvs
public boolean isCvs
< Cvs precomputed value
-
-
Constructor Detail
-
Dytex
public Dytex()
< Cvs computed
-
Dytex
public Dytex(libdt.DytexOptions opt)
-
-