This project is part of the Image Processing and Computer Vision course at the University of Bologna (UniBo). Computer vision-based object detection techniques can be applied in super market settings to build a system that can identify products on store shelves. An example of how this system could be used would be to assist visually impaired customers or automate common store management tasks like detecting low-stock or misplaced products, given an image of a shelf in a store.
- Habib Kazemi
- Safoura Banihashemi
- Hesam Sheikh Hassani
- Project Description
- Task
- Data
- Track A - Single Instance Detection
- Track B - Multiple Instances Detection
- Evaluation Criteria
- License
Develop a computer vision system that, given a reference image for each product, is able to identify such product from one picture of a store shelf.
For each type of product displayed in the shelf the system should report:
- Number of instances;
- Dimension of each instance (width and height in pixel of the bounding box that enclose them);
- Position in the image reference system of each instance (center of the bounding box that enclose them).
Product 0 - 2 instance found:
Instance 1 {position: (256, 328), width: 57px, height: 80px}
Instance 2 {position: (311, 328), width: 57px, height: 80px}
Product 1 – 1 instance found:
.
.
.
Develop an object detection system to identify single instance of products given one reference image for each item and a scene image.
The system should be able to correctly identify all the product in the shelves image.
In addition to what achieved at step A, the system should also be able to detect multiple instances of the same product.
Two folders of images are provided:
- Models: contains one reference image for each product that the system should be able to identify.
- Scenes: contains different shelve pictures to test the developed algorithm in different scenarios. The images contained in this folder are corrupted by noise.
- Models: {ref1.png to ref14.png}.
- Scenes: {scene1.png to scene5.png}.
- Models: {ref15.png to ref27.png}.
- Scenes: {scene6.png to scene12.png}.
-
Procedural correctness. There are several ways to solve the assignment. Design your own sound approach and justify every decision you make;
-
Clarity and conciseness. Present your work in a readable way: format your code and comment every important step;
-
Correctness of results. Try to solve as many instances as possible. You should be able to solve all the instances of the assignment, however, a thoroughly justified and sound procedure with a lower number of solved instances will be valued more than a poorly designed approach.
This project is licensed under the MIT License. See the LICENSE file for more details.