Signapse
SignapseUtils.h
Go to the documentation of this file.
1#ifndef SIGNAPSE_SIGNAPSEUTILS_H
2#define SIGNAPSE_SIGNAPSEUTILS_H
3
4#include <stdlib.h>
5#include <stdio.h>
6#include <time.h>
7#include "iostream"
8#include "SignapseUtils.h"
9
10#define MODEL_PATH "models/asl-mobilenetv2.pb"
11#define NR_TASKS 26
12namespace {
16 class SignapseUtils {
17 public:
21 static std::vector <std::string> results;
22
26 static void welcomeMessage() {
27 printf(" _____ _ \n"
28 " / ____(_) \n"
29 " | (___ _ __ _ _ __ __ _ _ __ ___ ___ \n"
30 " \\___ \\| |/ _` | '_ \\ / _` | '_ \\/ __|/ _ \\\n"
31 " ____) | | (_| | | | | (_| | |_) \\__ \\ __/\n"
32 " |_____/|_|\\__, |_| |_|\\__,_| .__/|___/\\___|\n"
33 " __/ | | | \n"
34 " |___/ |_| \n \nWelcome to Signapse, the tool for helping everyday people learn sign language for free!\n");
35 }
41 static std::string getLetterFromDigit(int digit) {
42 return results[digit % results.size()];
43 }
48 static std::string makeTask() {
49 int task_int = rand() % NR_TASKS;
50 return getLetterFromDigit(task_int);
51 }
56 static void randSeed(){
57 srand((unsigned) time(NULL));
58 }
62 static std::string getModelPath() {
63 return MODEL_PATH;
64 }
65 };
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"};
72}
73
74#endif
#define NR_TASKS
Definition: SignapseUtils.h:11
#define MODEL_PATH
Definition: SignapseUtils.h:10