/external/libvpx/tools/3D-Reconstruction/MotionEST/ |
D | MotionEST.py | 26 def __init__(self, cur_f, ref_f, blk_sz): argument 27 self.cur_f = cur_f 31 self.cur_yuv = np.array(self.cur_f.convert('YCbCr'), dtype=int) 34 self.width = self.cur_f.size[0] 35 self.height = self.cur_f.size[1] 102 cur_mf = drawMF(self.cur_f, self.blk_sz, self.mf) 106 gt_mf = drawMF(self.cur_f, self.blk_sz, ground_truth)
|
D | Exhaust.py | 28 def __init__(self, cur_f, ref_f, blk_size, wnd_size, metric=MSE): argument 32 super(Exhaust, self).__init__(cur_f, ref_f, blk_size) 80 def __init__(self, cur_f, ref_f, blk_size, wnd_size, beta, metric=MSE): argument 85 super(ExhaustNeighbor, self).__init__(cur_f, ref_f, blk_size) 160 cur_f, argument 172 super(ExhaustNeighborFeatureScore, self).__init__(cur_f, ref_f, blk_size)
|
D | GroundTruth.py | 29 def __init__(self, cur_f, ref_f, blk_sz, gt_path, mf=None, mask=None): argument 31 super(GroundTruth, self).__init__(cur_f, ref_f, blk_sz)
|
D | SearchSmooth.py | 30 def __init__(self, cur_f, ref_f, blk_size, search, max_iter=100): argument 33 super(SearchSmoothAdapt, self).__init__(cur_f, ref_f, blk_size) 135 def __init__(self, cur_f, ref_f, blk_size, search, beta, max_iter=100): argument 139 super(SearchSmoothFix, self).__init__(cur_f, ref_f, blk_size)
|
D | Anandan.py | 31 def __init__(self, cur_f, ref_f, blk_sz, beta, k1, k2, k3, max_iter=100): argument 32 super(Anandan, self).__init__(cur_f, ref_f, blk_sz)
|
D | HornSchunck.py | 30 def __init__(self, cur_f, ref_f, blk_sz, alpha, sigma, max_iter=100): argument 31 super(HornSchunck, self).__init__(cur_f, ref_f, blk_sz)
|