-
Book Overview & Buying
-
Table Of Contents
Hands-On Computer Vision with Detectron2
By :
The following sections describe the dataset used in this chapter and discuss the typical steps for training Detectron2 models on custom datasets. The steps include exploring the dataset, converting the dataset into COCO format, registering the dataset with Detectron2, and finally, displaying some example images and the corresponding brain tumor labels.
The dataset used is the brain tumor object detection dataset available from Kaggle (https://www.kaggle.com/datasets/davidbroberts/brain-tumor-object-detection-datasets), which is downloaded to the GitHub repository of this book to assure its accessibility. This dataset is chosen because medical image processing is a critical subfield in computer vision. At the same time, the task is challenging, and the number of images is appropriate for demonstration purposes.
The first step in data processing is downloading and performing initial data explorations...