001package org.openimaj.demos.sandbox.tldcpp.tracker; 002 003import org.openimaj.video.tracking.klt.Feature; 004 005public class FBNCCFeature extends Feature { 006 public float ncc; 007 public float fbDistance; 008 009 @Override 010 public FBNCCFeature clone() { 011 FBNCCFeature f = new FBNCCFeature (); 012 013 f.x = x; 014 f.y = y; 015 f.val = val; 016 f.ncc = ncc; 017 f.fbDistance = fbDistance; 018// f.aff_img = aff_img; 019// f.aff_img_gradx = aff_img_gradx; 020// f.aff_img_grady = aff_img_grady; 021// f.aff_x = aff_x; 022// f.aff_y = aff_y; 023// f.aff_Axx = aff_Axx; 024// f.aff_Ayx = aff_Ayx; 025// f.aff_Axy = aff_Axy; 026// f.aff_Ayy = aff_Ayy; 027 028 return f; 029 } 030}