1#ifndef SIGNAPSE_SIGNAPSEUTILS_H
2#define SIGNAPSE_SIGNAPSEUTILS_H
10#define MODEL_PATH "models/asl-mobilenetv2.pb"
21 static std::vector <std::string> results;
26 static void welcomeMessage() {
29 " | (___ _ __ _ _ __ __ _ _ __ ___ ___ \n"
30 " \\___ \\| |/ _` | '_ \\ / _` | '_ \\/ __|/ _ \\\n"
31 " ____) | | (_| | | | | (_| | |_) \\__ \\ __/\n"
32 " |_____/|_|\\__, |_| |_|\\__,_| .__/|___/\\___|\n"
34 " |___/ |_| \n \nWelcome to Signapse, the tool for helping everyday people learn sign language for free!\n");
41 static std::string getLetterFromDigit(
int digit) {
42 return results[digit % results.size()];
48 static std::string makeTask() {
50 return getLetterFromDigit(task_int);
56 static void randSeed(){
57 srand((
unsigned) time(NULL));
62 static std::string getModelPath() {
69 std::vector <std::string> SignapseUtils::results = {
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I",
"J",
"K",
"L",
"M",
70 "N",
"O",
"P",
"Q",
"R",
"S",
"T",
"U",
"V",
71 "W",
"X",
"Y",
"Z",
"del",
"space",
"nothing"};