This commit is contained in:
2024-10-09 16:13:22 +00:00
commit 0ea3f048dc
437 changed files with 44406 additions and 0 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