The framework for algorithms engineering with Python.
Project description
Tsipor Dynamics
Algorithms Engineering and Development
C4Dynamics (read Tsipor (bird) Dynamics) is the open-source framework of algorithms development for motion estimation and control.
Complete Documentation: https://c4dynamics.github.io/C4dynamics/
Table of contents
Motivation
C4dynamics provides two basic entities for developing and analyzing algorithms of objects in space and time:
-
datapoint: a class defining a point in space: position, velocity, acceleration, and mass.
-
rigidbody: a class defining a rigid body in space, i.e. an object with length and angular position.
You can develop and analyze algorithms by operating on these objects with one of the internal systems or algorithms of C4dynamics:
-
ODE Solver (4th order Runge-Kutta)
-
Kalman Filter
-
Extended Kalman Filter
-
Luenberger Observer
-
Radar System
-
Altitude Radar
-
IMU Model
-
GPS Model
-
Line Of Sight Seeker
Or one of the 3rd party libraries integrated with C4dynamics:
-
NumPy
-
Matplotlib
-
OpenCV
-
YOLO
Whether you're a seasoned algorithm engineer or just getting started, this framework has something to offer. Its modular design allows you to easily pick and choose the components you need, and its active community of contributors is always working to improve and expand its capabilities.
So why wait? Start using C4dynamics today and take your algorithms engineering to the next level!
Installation
- PIP
pip install c4dynamics
- GitHub
To run the latest GitHub version, download c4dynamics:
https://github.com/C4dynamics/C4dynamics
Note:
*If you face issues while cloning C4dynamics or using the YOLO detector,
it is likely that the yolov3.weights file has not been downloaded correctly.
To resolve this, download and install Git LFS and then reinstall C4dynamics.*
Install the required packages:
pip install -r requirements.txt
- Conda
Alternatively, run the preinstalled conda environment (see conda_installation.md):
conda env create -f c4dynamics_env.yaml
Quickstart
Import the framework:
import c4dynamics as c4d
Define a point in space with some initial conditions:
pt = c4d.datapoint(x = 1000, vx = 100)
Define a body in space with some initial conditions:
body = c4d.rigidbody(theta = 15 * 3.14 / 180)
Load an object detection module (YOLO):
yolodet = c4d.detectors.yolo(height = height, width = width)
Define a linear Kalman Filter, perform a prediction and an update:
pt.filter = c4d.filters.kalman(np.hstack((z, np.zeros(2))), P, A, H, Q, R)
pt.filter.predict()
pt.filter.correct(measure)
Store the current state of the datapoint (at time t):
pt.store(t)
Store other variables added to the datapoint object:
pt.storevar('kalman_state', t)
Define errors to a general-purpose seeker with C4dynamics:
rdr = c4d.seekers.radar(sf = 0.9, bias = 0, noisestd = 1)
Architecture
For Architecture & Roadmap, see the Wiki page.
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
File details
Details for the file c4dynamics-2.0.0.tar.gz
.
File metadata
- Download URL: c4dynamics-2.0.0.tar.gz
- Upload date:
- Size: 125.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 962703c1953ee611b5a1e9435e2a103271cce69811bef50131a08d5a700eff30 |
|
MD5 | 63e0366fe499856e2a0c8f7e919cfb67 |
|
BLAKE2b-256 | a0382128d9ad5a295def14def27d7d421b488294677368ea8ad215a877e5debb |
File details
Details for the file c4dynamics-2.0.0-py3-none-any.whl
.
File metadata
- Download URL: c4dynamics-2.0.0-py3-none-any.whl
- Upload date:
- Size: 156.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 02c68c978a72bb25874c076dce52776407e46efbc7aacd70be68584db6317d8b |
|
MD5 | 9a22b362b4c39edc13b977ba8692fe34 |
|
BLAKE2b-256 | b3a5531aa4a77359c0ff8188e631afd28cffa93a07fa0052b13fd687fcc59832 |