AssignmentQs2
Project description
Software Lab
Python Datascience Assignment
In this assignment we will deal with Object detection. Object detection is a very well studied task of Deep Learning, having tremendous variety of applications. You have to create a python package for transforming images and analysing their effect on the predictions of an object detector. We are providing you with a pretrained object detector, all you need to do is to call the detector on the image and get the outputs.
A python package means that one can install the package in the python environment and can import the modules in any python script, irrespective of the location of the script. Creating a python package is fairly easy, just follow the steps here.
The details of each of the files/folders are as follows:
-
main.py
: This is the main file which is to be called to execute the program. The main file calls the corresponding functions as needed while execution. The main file should call the appropriate function to prepare the dataset, then transform the images read, obtain the bounding boxes of the objects present in the image by calling the detector model, and then plot the obtained images by calling the appropriate functions from the package described below. -
./my_package/model.py
: This file contains the object-detection model definition. Consider it as a black-box model which takes an image (as numpy array) as input and provides the bounding box outputs and the corresponding class labels as for the input image.
Fig. 1. Sample Output of an Object Detector.
-
./my_package/data/dataset.py
: This file contains the classDataset
that reads the provided dataset from the annotation file and provides the numpy version of the images which are to be transformed and forwarded through the model. The annotation format is provided indata/README.md
-
./my_package/data/transforms
: This folder contains 5 files. Each of these files is responsible for performing the corresponding transformation, as follows:
a) crop.py
: This file takes an image (as numpy array) as input and crops it based on the provided arguments. Declare a class CropImage()
for performing the operation.
Fig. (a). Crop Operation.
b) flip.py
: This file takes an image (as numpy array) as input and flips it based on the provided arguments. Declare a class FlipImage()
for performing the operation.
Fig. (b). Flip Operation.
c) rotate.py
: This file takes an image (as numpy array) as input and rotates it based on the provided arguments. Declare a class RotateImage()
for performing the operation.
Fig. (c). Rotate Operation.
d) rescale.py
: This file takes an image (as numpy array) as input and rescales it based on the provided arguments. Declare a class RotateImage()
for performing the operation.
Fig. (d). Rescale Operation.
e) blur.py
: This file takes an image (as numpy array) as input and applies a gaussian blur to it based on the provided arguments. Declare a class GaussBlurImage()
for performing the operation.
Fig. (e). Blur Operation.
-
./my_package/analysis/visualize.py
: This file defines a function that draws the image with the predicted bounding boxes (with the corresponding labels) on the image and saves them in the specified output folder. -
setup.py
: Use this file for constructing the packagemy_package
.
Coding Task [30 marks]
Note: For handling images, e.g. reading images, etc. we would recommend using PIL instead of OpenCV as OpenCV uses BGR
format instead of RGB
.
-
Write the various transformations in
./my_package/data/transforms
. There are five files, as already mentioned. Although these functions are easily implementable using numpy only, you may use any image processing libraries like PIL, skimage or opencv. [2x5=10 marks] -
Complete the
Dataset
class in./my_package/data/dataset.py
. This class will accept the path to the annotation file and the list of transformation classes. Ideally you should be directly using transformation classes but you may also use strings to identify the transformations. [5 marks] -
Write a function
plot_boxes()
in./my_package/analysis/visualize.py
that will draw the image with the predicted bounding boxes (with the corresponding labels) on the images and save them in the output folder specified in the argument. Please note that you need to plot only the 5 most confident bounding boxes predicted by the object detector. If the detector predicts less than 5 boxes, then plot all of them. [5 marks] -
Create a python package
my_package
. For this you need to writesetup.py
. It must be noted that files called___init__.py
need to be added in the hierarchy. We leave it to you to search where they should be added. Note that the user will generally not know the exact files where the classes are written. That means, he does not know that their exist a filecrop.py
where the classCropImage()
is defined. Rather he simply knows that this class is defined intransforms
. So, a good coding practice is to allow an import statementfrom my_package.data.transforms import CropImage
. [5 marks] -
Write
main.py
where you will test the different transformations you have written on the object detector. The outputs for each of the experiments should be organized properly in the outputs folder. [5 marks]
Analysis Task [10 marks]
-
Obtain and save the predicted bounding boxes for all the images provided in the
data/imgs
folder. [3 marks] -
Consider the image with name same as the last digit of your roll number, i.e. if your roll number is 19CS####7 then consider the image
7.jpg
then plot the following usingsubplots
in matplotlib and save them: [1x7=7 marks]a) The original image along with the predicted bounding boxes.
b) Horizontally flipped original image along with the predicted bounding boxes.
c) Blurred image (with some degree of blurring) along with the predicted bounding boxes.
d) Twice Rescaled image (2X scaled) along with the predicted bounding boxes.
e) Half Rescaled image (0.5X scaled) along with the predicted bounding boxes.
f) 90 degree right rotated image along with the predicted bounding boxes.
g) 45 degree left rotated image along with the predicted bounding boxes.
Please read the class definitions very carefully. In this assignment you do not need to code a lot, but you need to understand how to integrate several custom modules together in a clean way. More details on the arguments and the return types are provided in the corresponding files.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file my_package_ani-1.tar.gz
.
File metadata
- Download URL: my_package_ani-1.tar.gz
- Upload date:
- Size: 11.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c459a987c3d76148d3e36476f6e5edfed4c2eea4b53f83e512c4c3fb9c42012b |
|
MD5 | 02f81dee1ad2cd4a8718c4ad1d99144c |
|
BLAKE2b-256 | bc148703f225cfdfbe28f02e82785f33a23239e423bea09e38d35ccec9165549 |
File details
Details for the file my_package_ani-1-py3-none-any.whl
.
File metadata
- Download URL: my_package_ani-1-py3-none-any.whl
- Upload date:
- Size: 11.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 856f53dc9804a05728290e1933f8928b3ad212530571eb8e85e9961ae3246eb9 |
|
MD5 | 6e8506fa26c5dbec576049362143fc84 |
|
BLAKE2b-256 | 759fb601ebeaafa15bb9c64a2263a9ee560aa8f7b7a13ca1a5dfe6f50ad0f7d4 |