We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b757640 commit c93158fCopy full SHA for c93158f
FasterRCNN_SE_Detection_Example/FasterRCNN_SE.h
@@ -73,7 +73,7 @@ class FasterRCNN {
73
std::string exec = "FasterRCNN_Detect_SE.exe";
74
std::ostringstream oss;
75
oss << exec << " " << m_key_shmem << " " << m_key_mutex << " " << m_size << " " << "\"" << model_path << "\"" << "\t" << filter_threshold;
76
- UINT ret=WinExec(oss.str().c_str(), SW_SHOW);
+ UINT ret=WinExec(oss.str().c_str(), SW_HIDE);
77
if (ret < 31) {
78
::MessageBoxA(nullptr, "FasterRCNN Detector execute failed\nIt needs \"FasterRCNN_Detect_SE.exe\".", "Error", MB_OK);
79
exit(1);
0 commit comments