1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-20 04:25:42 +08:00

Fixed Text box demo error

This commit is contained in:
sghoshcvc
2017-07-22 19:24:39 +02:00
parent b913cac1df
commit 4c9af58133

View File

@@ -17,7 +17,7 @@
#include <iomanip>
#include <fstream>
void textbox_draw(cv::Mat &src, std::vector<cv::Rect> &groups,std::vector<float> &probs,std::vector<cv::String> wordList,float thres=0.6);
void textbox_draw(cv::Mat &src, std::vector<cv::Rect> &groups,std::vector<float> &probs,std::vector<cv::String> wordList,float thres);
inline std::string getHelpStr(std::string progFname){
std::stringstream out;
out << " Demo of text detection CNN for text detection." << std::endl;