|
@@ -22,7 +22,9 @@ SOURCES += \
|
|
lib/preprocess/voxel_generator.cpp \
|
|
lib/preprocess/voxel_generator.cpp \
|
|
lib/utils.cpp \
|
|
lib/utils.cpp \
|
|
main.cpp \
|
|
main.cpp \
|
|
- tensorrt_common/tensorrt_common.cpp
|
|
|
|
|
|
+ tensorrt_common/tensorrt_common.cpp \
|
|
|
|
+ ../../include/msgtype/object.pb.cc \
|
|
|
|
+ ../../include/msgtype/objectarray.pb.cc
|
|
|
|
|
|
# Default rules for deployment.
|
|
# Default rules for deployment.
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
@@ -59,6 +61,16 @@ INCLUDEPATH +=$$PWD/perception_utils/include
|
|
|
|
|
|
LIBS += -lrt -ldl -lnvinfer -lcudnn -lcudart -lnvparsers -lnvonnxparser -lnvinfer_plugin -lstdc++fs
|
|
LIBS += -lrt -ldl -lnvinfer -lcudnn -lcudart -lnvparsers -lnvonnxparser -lnvinfer_plugin -lstdc++fs
|
|
|
|
|
|
|
|
+!include(../../../include/common.pri ) {
|
|
|
|
+ error( "Couldn't find the common.pri file!" )
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+!include(../../../include/ivprotobuf.pri ) {
|
|
|
|
+ error( "Couldn't find the ivprotobuf.pri file!" )
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+INCLUDEPATH += $$PWD/../../include/msgtype
|
|
|
|
+
|
|
|
|
|
|
CUDA_SOURCES += \
|
|
CUDA_SOURCES += \
|
|
lib/network/scatter_kernel.cu \
|
|
lib/network/scatter_kernel.cu \
|
|
@@ -79,7 +91,7 @@ SYSTEM_NAME = linux # 自己系统环境 'Win32', 'x64', or 'Win64'
|
|
|
|
|
|
SYSTEM_TYPE = 64 #操作系统位数 '32' or '64',
|
|
SYSTEM_TYPE = 64 #操作系统位数 '32' or '64',
|
|
|
|
|
|
-CUDA_ARCH = sm_72 # cuda架构, for example 'compute_10', 'compute_11', 'sm_10'
|
|
|
|
|
|
+CUDA_ARCH = sm_72 # xavier sm_72 # cuda架构, for example 'compute_10', 'compute_11', 'sm_10'
|
|
|
|
|
|
NVCC_OPTIONS = --use_fast_math --compiler-options "-fPIC"
|
|
NVCC_OPTIONS = --use_fast_math --compiler-options "-fPIC"
|
|
|
|
|
|
@@ -157,5 +169,7 @@ HEADERS += \
|
|
include/lidar_centerpoint/postprocess/postprocess_kernel.hpp \
|
|
include/lidar_centerpoint/postprocess/postprocess_kernel.hpp \
|
|
include/lidar_centerpoint/preprocess/pointcloud_densification.hpp \
|
|
include/lidar_centerpoint/preprocess/pointcloud_densification.hpp \
|
|
include/lidar_centerpoint/preprocess/preprocess_kernel.hpp \
|
|
include/lidar_centerpoint/preprocess/preprocess_kernel.hpp \
|
|
- include/lidar_centerpoint/preprocess/voxel_generator.hpp
|
|
|
|
|
|
+ include/lidar_centerpoint/preprocess/voxel_generator.hpp \
|
|
|
|
+ ../../include/msgtype/object.pb.h \
|
|
|
|
+ ../../include/msgtype/objectarray.pb.h
|
|
|
|
|