[ADD] Looping through array depending on open or closed hand

This commit is contained in:
Kim
2021-06-01 14:37:57 +02:00
parent f1f1aac93d
commit 27e99dd2eb
6 changed files with 104 additions and 4 deletions

View File

@@ -0,0 +1,18 @@
namespace computervision
{
class MenuTest {
public:
/**
* @brief Constructor for the class MenuTest, loads in array with menu items
*
*/
MenuTest(void);
/**
* @brief Returns the itemnumber in an array
*
* @param input_bool is either true or false, depending on the recognized hand gesture
*/
int GetMenuItem(bool input_bool);
};
}