Stark icon indicating copy to clipboard operation
Stark copied to clipboard

lightning stark questions regarding "MultiObjectWrapper"

Open orilifs opened this issue 4 years ago • 0 comments

Hello,

What changes should be mode to run several instances of single-object-trackers like in PyTracking?

You have the code in place already:

        multiobj_mode = getattr(params, 'multiobj_mode', getattr(self.tracker_class, 'multiobj_mode', 'default'))

        if multiobj_mode == 'default':
            tracker = self.create_tracker(params)

        elif multiobj_mode == 'parallel':
            tracker = MultiObjectWrapper(self.tracker_class, params, self.visdom, fast_load=True)

Is it a question of dataset configuration? If so, what paramaters control this please? Or should anything be changed in the code and in the ORT_ convert scripts?

Thanks.

orilifs avatar Jan 18 '22 09:01 orilifs