diff --git a/csrc/detect/include/config.h b/csrc/detect/include/config.h index cc3cd0b..600c3fe 100644 --- a/csrc/detect/include/config.h +++ b/csrc/detect/include/config.h @@ -2,8 +2,8 @@ // Created by ubuntu on 1/10/23. // -#ifndef YOLOV8_CSRC_END2END_INCLUDE_CONFIG_H -#define YOLOV8_CSRC_END2END_INCLUDE_CONFIG_H +#ifndef YOLOV8_CSRC_DETECT_INCLUDE_CONFIG_H +#define YOLOV8_CSRC_DETECT_INCLUDE_CONFIG_H #include "opencv2/opencv.hpp" namespace det { @@ -81,4 +81,4 @@ namespace det }; } -#endif //YOLOV8_CSRC_END2END_INCLUDE_CONFIG_H +#endif //YOLOV8_CSRC_DETECT_INCLUDE_CONFIG_H diff --git a/csrc/detect/include/utils.h b/csrc/detect/include/utils.h index d77f42d..c03db75 100644 --- a/csrc/detect/include/utils.h +++ b/csrc/detect/include/utils.h @@ -2,8 +2,8 @@ // Created by ubuntu on 1/10/23. // -#ifndef YOLOV8_CSRC_END2END_INCLUDE_UTILS_H -#define YOLOV8_CSRC_END2END_INCLUDE_UTILS_H +#ifndef YOLOV8_CSRC_DETECT_INCLUDE_UTILS_H +#define YOLOV8_CSRC_DETECT_INCLUDE_UTILS_H #include #include #include @@ -130,4 +130,4 @@ inline bool IsFolder(const std::string& path) 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