import turicreate as tc
import os

sf1 = tc.load_sframe('test.sframe')
sf1['image_with_ground_truth'] = \
   tc.object_detector.util.draw_bounding_boxes(sf1['image'], sf1['annotations'])

sf1.explore()
input('Press Enter to exit ...')