Skip to content

Commit

Permalink
remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
lithium0003 committed Aug 19, 2023
1 parent 55048a8 commit 16ff7bc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions textline_detect/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3824,15 +3824,15 @@ void hough_linefind(
// outfile << std::endl;
// }
// }
{
std::ofstream outfile("linemap.txt");
for(int y = 0; y < height; y++){
for(int x = 0; x < width; x++){
outfile << lineid_map2[y * width + x] << " ";
}
outfile << std::endl;
}
}
// {
// std::ofstream outfile("linemap.txt");
// for(int y = 0; y < height; y++){
// for(int x = 0; x < width; x++){
// outfile << lineid_map2[y * width + x] << " ";
// }
// outfile << std::endl;
// }
// }

// 太くした線でもう一度、文字ボックスと線分の接触を検出して、ライン上にboxを並べる
fprintf(stderr, "chain boxes2\n");
Expand Down

0 comments on commit 16ff7bc

Please sign in to comment.