Baselight

Find The Car (Object Detection)

Find the car in the image using Object detection.

@kaggle.programmerrdai_find_the_car_object_detection

Loading...

About this Dataset

Find The Car (Object Detection)

I have used alot of Kaggle Datasets and I want to help the community also. So I hope this helps at least one person.
:)
Please Leave a upvote thanks :)
The data has been taken from Open Images V6
Subset of Cars.
This is a subset of Open Images.
I will update as frequently as possible.

Tables

Create Bbox

@kaggle.programmerrdai_find_the_car_object_detection.create_bbox
  • 63.32 KB
  • 2527 rows
  • 6 columns
Loading...

CREATE TABLE create_bbox (
  "imageid" VARCHAR,
  "xmin" DOUBLE,
  "ymin" DOUBLE,
  "xmax" DOUBLE,
  "ymax" DOUBLE,
  "labels" VARCHAR
);

Create Image Urls

@kaggle.programmerrdai_find_the_car_object_detection.create_image_urls
  • 90.72 KB
  • 5054 rows
  • 8 columns
Loading...

CREATE TABLE create_image_urls (
  "imageid" VARCHAR,
  "originalurl" VARCHAR,
  "originallandingurl" VARCHAR,
  "xmin" DOUBLE,
  "ymin" DOUBLE,
  "xmax" DOUBLE,
  "ymax" DOUBLE,
  "labels" VARCHAR
);

Data

@kaggle.programmerrdai_find_the_car_object_detection.data
  • 19.97 KB
  • 181 rows
  • 7 columns
Loading...

CREATE TABLE data (
  "path" VARCHAR,
  "xmin" DOUBLE,
  "ymin" DOUBLE,
  "xmax" DOUBLE,
  "ymax" DOUBLE,
  "imageid" VARCHAR,
  "url" VARCHAR
);