Paper #1 - Automatic Detection of Out-Of-Shelf Products in the Retail Sector Supply Chain
Rule-based information system
- OOS Contribution factors - Measurement of product availability, Measurement of shelf availability
- Approach - Radio-Frequency Identification based
- Rule - “IF (a product is fast-moving) AND (has low sales volatility) AND (POS sales = 0 for today) THEN the product is OOS
- IF Fastmoving product sales count is zero then there is a problem
- Detection approach = Historical data -> Patterns -> Rules = Apply on Current Data
Analysis
- Tasks - Automatic product checkout using segmentation, Object detection of products on store shelves
- Approach - Shelf Image -> Detector for regions (Class, BBox, Mask) -> Crop Each Region -> Object -> Feature Extractor -> KNN Classifier
Paper #3 - A deep learning pipeline for product recognition on store shelves
Analysis
- Shelf Image -> Region proposals -> Crop -> Reference Images -> Refinement -> Detection
Analysis
- Shelf Image -> Region Partition -> Recurring Pattern Detection -> Compliance Checking
- Shelf Image -> Region Partition -> Region proposals -> Detect Recurring Pattern, Reference Images for refinement -> Prediction
The Shelf Detector System For Retail Stores Using Object Detection
pip install -r requirements.txt
python train_obj_detector.py testNutella1
Code Details - https://github.com/bobquest33/dlib_obj_count/blob/master/nutella.pdf
Tool Used - https://imglab.in/
Interesting Read
Retail Product Recognition on Supermarket Shelves
Paper #5 - Rethinking Object Detection in Retail Stores
Key Notes
- Simultaneously object localization and counting, abbreviated as Locount
- Algorithms to localize groups of objects of interest with the number of instances
- Most of the state-of-the-art object detectors use non-maximal suppression (NMS) to post-process object proposals to produce final detections
- Cascaded localization and counting network (CLCNet)
- Localize groups of objects of interest with the numbers of instances
- Grozi-120 dataset
- Freiburg Groceries dataset
- GameStop dataset
- Retail-121 dataset
- Sku110k dataset
- TGFS dataset
Locount Dataset
- 140 common commodities, including 9 big subclasses
- Cascaded localization and counting network (CLCNet
- count-regression strategy for counting
- count-classification strategy for counting
- Locount to localize groups of objects with the instance numbers, which is more practical in retail scenarios
1 comment:
This summary is awesome. Thanks for sharing.
Post a Comment