Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 2.23 KB

README.md

File metadata and controls

42 lines (29 loc) · 2.23 KB

OpenWillis is a python library for digital health measurement.

It was developed by Brooklyn Health to establish standardized methods in digital phenotyping and make them open and accessible to the scientific community.

It is freely available for non-commercial use (see license).

The OpenWillis Wiki contains detailed documentation on the following:

  1. Function methods and documentation
  2. Release notes
  3. Instructions for getting started
  4. Research guidelines
  5. Contribution guidelines
  6. User community events

Please use the following reference when reporting work that has used OpenWillis: Worthington, M., Efstathiadis, G., Yadav, V., & Abbas, A. (2024). 172. OpenWillis: An Open-Source Python Library for Digital Health Measurement. Biological Psychiatry, 95(10), S169-S170.

Please report any issues using the Issues tab.

If you’d like to contribute to OpenWillis or have general questions, please get in touch.

Brief instructions for getting started

Certain requirements are required prior to installing OpenWillis. For full details, please see installation instructions here.

OpenWillis can be installed from PyPI using pip:

pip install openwillis

Example use:

Below is an example use of the facial_expressivity function to calculate expressivity from a video.

import openwillis as ow

framewise_loc, framewise_disp, summary = ow.facial_expressivity('data/video.mp4', 'data/baseline.mp4')

All OpenWillis functions are listed in the wiki's List of Functions.

Each function has a document that details its use, methods utilized, input and output parameters, primary outcome measures, and any additional information relevant for the use of the function.