pull/7/head
triple-Mu 2 years ago
parent 8a54152f58
commit 991f0885ab
  1. 6
      csrc/detect/include/config.h
  2. 6
      csrc/detect/include/utils.h

@ -2,8 +2,8 @@
// Created by ubuntu on 1/10/23. // Created by ubuntu on 1/10/23.
// //
#ifndef YOLOV8_CSRC_END2END_INCLUDE_CONFIG_H #ifndef YOLOV8_CSRC_DETECT_INCLUDE_CONFIG_H
#define YOLOV8_CSRC_END2END_INCLUDE_CONFIG_H #define YOLOV8_CSRC_DETECT_INCLUDE_CONFIG_H
#include "opencv2/opencv.hpp" #include "opencv2/opencv.hpp"
namespace det namespace det
{ {
@ -81,4 +81,4 @@ namespace det
}; };
} }
#endif //YOLOV8_CSRC_END2END_INCLUDE_CONFIG_H #endif //YOLOV8_CSRC_DETECT_INCLUDE_CONFIG_H

@ -2,8 +2,8 @@
// Created by ubuntu on 1/10/23. // Created by ubuntu on 1/10/23.
// //
#ifndef YOLOV8_CSRC_END2END_INCLUDE_UTILS_H #ifndef YOLOV8_CSRC_DETECT_INCLUDE_UTILS_H
#define YOLOV8_CSRC_END2END_INCLUDE_UTILS_H #define YOLOV8_CSRC_DETECT_INCLUDE_UTILS_H
#include <sys/stat.h> #include <sys/stat.h>
#include <iostream> #include <iostream>
#include <string> #include <string>
@ -130,4 +130,4 @@ inline bool IsFolder(const std::string& path)
return (stat(path.c_str(), &buffer) == 0 && S_ISDIR(buffer.st_mode)); return (stat(path.c_str(), &buffer) == 0 && S_ISDIR(buffer.st_mode));
} }
#endif //YOLOV8_CSRC_END2END_INCLUDE_UTILS_H #endif //YOLOV8_CSRC_DETECT_INCLUDE_UTILS_H

Loading…
Cancel
Save