Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def det_vid_without_box(vid_proto, det_fun, net,
class_names=imagenet_vdet_classes):
logging.info("Generating proposals...")
box_proto = vid_proposals(vid_proto)
det_proto = det_vid_with_box(vid_proto, box_proto, det_fun, net,
class_names)
return det_proto