All Projects → seralexger → clothing-detection-ecommerce-dataset

seralexger / clothing-detection-ecommerce-dataset

Licence: other
Clothing detection dataset

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to clothing-detection-ecommerce-dataset

Entity Recognition Datasets
A collection of corpora for named entity recognition (NER) and entity recognition tasks. These annotated datasets cover a variety of languages, domains and entity types.
Stars: ✭ 891 (+1972.09%)
Mutual labels:  annotations, datasets
annotate
Create 3D labelled bounding boxes in RViz
Stars: ✭ 104 (+141.86%)
Mutual labels:  annotations, bounding-boxes
pytorch-deepfashion
pytorch implementation of the deepfashion architecture (https://www.cv-foundation.org/openaccess/content_cvpr_2016/papers/Liu_DeepFashion_Powering_Robust_CVPR_2016_paper.pdf)
Stars: ✭ 35 (-18.6%)
Mutual labels:  fashion-mnist, fashion-classifier
jupyter-bbox-widget
A Jupyter widget for annotating images with bounding boxes
Stars: ✭ 19 (-55.81%)
Mutual labels:  annotations, bounding-boxes
Awesome Dataset Tools
🔧 A curated list of awesome dataset tools
Stars: ✭ 495 (+1051.16%)
Mutual labels:  annotations, datasets
Projects
🪐 End-to-end NLP workflows from prototype to production
Stars: ✭ 397 (+823.26%)
Mutual labels:  annotations, datasets
SimpleVideoAnnotation
A simple video annotation made with python + OpenCV for detection in YoloV2 format
Stars: ✭ 13 (-69.77%)
Mutual labels:  annotations, bounding-boxes
Label Studio
Label Studio is a multi-type data labeling and annotation tool with standardized output format
Stars: ✭ 7,264 (+16793.02%)
Mutual labels:  annotations, datasets
Annotation tools
Visipedia Annotation Tools
Stars: ✭ 245 (+469.77%)
Mutual labels:  annotations, datasets
thermostat
Collection of NLP model explanations and accompanying analysis tools
Stars: ✭ 126 (+193.02%)
Mutual labels:  datasets
GEAN
This toolkit deals with GEnomic sequence and genome structure ANnotation files between inbreeding lines and species.
Stars: ✭ 36 (-16.28%)
Mutual labels:  annotations
awesome-dynamic-graphs
A collection of resources on dynamic/streaming/temporal/evolving graph processing systems, databases, data structures, datasets, and related academic and industrial work
Stars: ✭ 89 (+106.98%)
Mutual labels:  datasets
morghulis
No description or website provided.
Stars: ✭ 18 (-58.14%)
Mutual labels:  datasets
obsidian-hypothesis-plugin
An Obsidian.md plugin that syncs highlights from Hypothesis.
Stars: ✭ 164 (+281.4%)
Mutual labels:  annotations
transfermarkt-datasets
⚽️ Extract, prepare and publish Transfermarkt datasets.
Stars: ✭ 60 (+39.53%)
Mutual labels:  datasets
DyAnnotationExtractor
DyAnnotationExtractor is software for extracting annotations (highlighted text and comments) from e-documents like PDF.
Stars: ✭ 34 (-20.93%)
Mutual labels:  annotations
isarn-sketches-spark
Routines and data structures for using isarn-sketches idiomatically in Apache Spark
Stars: ✭ 28 (-34.88%)
Mutual labels:  datasets
awesome-mobile-robotics
Useful links of different content related to AI, Computer Vision, and Robotics.
Stars: ✭ 243 (+465.12%)
Mutual labels:  datasets
industrial-ml-datasets
A curated list of datasets, publically available for machine learning research in the area of manufacturing
Stars: ✭ 45 (+4.65%)
Mutual labels:  datasets
goat
Annotate Images (or goats) On The Web™
Stars: ✭ 75 (+74.42%)
Mutual labels:  annotations

Clothing detection ecommerce dataset

I have created a dataset with more than 80k images from ecommerce websites:

Getting Started

The images have been classified by category in folders, here I list all the categories:

['camisetas',      
 'planos',
 'petos',
 'bodies',
 'guantes',
 'botas',
 'carteras',
 'monos',
 'jerseys',
 'camisas',
 'zapatos',
 'calcetines',
 'corbatas',
 'sombreros',
 'gafas',
 'banadores',
 'trajes',
 'medias',
 'bufandas',
 'jeans',
 'tacones',
 'chanclas',
 'pantalones',
 'paraguas',
 'camiseta-interior',
 'sujetadores',
 'pijamas',
 'braguitas',
 'polos',
 'sudaderas',
 'vestidos',
 'gorros',
 'camisones',
 'bolsos-y-mochilas',
 'panuelos',
 'shorts',
 'reloj',
 'cardigans',
 'botines',
 'bisuteria',
 'abrigos',
 'bikinis',
 'faldas',
 'alpargatas',
 'cinturones',
 'camisas-y-blusas',
 'lenceria',
 'gorras',
 'zapatillas',
 'calzoncillos',
 'sandalias']

All images have been automatically annotated, you can find all the annotations in the file 'annotation.zip'.

Example

In preview_annotation.py there is an example code to preview the annotations, you can go to next picture with key 'n', go back with key 'b', remove the image from the folder with key 'r' and quit with key 'q'.

python preview_annotation.py -d dataset/camisetas/ -a annotations

alt text

Annotation JSON scheme example

{
  "arr_boxes": [
    {
      "coor_center": [
        0.618742361664772,
        0.9013392329216003
      ],
      "coor1": [
        0.3926389515399933,
        0.8026784658432007
      ],
      "coor2": [
        0.8448457717895508,
        1
      ],
      "x": 661.9892722964287,
      "y": 2029.9738401174545,
      "width": 762.4206989407539,
      "height": 499.02615988254547,
      "gender": "male",
      "class": "trousers"
    },
    {
      "coor_center": [
        0.61893330514431,
        0.49360528588294983
      ],
      "coor1": [
        0.25417014956474304,
        0.14857351779937744
      ],
      "coor2": [
        0.983696460723877,
        0.8386370539665222
      ],
      "x": 428.53087216615677,
      "y": 375.74242651462555,
      "width": 1229.9813606142998,
      "height": 1745.1706829667091,
      "gender": "male",
      "class": "coats"
    }
  ],
  "file_name": "dataset/abrigos/1.jpg"
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].