GithubHelp home page GithubHelp logo

breathrecognizer's Introduction

Breath Recognizer

An example of a swift class to record sound from the microphone and report whether the user is currently breathing into the mic.

It uses a combination of the average sound level and the peak level to try and remove background noise or spikes.

How to use

Copy BreathRecognizer.swift into your Xcode project.

Code Example

When you create a BreathRecognizer you provide it a threshold and a function to be called when the breathing state changes.

  // Specifty a threshold in decibels (-15 seems to work well for breath detection)
  BreathRecognizer(threshold) { isBreathing in
    doSomethingWithTheNewBreathingValue(isBreathing)
  }

Also see the example in ViewController.swift.

Notes:

  • The update function will only be called when the state changes (eg. breathing -> not breathing)
  • The recognizer will poll for mic updates every 0.05 seconds, I found this to be reasonable but feel free to mess with this in your project.

Todo:

  • Possibly provide a delegate interface for callbacks
  • Add more customizability in the timing and weighting of the readings.
  • Generalize this to detect different types of sound in addition to breathing (talking, clicking etc.).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.