4 #include "SearchMethod.h" 5 #include "ICLKParams.h" 9 template<
class AM,
class SSM>
13 typedef typename ParamType::HessType HessType;
25 ICLK(
const ParamType *iclk_params =
nullptr,
28 void initialize(
const cv::Mat &corners)
override;
29 void update()
override;
30 void setRegion(
const cv::Mat& corners)
override;
46 Matrix24d prev_corners;
48 VectorXd state_update, ssm_update, am_update;
49 VectorXd inv_ssm_update, inv_am_update;
51 int state_size, ssm_state_size, am_state_size;
Definition: StateSpaceModel.h:35
Definition: ICLKParams.h:8
MatrixXd dI0_dpssm
N x S jacobians of the pixel values w.r.t the SSM state vector.
Definition: ICLK.h:42
MatrixXd d2f_dp2_orig
S x S Hessian of the AM error norm w.r.t. SSM state vector.
Definition: ICLK.h:40
Definition: AMParams.h:12
MatrixXd d2I0_dpssm2
N x S x S hessians of the pixel values w.r.t the SSM state vector stored as a (S*S) x N 2D matrix...
Definition: ICLK.h:44
Definition: SearchMethod.h:10
RowVectorXd df_dp
1 x S Jacobian of the AM error norm w.r.t. SSM state vector
Definition: ICLK.h:38