Skip to content

Commit c93158f

Browse files
committed
fix SE.h
1 parent b757640 commit c93158f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FasterRCNN_SE_Detection_Example/FasterRCNN_SE.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class FasterRCNN {
7373
std::string exec = "FasterRCNN_Detect_SE.exe";
7474
std::ostringstream oss;
7575
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);
76+
UINT ret=WinExec(oss.str().c_str(), SW_HIDE);
7777
if (ret < 31) {
7878
::MessageBoxA(nullptr, "FasterRCNN Detector execute failed\nIt needs \"FasterRCNN_Detect_SE.exe\".", "Error", MB_OK);
7979
exit(1);

0 commit comments

Comments
 (0)