This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Install MSYS2 from https://msys2.github.io/ | |
2. Install Mingw-W64 `pacman -S mingw-w64-i686-gcc` | |
3. Install git autoconf automake libtool make pkg-config | |
`pacman -S git` | |
`pacman -S autoconf` | |
`pacman -S automake` | |
`pacman -S libtool` | |
`pacman -S make` | |
`pacman -S pkg-config` | |
4. yasm:http://yasm.tortall.net/,change to yasm.exe,move to C:\msys32\usr\bin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <SDL.h> | |
#include <cstdio> | |
#include <iostream> | |
#include <string> | |
#include <cstring> | |
#include <sstream> | |
#include <ctime> | |
const int MAX_RECORDING_DEVICES = 10; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################# | |
# Full Imports | |
import sys | |
import math | |
import random | |
import subprocess | |
""" | |
This is a pure Python implementation of the K-Means Clustering algorithmn. The |