A python package to analyze different types of documents
Project description
This is a python package to analyze detections conducted across different types of documents. In the current version, it supports only objects detected in images.
This version is compatible with object detection performed by ImageAI using the pre-trained weights of ResNet50.
Download and place the aforementioned pre-trained weights in your local folder.
All the implementations and testing were performed using random samples from the MS COCO 2017 dataset. Do look into the notebooks in the Demo folder to conduct some experiments on your custom data.
Installation
Install this package with the following command:
pip install --upgrade pyrack
In order to detect objects and perform some analysis on them, import the package with the following command:
from pyrack import object as obj
Functionalities
The following functions can be implemented with the current version\
-
Reading an image
This function reads and stores an image in the RGB color-space in the form of numpy arrays.
img = obj.img(image_path)
-
Displaying the image
This loads the image that was read in the previous step.
obj.display_original_image(img)
-
Defining the model path
Here we need to mention the path where we have stored the pre-trained model weights meant for object detection.
model_path = obj.model_weights(os.path.join(path, 'resnet50_coco_best_v2.0.1.h5'))
-
Detecting objects in the image
With the help of the pre-trained weights loaded above, we perform object detections on the image loaded in step 1.
detections = obj.detections(img)
-
Get all detected objects
Here we print a list of all the objects that were detected in the previous step.
detected_objects = obj.detected_objects(img, detections)
print(detected_objects)
-
Getting the bounding-box(bbox) coordinates for all the detected objects
Here we extract the bbox co-ordinates for each detected object.
bbox = obj.bbox(detections)
-
Getting the regions of interest(roi)
From the bbox extracted above, we can draw roi's around the detected images on which we can perform further actions.
roi = obj.roi(img, detections)
-
Resizing the roi's
Here we resize each roi to a dimension of (100,100,3). Objects that are too small will be padded with black pixels before being resized.
resized_roi = obj.resized_roi(img, roi)
-
Number of detections
Here we print the total number of detections performed on the loaded image.
obj.number_of_detections(img, detections)
-
Unique items detected
This function returns all the unique items detected in the image.
obj.unique_items_detected(img, detected_objects)
-
Count of each unique object
Here we get to see the count per unique object detected in the image.
obj.count_per_unique_item(img, detected_objects)
-
Shape of each detected object
Here we get to see the 3-dimensional shape of each detected object.
obj.detected_objects_shape(img, detected_objects, roi)
-
Display all detected objects
Here we display each detected object from the image individually.
obj.display_all_objects(img, detected_objects, roi)
-
Display specific objects
Here we give an option to display only specific objects detected in the image.
obj.display_specific_image(img, detected_objects, roi)
-
Display all resized objects
Here, all the resized roi's will be concatenated and displayed as one image of all the detected objects.
obj.display_all_resized_objects(img, detected_objects, resized_roi)
-
Grouping objects by class
Here we display all detected objects grouped by their respective classes.
obj.group_objects_by_class(img, detected_objects, resized_roi)
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 pyrack-0.0.10.tar.gz
.
File metadata
- Download URL: pyrack-0.0.10.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30f204582ede3fa4fc8d6edb8f0965793315efc461f206e34a537427e326f238 |
|
MD5 | 15704880b3d5bfde3d869430706760ed |
|
BLAKE2b-256 | 748b6e79882cf3617270127bd7bac04f16f4512135eec625da48deeddc7ed699 |
File details
Details for the file pyrack-0.0.10-py3-none-any.whl
.
File metadata
- Download URL: pyrack-0.0.10-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1774ee189c37c538f5219e5d3e5be711ebfeddf5d310672631ec5c006dea6071 |
|
MD5 | f15a4934958d86978278ff08f093eec2 |
|
BLAKE2b-256 | 9923f5cd86324d717897b07de48ab89ffe7938a0f3096b06003086913e4684a7 |