Skip to content
This repository has been archived by the owner on Oct 31, 2018. It is now read-only.

hajicj/MUSCIMarker

Repository files navigation

MUSCIMarker

Tool for annotating objects in musical scores.

MOVED TO: https://github.com/OMR-Research/MUSCIMarker

All new development takes place there. Please point your remotes to the new repo.

Documentation Status Build Status Build Status Coverage Status codecov

Documentation: http://muscimarker.readthedocs.io/en/latest/

Requirements

  • Python 2.7.11 and later (not 3)
  • Kivy
  • numpy, scipy
  • lxml
  • skimage

Tutorial

...is in the documentation: http://muscimarker.readthedocs.io/en/latest/tutorial.html

This work is supported by the Czech Science Foundation, grant number P103/12/G084.

Build the distributable binary for Windows

Basically follow the tutorial from the Kivy website:

  • Make sure you have all dependencies installed
  • From within [GIT_ROOT]/MUSCIMarker/MUSCIMarker run python -m PyInstaller --name MUSCIMarker main.py
  • Navigate to the MUSCIMarker.spec file and add from kivy.deps import sdl2, glew to the top and the following two statements to the COLLECT or EXE script:
    • Tree('[GIT_ROOT]/MUSCIMarker/MUSCIMarker')
    • *[Tree(p) for p in (sdl2.dep_bins + glew.dep_bins)]
  • Run python -m PyInstaller MUSCIMarker.spec