Find The Car (Object Detection)
Find the car in the image using Object detection.
@kaggle.programmerrdai_find_the_car_object_detection
Find the car in the image using Object detection.
@kaggle.programmerrdai_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.
CREATE TABLE create_bbox (
"imageid" VARCHAR,
"xmin" DOUBLE,
"ymin" DOUBLE,
"xmax" DOUBLE,
"ymax" DOUBLE,
"labels" VARCHAR
);
CREATE TABLE create_image_urls (
"imageid" VARCHAR,
"originalurl" VARCHAR,
"originallandingurl" VARCHAR,
"xmin" DOUBLE,
"ymin" DOUBLE,
"xmax" DOUBLE,
"ymax" DOUBLE,
"labels" VARCHAR
);
CREATE TABLE data (
"path" VARCHAR,
"xmin" DOUBLE,
"ymin" DOUBLE,
"xmax" DOUBLE,
"ymax" DOUBLE,
"imageid" VARCHAR,
"url" VARCHAR
);
Anyone who has the link will be able to view this.