Commit 4a869007 authored by edgarriba's avatar edgarriba

Added help()

parent 69f1ee87
...@@ -24,6 +24,19 @@ std::string yml_read_path = "../Data/cookies_ORB.yml"; // 3dpts + descriptors ...@@ -24,6 +24,19 @@ std::string yml_read_path = "../Data/cookies_ORB.yml"; // 3dpts + descriptors
// COOKIES BOX MESH // COOKIES BOX MESH
std::string ply_read_path = "../Data/box.ply"; // mesh std::string ply_read_path = "../Data/box.ply"; // mesh
void help()
{
std::cout
<< "--------------------------------------------------------------------------" << std::endl
<< "This program shows how to detect an object given its 3D textured model. You can choose to "
<< "use a recorded video or the webcam." << std::endl
<< "Usage:" << std::endl
<< "./pnp_detection ~/path_to_video/box.mp4" << std::endl
<< "./pnp_detection " << std::endl
<< "--------------------------------------------------------------------------" << std::endl
<< std::endl;
}
/* /*
* Set up the intrinsic camera parameters: UVC WEBCAM * Set up the intrinsic camera parameters: UVC WEBCAM
...@@ -39,7 +52,6 @@ double params_WEBCAM[] = { width*f/sx, // fx ...@@ -39,7 +52,6 @@ double params_WEBCAM[] = { width*f/sx, // fx
height/2}; // cy height/2}; // cy
/* /*
* Set up some basic colors * Set up some basic colors
*/ */
...@@ -92,7 +104,7 @@ void fillMeasurements( cv::Mat &measurements, ...@@ -92,7 +104,7 @@ void fillMeasurements( cv::Mat &measurements,
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
std::cout << "!!!Hello Detection!!!" << std::endl; help();
PnPProblem pnp_detection(params_WEBCAM); PnPProblem pnp_detection(params_WEBCAM);
PnPProblem pnp_detection_est(params_WEBCAM); PnPProblem pnp_detection_est(params_WEBCAM);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment