Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions RobustTextDetection/main.cpp
Original file line number Diff line number Diff line change
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