معرفی شرکت ها


20CS30064MyPackage-0.0.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A package
ویژگی مقدار
سیستم عامل -
نام فایل 20CS30064MyPackage-0.0.1
نام 20CS30064MyPackage
نسخه کتابخانه 0.0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Anamitra Mukhopadhyay
ایمیل نویسنده anamitra137@gmail.com
آدرس صفحه اصلی https://github.com/
آدرس اینترنتی https://pypi.org/project/20CS30064MyPackage/
مجوز -
# Software Lab ## Python Datascience Assignment In this assignment we will deal with **Instance Segmentation and Detection**. Instance segmentation 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 instance segmentor. We are providing you with a pretrained segmentor, all you need to do is to call the segmentor 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](https://packaging.python.org/tutorials/packaging-projects/). The details of each of the files/folders are as follows: 1. `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 segmentation masks and bounding boxes of the objects present in the image by calling the segmentor model, and then plot the obtained images by calling the appropriate functions from the package described below. 2. `./my_package/model.py`: This file contains the instance segmentation model definition. Consider it as a black-box model which takes an image (as numpy array) as input and provides the segmentation masks, bounding boxes as outputs and the corresponding class labels as for the input image. &nbsp; <p align="center"> <img src='./sample_imgs/seg.png' width=400> </p> <p align="center"> <b>Fig. 1</b>. Sample Output of the Segmentor. </p> &nbsp; 3. `./my_package/data/dataset.py`: This file contains the class ```Dataset``` 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 in `data/README.md` 4. `./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. &nbsp; <p align="center"> <img src='./sample_imgs/crop.png' width=400> </p> <p align="center"> <b>Fig. (a)</b>. Crop Operation. </p> &nbsp; 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. &nbsp; <p align="center"> <img src='./sample_imgs/flip.png' width=400> </p> <p align="center"> <b>Fig. (b)</b>. Flip Operation. </p> &nbsp; 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. &nbsp; <p align="center"> <img src='./sample_imgs/rotate.png' width=400> </p> <p align="center"> <b>Fig. (c)</b>. Rotate Operation. </p> &nbsp; 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. &nbsp; <p align="center"> <img src='./sample_imgs/rescale.png' width=400> </p> <p align="center"> <b>Fig. (d)</b>. Rescale Operation. </p> &nbsp; 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. &nbsp; <p align="center"> <img src='./sample_imgs/blur.png' width=400> </p> <p align="center"> <b>Fig. (e)</b>. Blur Operation. </p> &nbsp; 5. `./my_package/analysis/visualize.py`: This file defines a function that draws the image with the predicted segmentation masks and the bounding boxes (with the corresponding labels) on the image and saves them in the specified output folder. 6. `setup.py`: Use this file for constructing the package `my_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`. 1. 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] 2. 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] 3. Write a function `plot_visualization()` in `./my_package/analysis/visualize.py` that will draw the image with the predicted segmentation masks and 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 3 most confident bounding boxes predicted by the segmentor. If the segmentor predicts less than 3 boxes, then plot all of them. [5 marks] 4. Create a python package ``` my_package```. For this you need to write ``` setup.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/she does not know that their exist a file ```crop.py``` where the class ```CropImage()``` is defined. Rather he/she simply knows that this class is defined in ```transforms```. So, a good coding practice is to allow an import statement ```from my_package.data.transforms import CropImage```. [5 marks] 5. Write ```main.py``` where you will test the different transformations you have written on the instance segmentor. The outputs for each of the experiments should be organized properly in the outputs folder. [5 marks] ## Analysis Task [10 marks] 1. Obtain and save the predicted bounding boxes for all the images provided in the `data/imgs` folder. [3 marks] 2. Consider the image with name same as the last digit of your roll number, i.e. if your roll number is 20CS####7 then consider the image `7.jpg` then plot the following using `subplots` in matplotlib and save them: [1x7=7 marks] a) The original image along with the top-3 predicted segmentation masks and bounding boxes. b) Horizontally flipped original image along with the top-3 predicted segmentation masks and bounding boxes. c) Blurred image (with some degree of blurring) along with the top-3 predicted segmentation masks and bounding boxes. d) Twice Rescaled image (2X scaled) along with the top-3 predicted segmentation masks and bounding boxes. e) Half Rescaled image (0.5X scaled) along with the top-3 predicted segmentation masks and bounding boxes. f) 90 degree right rotated image along with the top-3 predicted segmentation masks and bounding boxes. g) 45 degree left rotated image along with the top-3 predicted segmentation masks and 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.**


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl 20CS30064MyPackage-0.0.1:

    pip install 20CS30064MyPackage-0.0.1.whl


نصب پکیج tar.gz 20CS30064MyPackage-0.0.1:

    pip install 20CS30064MyPackage-0.0.1.tar.gz