3#include "base_detection_module.h"
17 std::tuple<MoveX, MoveY> detect_object(camera_fb_t* frame)
24 MoveX random_number_x =
MoveX((rand() % (max - min + 1)) + min);
25 MoveY random_number_y =
MoveY((rand() % (max - min + 1)) + min);
27 return std::make_tuple(random_number_x, random_number_y);
An abstract base class (Interface) that defines the contract for detection algorithms....
Definition base_detection_module.h:22
Encapsulates horizontal movement states and utility methods.
Definition move_types.h:73
Encapsulates vertical movement states and utility methods.
Definition move_types.h:111
Definition test_detection.h:12