From 3419c704a947f2a7fce4a81ef4ae58048f406847 Mon Sep 17 00:00:00 2001 From: StevenPuttemans Date: Fri, 6 Mar 2015 13:47:43 +0100 Subject: [PATCH] adding usage information --- apps/annotation/opencv_annotation.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/apps/annotation/opencv_annotation.cpp b/apps/annotation/opencv_annotation.cpp index 605c95755e..9f3bec4200 100644 --- a/apps/annotation/opencv_annotation.cpp +++ b/apps/annotation/opencv_annotation.cpp @@ -152,6 +152,15 @@ void get_annotations(Mat input_image, stringstream* output_stream) int main( int argc, const char** argv ) { + // If no arguments are given, then supply some information on how this tool works + if( argc == 1 ){ + cout << "Usage: " << argv[0] << endl; + cout << " -images [example - /data/testimages/]" << endl; + cout << " -annotations [example - /data/annotations.txt]" << endl; + + return -1; + } + // Read in the input arguments string image_folder; string annotations;