Giter Site home page Giter Site logo

video-morse-decoder's Introduction

Video Morse Decoder

An analysis of the Morse Code message from a video recording of the new signalling tower located on the Revelle Campus of the University of California, San Diego, and the subsequent Python application derived from it.

Use

To decode a (small, grayscale) video of a signal light flashing Morse Code, enter the following on the command line:

$ python decode_morse_video.py <path to video>

To interact with the Jupyter Notebook on decoding a video of a signal light flashing Morse Code, create an appropriate conda environment (see Requirements, below), and run Jupyter Notebook from this directory.

$ jupyter notebook

Requirements

The Morse video decoder requires Python, OpenCV, and a bunch of Python libraries. By far, the easiest way to obtain Python and OpenCV (at least on Linux) is to install Anaconda, and make a conda virtual environment with the necessary libraries, like so:

$ conda create -n morsedecoder --file conda-requirements.txt

ffmpeg is also useful, but not required, to get your video into a digestible format (grayscale, and as small as possible) from the command line.

Video Conversion

Some helpful ffmpeg commands:

  • Resize, and strip audio: ffmpeg -i <source> -s <width>x<height> -an <destination>
  • Convert to grayscale: ffmpeg -i <source> -vf format=gray <destination>
  • Crop video: ffmpeg -i <source> -vf crop=<width>:<height>:<x>:<y> <destination>

You may or may not be able to successfully combine commands.

License

Copyright 2018, Andrew Lin. All rights reserved.

This software is released under the BSD 3-clause license. See LICENSE.txt or https://opensource.org/licenses/BSD-3-Clause for more information.

video-morse-decoder's People

Contributors

andrewwashere avatar

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.