Pattern Discovery Kit
Project description
PATteRn dIsCovery Kit (PATRICK)
Welcome to the Pattern Discovery Kit!
This library provides tools to discover, detect, and track meaningful patterns in physical signals. These signals can be of various forms:
Time series,
Images,
Movies,
Any other type of n-dimensional data.
Installation
You can install the pattern-discovery-kit from the source code by doing the following:
pip install pattern-discovery-kit
You can then try running this notebook on your computer to verify that the installation was succesful.
Quickstart
Here is an example to briefly present the API:
import numpy as np
from patrick.core import Box, Frame, Model, Movie, Tracker
from patrick.display import plot_frame
# Define the dimensions of the problem
frame_width = 5
frame_height = 5
movie_length = 3
gif_frames_per_second = 2
# Define a concrete model class, just for the example
class DumbModel(Model):
def predict(self, frame: Frame) -> Frame:
frame_id = int(frame.name)
frame.annotations.append(
Box(label="noise_in_a_square", x=frame_id, y=frame_id, width=1, height=1)
)
return frame
model = DumbModel()
# Our data for this short tutorial
frames = [
Frame(
name=str(10 * i),
width=frame_width,
height=frame_height,
annotations=[],
image_array=np.random.random(frame_height, frame_width),
)
for i in range(movie_length)
]
movie = Movie(name="some_noise", frames=frames, tracks=[])
# Run the detection model on individual frames
analysed_frames = [model(frame) for frame in movie.frames]
analysed_movie = Movie(
name="some_noise_with_boxes", frames=analysed_frames, tracks=[]
)
# TBD: run tracker on detections
analysed_movie = tracker.make_tracks(analysed_movie)
analysed_movie.name = "some_noise_with_boxes_and_tracks"
# Plot individual frames with detections
for frame in analysed_movie:
plot_frame(frame)
# TBD: make a GIF to show the tracks
export_to_gif(analysed_movie, fps=gif_frames_per_seconds)
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pattern_discovery_kit-0.2.3.tar.gz.
File metadata
- Download URL: pattern_discovery_kit-0.2.3.tar.gz
- Upload date:
- Size: 14.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
808563646b49ffd5f2c018b54c3add172a60c24ba77a9124e245ebfff904f41e
|
|
| MD5 |
2076bb9f866c7cf3a9436a4c0c2075ef
|
|
| BLAKE2b-256 |
13d02545af68dc00f00f569dcc7da405360f7d12df22c9c5329c5bfa8521b3e1
|
File details
Details for the file pattern_discovery_kit-0.2.3-py3-none-any.whl.
File metadata
- Download URL: pattern_discovery_kit-0.2.3-py3-none-any.whl
- Upload date:
- Size: 18.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8709052f5c2cd9e9ca57dfeb49d5affa742d35afed746f0b2ee08c274b153948
|
|
| MD5 |
d1f30614548d3470dc25af9c752a0eca
|
|
| BLAKE2b-256 |
89faa4ad84933735e2603d22814a7ba6240ebb03cd0f7ec2bcebdc27370e8e16
|