mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 11:10:21 +08:00
solve Issue 23685
This commit is contained in:
parent
f07b01cc34
commit
45dcd156b7
@ -103,6 +103,7 @@ int main(int argc, char** argv)
|
|||||||
// Inference
|
// Inference
|
||||||
std::vector< std::vector<Point> > detResults;
|
std::vector< std::vector<Point> > detResults;
|
||||||
detector.detect(frame, detResults);
|
detector.detect(frame, detResults);
|
||||||
|
Mat frame2 = frame.clone();
|
||||||
|
|
||||||
if (detResults.size() > 0) {
|
if (detResults.size() > 0) {
|
||||||
// Text Recognition
|
// Text Recognition
|
||||||
@ -131,13 +132,13 @@ int main(int argc, char** argv)
|
|||||||
std::string recognitionResult = recognizer.recognize(cropped);
|
std::string recognitionResult = recognizer.recognize(cropped);
|
||||||
std::cout << i << ": '" << recognitionResult << "'" << std::endl;
|
std::cout << i << ": '" << recognitionResult << "'" << std::endl;
|
||||||
|
|
||||||
putText(frame, recognitionResult, quadrangle[3], FONT_HERSHEY_SIMPLEX, 1, Scalar(0, 0, 255), 2);
|
putText(frame2, recognitionResult, quadrangle[3], FONT_HERSHEY_SIMPLEX, 1, Scalar(0, 0, 255), 2);
|
||||||
}
|
}
|
||||||
polylines(frame, contours, true, Scalar(0, 255, 0), 2);
|
polylines(frame2, contours, true, Scalar(0, 255, 0), 2);
|
||||||
} else {
|
} else {
|
||||||
std::cout << "No Text Detected." << std::endl;
|
std::cout << "No Text Detected." << std::endl;
|
||||||
}
|
}
|
||||||
imshow(winName, frame);
|
imshow(winName, frame2);
|
||||||
waitKey();
|
waitKey();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user