From 4a1ffb9b3ec18034a68e007ff00f3c9eb8b39b14 Mon Sep 17 00:00:00 2001 From: Tobias Hermann Date: Tue, 6 Jan 2015 15:28:49 +0100 Subject: [PATCH] changed absolute paths to relative paths --- RobustTextDetection/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RobustTextDetection/main.cpp b/RobustTextDetection/main.cpp index 24cde7e..f0c7fab 100644 --- a/RobustTextDetection/main.cpp +++ b/RobustTextDetection/main.cpp @@ -23,7 +23,7 @@ int main(int argc, const char * argv[]) namedWindow( "" ); moveWindow("", 0, 0); - Mat image = imread( "/Users/saburookita/Personal Projects/RobustTextDetection/TestText.png" ); + Mat image = imread( "./TestText.png" ); /* Quite a handful or params */ RobustTextParam param; @@ -43,7 +43,7 @@ int main(int argc, const char * argv[]) /* Apply Robust Text Detection */ /* ... remove this temp output path if you don't want it to write temp image files */ - string temp_output_path = "/Users/saburookita/Personal Projects/RobustTextDetection/"; + string temp_output_path = "./"; RobustTextDetection detector(param, temp_output_path ); pair result = detector.apply( image );