turicreate icon indicating copy to clipboard operation
turicreate copied to clipboard

Turi Create Visualization image previews not displaying

Open taylorjdawson opened this issue 4 years ago • 1 comments

Code

import turicreate as tc

# Load the starter images
starter_images = tc.SFrame({'image':[tc.Image('some.png')],
                'label':['some-label']})

synthetic_images = tc.one_shot_object_detector.util.preview_synthetic_training_data(starter_images, 'label')

synthetic_images.explore()

Result image

Expected result would be too see an enlarged preview of that image.

taylorjdawson avatar Jul 12 '21 14:07 taylorjdawson

As a workaround, you can call .show() on images you want to see.

TobyRoseman avatar Jul 12 '21 23:07 TobyRoseman