mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-20 12:55:15 +08:00
Fixed Doxygen Warning and error
This commit is contained in:
@@ -613,10 +613,6 @@ public:
|
|||||||
@param emission_probabilities_table Table with observation emission probabilities. cols ==
|
@param emission_probabilities_table Table with observation emission probabilities. cols ==
|
||||||
rows == vocabulary.size().
|
rows == vocabulary.size().
|
||||||
|
|
||||||
@param windowWidth The width of the windows to which the sliding window will be iterated. The height will
|
|
||||||
be the height of the image. The windows might be resized to fit the classifiers input by the classifiers
|
|
||||||
preprocessor.
|
|
||||||
|
|
||||||
@param mode HMM Decoding algorithm (only Viterbi for the moment)
|
@param mode HMM Decoding algorithm (only Viterbi for the moment)
|
||||||
|
|
||||||
@param beam_size Size of the beam in Beam Search algorithm
|
@param beam_size Size of the beam in Beam Search algorithm
|
||||||
|
@@ -17,6 +17,7 @@
|
|||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
#include <fstream>
|
#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);
|
||||||
inline std::string getHelpStr(std::string progFname){
|
inline std::string getHelpStr(std::string progFname){
|
||||||
std::stringstream out;
|
std::stringstream out;
|
||||||
out << " Demo of text detection CNN for text detection." << std::endl;
|
out << " Demo of text detection CNN for text detection." << std::endl;
|
||||||
@@ -140,7 +141,4 @@ int main(int argc, const char * argv[]){
|
|||||||
std::cout << "Press any key to exit." << std::endl << std::endl;
|
std::cout << "Press any key to exit." << std::endl << std::endl;
|
||||||
if ((cv::waitKey()&0xff) == ' ')
|
if ((cv::waitKey()&0xff) == ' ')
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user