update basic framework

This commit is contained in:
hofee
2024-08-21 17:11:56 +08:00
parent 73dcd592df
commit f977fd4b8e
29 changed files with 1393 additions and 719 deletions

View File

@@ -0,0 +1,12 @@
from abc import abstractmethod
from torch import nn
class ViewFinder(nn.Module):
def __init__(self):
super(ViewFinder, self).__init__()
@abstractmethod
def next_best_view(self, scene_pts_feat, target_pts_feat):
pass