1
0
mirror of synced 2024-11-24 06:50:14 +01:00
depthrush/depthrushConfig/depthrushConfig.cpp
2023-07-28 14:51:42 +07:00

23 lines
479 B
C++

#include "includes.h"
int main()
{
int choice = 0;
std::cout << "Depthrush test application\n";
std::cout << "1. Calibrate Kinect\n";
std::cout << "2. Preview Kinect\n";
std::cout << "Enter a choice (1,2): ";
std::cin >> choice;
if (choice == 1) {
calibration();
return 0;
}
else if (choice == 2) {
std::cout << "okay 2";
return 0;
}
else {
std::cout << "Invalid option!";
}
return 0;
}