After I label images and have ".json" format file, I do not know how to merge image and these annotations. I'm a newbie in computer vision
I am trying to detect human activities and bounding box these activities in video without using YOLO.
After I label images and have ".json" format file, I do not know how to merge image and these annotations. I'm a newbie in computer vision
I am trying to detect human activities and bounding box these activities in video without using YOLO.
Copyright © 2021 Jogjafile Inc.
I suppose you are using python and your json file looks like this:
If yes, I suggest you to use the library json:
And then, with tf.data.Dataset you can pair the data with the labels:
If you want to create an input pipeline, I suggest you to explore: ImageDataGenerator, tf.data.Dataset , and the guides available on the TensorFlow website.