Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed absolute paths to relative paths #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions RobustTextDetection/main.cpp
Expand Up @@ -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;
Expand All @@ -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<Mat, Rect> result = detector.apply( image );

Expand Down