Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 1.03 KB

index.md

File metadata and controls

29 lines (26 loc) · 1.03 KB
layout title
home.njk
Home

OpenHPS is an open source hybrid positioning system to help developers fuse various positioning technologies and algorithms. The system offers a modular data processing framework with each modules ranging from computer vision to common algorithms such as fingerprinting or data persistence of sampled data.

The framework is maintained and used by the Web and Information Systems Engineering Lab at the Vrije Universiteit Brussel. Read more...

Quick Start

If you have npm installed, start using @openhps/core with the following commands.

$ npm install @openhps/core --save

Then you can start by importing the model builder to create your first positioning model.

import { ModelBuilder } from '@openhps/core';
ModelBuilder.create()
    .from(/* ... */)
    .via(/* ... */)
    .to(/* ... */)
    .build();