Metadata-Version: 2.4
Name: vqf
Version: 2.1.0
Summary: A Versatile Quaternion-based Filter for IMU Orientation Estimation
Home-page: https://github.com/dlaidig/vqf/
Author: Daniel Laidig
Author-email: laidig@control.tu-berlin.de
License: MIT
Project-URL: Documentation, https://vqf.readthedocs.io/
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
Requires-Dist: numpy>=1.20.0
Provides-Extra: dev
Requires-Dist: tox; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Requires-Dist: reuse; extra == "dev"
Requires-Dist: transplant; extra == "dev"
Requires-Dist: oct2py; extra == "dev"
Requires-Dist: scipy; extra == "dev"
Requires-Dist: breathe; extra == "dev"
Requires-Dist: matplotlib; extra == "dev"
Requires-Dist: sphinx; extra == "dev"
Requires-Dist: sphinx-rtd-theme; extra == "dev"
Requires-Dist: sphinxcontrib-matlabdomain; extra == "dev"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

.. SPDX-FileCopyrightText: 2021 Daniel Laidig <laidig@control.tu-berlin.de>
..
.. SPDX-License-Identifier: MIT

VQF: A Versatile Quaternion-based Filter for IMU Orientation Estimation
=======================================================================

|tests| |build| |docs| |version| |python| |format| |license| |downloads|

This is the implementation of the IMU orientation estimation filter described in the following publication:

    D. Laidig and T. Seel. "VQF: Highly Accurate IMU Orientation Estimation with Bias Estimation and Magnetic
    Disturbance Rejection." Information Fusion 2023, 91, 187--204.
    `doi:10.1016/j.inffus.2022.10.014 <https://doi.org/10.1016/j.inffus.2022.10.014>`_.
    [Accepted manuscript available at `arXiv:2203.17024 <https://arxiv.org/abs/2203.17024>`_.]

The filter can perform simultaneous 6D (magnetometer-free) and 9D (gyr+acc+mag) sensor fusion and can also be used
without magnetometer data. Different sampling rates for gyroscopes, accelerometers, and magnetometers are
supported as well. While in most cases, the defaults will be reasonable, the algorithm can be influenced via two
tuning parameters.

Documentation
-------------

Detailed documentation can be found at https://vqf.readthedocs.io/.

Installation
------------

The VQF Python package can easily be installed from PyPI via pip, e.g.:

.. code-block:: sh

    pip install vqf

For more information, please refer to the `documentation <https://vqf.readthedocs.io/>`__.

Implementations
---------------

This project contains several implementations of VQF in different programming languages:

- The main implementation is written in **C++**.
- Cython-based wrappers are provided that allow the fast C++ implementation to be used from **Python**.
- Additionally, there is a (comparatively slow) implementation in **pure Python**.
- A **pure Matlab** version is available as well.

Additionally, you may find the following "inofficial" port useful:

- C, by Hugo Chiang: https://github.com/DusKing1/vqf-c.

If you have ported VQF to a different language and published the code under a permissive license, feel free to let me
know so I can mention your project here.

License
-------

VQF is licensed under the terms of the `MIT license <https://spdx.org/licenses/MIT.html>`__.

Contact
-------

Daniel Laidig <laidig at control.tu-berlin.de>


.. |tests| image:: https://img.shields.io/github/actions/workflow/status/dlaidig/vqf/tests.yml?branch=main
    :target: https://github.com/dlaidig/vqf/actions/workflows/tests.yml
.. |build| image:: https://img.shields.io/github/actions/workflow/status/dlaidig/vqf/build.yml?branch=main
    :target: https://github.com/dlaidig/vqf/actions/workflows/build.yml
.. |docs| image:: https://img.shields.io/readthedocs/vqf
    :target: https://vqf.readthedocs.io/
.. |version| image:: https://img.shields.io/pypi/v/vqf
    :target: https://pypi.org/project/vqf/
.. |python| image:: https://img.shields.io/pypi/pyversions/vqf
    :target: https://pypi.org/project/vqf/
.. |format| image:: https://img.shields.io/pypi/format/vqf
    :target: https://pypi.org/project/vqf/
.. |license| image:: https://img.shields.io/pypi/l/vqf
    :target: https://github.com/dlaidig/vqf_playground/blob/master/LICENSES/MIT.txt
.. |downloads| image:: https://img.shields.io/pypi/dm/vqf
    :target: https://pypi.org/project/vqf/
