YOLOv5 files updated

* Added supported version information
* Not needed to use libmyplugins.so anymore
This commit is contained in:
Marcos Luciano
2021-01-10 11:08:20 -03:00
parent 5b45057821
commit 470ed82658
6 changed files with 539 additions and 7 deletions

View File

@@ -28,7 +28,8 @@ LIBS:= -lnvinfer_plugin -lnvinfer -lnvparsers -L/usr/local/cuda-$(CUDA_VER)/lib6
LFLAGS:= -shared -Wl,--start-group $(LIBS) -Wl,--end-group
INCS:= $(wildcard *.h)
SRCFILES:= nvdsparsebbox_Yolo.cpp
SRCFILES:= nvdsparsebbox_Yolo.cpp \
yololayer.cu
TARGET_LIB:= libnvdsinfer_custom_impl_Yolo.so
@@ -48,3 +49,4 @@ $(TARGET_LIB) : $(TARGET_OBJS)
clean:
rm -rf $(TARGET_LIB)
rm -rf $(TARGET_OBJS)