vital-DSP


Namevital-DSP JSON
Version 0.1.1rc1 PyPI version JSON
download
home_pagehttps://github.com/Oucru-Innovations/vital-DSP
SummaryA comprehensive toolkit for Digital Signal Processing in healthcare applications.
upload_time2024-08-25 10:15:35
maintainerNone
docs_urlNone
authorvan-koha
requires_python>=3.9
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# Healthcare DSP Toolkit

![GitHub stars](https://img.shields.io/github/stars/Oucru-Innovations/vital-DSP?style=social)
![Build Status](https://github.com/Oucru-Innovations/vital-DSP/actions/workflows/ci.yml/badge.svg)
<!-- [![Coverage Status](https://coveralls.io/repos/github/Oucru-Innovations/vital-DSP/badge.svg?branch=main)](https://coveralls.io/github/Oucru-Innovations/vital-DSP?branch=main) -->
[![codecov](https://codecov.io/gh/Oucru-Innovations/vital-DSP/branch/main/graph/badge.svg)](https://codecov.io/gh/Oucru-Innovations/vital-DSP)
![GitHub License](https://img.shields.io/github/license/Oucru-Innovations/vital-DSP)
![Python Versions](https://img.shields.io/badge/python-3.9%2B-blue)
[![Documentation Status](https://readthedocs.org/projects/vital-DSP/badge/?version=latest)](https://vital-DSP.readthedocs.io/en/latest/?badge=latest)
![PyPI Downloads](https://img.shields.io/pypi/dm/vital-DSP)
[![PyPI version](https://badge.fury.io/py/vital-DSP.svg)](https://badge.fury.io/py/vital-DSP)

This repository contains a comprehensive toolkit for Digital Signal Processing (DSP) in healthcare applications. It includes traditional DSP methods as well as advanced machine learning (ML) and deep learning (DL) inspired techniques. The toolkit is designed to process a wide range of physiological signals, such as ECG, EEG, PPG, and respiratory signals, with applications in monitoring, anomaly detection, and signal quality assessment.

## Features
- **Filtering**: Traditional filters (e.g., moving average, Gaussian, Butterworth) and advanced ML-inspired filters.
- **Transforms**: Fourier Transform, DCT, Wavelet Transform, and various fusion methods.
- **Time-Domain Analysis**: Peak detection, envelope detection, ZCR, and advanced segmentation techniques.
- **Advanced Methods**: EMD, sparse signal processing, Bayesian optimization, and more.
- **Neuro-Signal Processing**: EEG band power analysis, ERP detection, cognitive load measurement.
- **Respiratory Analysis**: Automated respiratory rate calculation, sleep apnea detection, and multi-sensor fusion.
- **Signal Quality Assessment**: SNR calculation, artifact detection/removal, and adaptive methods.
- **Monitoring and Alert Systems**: Real-time anomaly detection, multi-parameter monitoring, and alert correlation.


## Installation
To install the toolkit, run the following command:
```bash
pip install -r requirements.txt
```

## Usage
Detailed documentation for each module is available in the `docs/` directory. Below is a simple example of using the filtering module:
```python
from healthcare_dsp.filtering.moving_average import moving_average_filter

# Example signal
signal = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

# Apply moving average filter
filtered_signal = moving_average_filter(signal, window_size=3)
print(filtered_signal)
```

## Documentation
Comprehensive documentation for each module is available in the `docs/` directory, covering usage examples, API references, and more.

## Contributing
We welcome contributions! Please read the [CONTRIBUTING.md](CONTRIBUTING.md) file for guidelines on how to contribute to this project.

## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Oucru-Innovations/vital-DSP",
    "name": "vital-DSP",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "van-koha",
    "author_email": "vital.data@oucru.org",
    "download_url": "https://files.pythonhosted.org/packages/c4/2c/3a92c3342c63db0daf6b8799fc0f2aec6cebfd1a824b4167ad3f102f2c3d/vital_dsp-0.1.1rc1.tar.gz",
    "platform": null,
    "description": "\r\n# Healthcare DSP Toolkit\r\n\r\n![GitHub stars](https://img.shields.io/github/stars/Oucru-Innovations/vital-DSP?style=social)\r\n![Build Status](https://github.com/Oucru-Innovations/vital-DSP/actions/workflows/ci.yml/badge.svg)\r\n<!-- [![Coverage Status](https://coveralls.io/repos/github/Oucru-Innovations/vital-DSP/badge.svg?branch=main)](https://coveralls.io/github/Oucru-Innovations/vital-DSP?branch=main) -->\r\n[![codecov](https://codecov.io/gh/Oucru-Innovations/vital-DSP/branch/main/graph/badge.svg)](https://codecov.io/gh/Oucru-Innovations/vital-DSP)\r\n![GitHub License](https://img.shields.io/github/license/Oucru-Innovations/vital-DSP)\r\n![Python Versions](https://img.shields.io/badge/python-3.9%2B-blue)\r\n[![Documentation Status](https://readthedocs.org/projects/vital-DSP/badge/?version=latest)](https://vital-DSP.readthedocs.io/en/latest/?badge=latest)\r\n![PyPI Downloads](https://img.shields.io/pypi/dm/vital-DSP)\r\n[![PyPI version](https://badge.fury.io/py/vital-DSP.svg)](https://badge.fury.io/py/vital-DSP)\r\n\r\nThis repository contains a comprehensive toolkit for Digital Signal Processing (DSP) in healthcare applications. It includes traditional DSP methods as well as advanced machine learning (ML) and deep learning (DL) inspired techniques. The toolkit is designed to process a wide range of physiological signals, such as ECG, EEG, PPG, and respiratory signals, with applications in monitoring, anomaly detection, and signal quality assessment.\r\n\r\n## Features\r\n- **Filtering**: Traditional filters (e.g., moving average, Gaussian, Butterworth) and advanced ML-inspired filters.\r\n- **Transforms**: Fourier Transform, DCT, Wavelet Transform, and various fusion methods.\r\n- **Time-Domain Analysis**: Peak detection, envelope detection, ZCR, and advanced segmentation techniques.\r\n- **Advanced Methods**: EMD, sparse signal processing, Bayesian optimization, and more.\r\n- **Neuro-Signal Processing**: EEG band power analysis, ERP detection, cognitive load measurement.\r\n- **Respiratory Analysis**: Automated respiratory rate calculation, sleep apnea detection, and multi-sensor fusion.\r\n- **Signal Quality Assessment**: SNR calculation, artifact detection/removal, and adaptive methods.\r\n- **Monitoring and Alert Systems**: Real-time anomaly detection, multi-parameter monitoring, and alert correlation.\r\n\r\n\r\n## Installation\r\nTo install the toolkit, run the following command:\r\n```bash\r\npip install -r requirements.txt\r\n```\r\n\r\n## Usage\r\nDetailed documentation for each module is available in the `docs/` directory. Below is a simple example of using the filtering module:\r\n```python\r\nfrom healthcare_dsp.filtering.moving_average import moving_average_filter\r\n\r\n# Example signal\r\nsignal = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]\r\n\r\n# Apply moving average filter\r\nfiltered_signal = moving_average_filter(signal, window_size=3)\r\nprint(filtered_signal)\r\n```\r\n\r\n## Documentation\r\nComprehensive documentation for each module is available in the `docs/` directory, covering usage examples, API references, and more.\r\n\r\n## Contributing\r\nWe welcome contributions! Please read the [CONTRIBUTING.md](CONTRIBUTING.md) file for guidelines on how to contribute to this project.\r\n\r\n## License\r\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A comprehensive toolkit for Digital Signal Processing in healthcare applications.",
    "version": "0.1.1rc1",
    "project_urls": {
        "Homepage": "https://github.com/Oucru-Innovations/vital-DSP"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cba199273df9583c60b98bba07c48be071c4820ece047a37d3830187a85b0c6c",
                "md5": "fbb9f1cd6cb7e96618f74dec7bf03419",
                "sha256": "a31248b8290f880c8aaf941c727bab54c709de27aba2bf54d6becba5f257840d"
            },
            "downloads": -1,
            "filename": "vital_DSP-0.1.1rc1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "fbb9f1cd6cb7e96618f74dec7bf03419",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 120525,
            "upload_time": "2024-08-25T10:15:32",
            "upload_time_iso_8601": "2024-08-25T10:15:32.271882Z",
            "url": "https://files.pythonhosted.org/packages/cb/a1/99273df9583c60b98bba07c48be071c4820ece047a37d3830187a85b0c6c/vital_DSP-0.1.1rc1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c42c3a92c3342c63db0daf6b8799fc0f2aec6cebfd1a824b4167ad3f102f2c3d",
                "md5": "551de4466efb674d3900458a64acc28f",
                "sha256": "93a98df4c875be972f13b70edb5bb70e5734163cf458eb973b8c47c37c0d1495"
            },
            "downloads": -1,
            "filename": "vital_dsp-0.1.1rc1.tar.gz",
            "has_sig": false,
            "md5_digest": "551de4466efb674d3900458a64acc28f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 93567,
            "upload_time": "2024-08-25T10:15:35",
            "upload_time_iso_8601": "2024-08-25T10:15:35.015188Z",
            "url": "https://files.pythonhosted.org/packages/c4/2c/3a92c3342c63db0daf6b8799fc0f2aec6cebfd1a824b4167ad3f102f2c3d/vital_dsp-0.1.1rc1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-25 10:15:35",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Oucru-Innovations",
    "github_project": "vital-DSP",
    "github_not_found": true,
    "lcname": "vital-dsp"
}
        
Elapsed time: 0.91316s