mirror of
https://github.com/gaomingqi/Track-Anything.git
synced 2025-12-16 16:37:58 +01:00
12 lines
234 B
Python
12 lines
234 B
Python
|
|
from tools.interact_tools import SamControler
|
||
|
|
from tracker.xmem import XMem
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
class TrackingAnything():
|
||
|
|
def __init__(self, cfg):
|
||
|
|
self.cfg = cfg
|
||
|
|
self.samcontroler = SamControler()
|
||
|
|
self.xmem =
|
||
|
|
pass
|