Skip to content

Commit b32eb47

Browse files
committed
begin yolov7 model
1 parent 13d09ad commit b32eb47

File tree

6 files changed

+1454
-4
lines changed

6 files changed

+1454
-4
lines changed

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# TensorRT_EX
22

3-
## in progress
4-
- Easier and more intuitive code structure
5-
63
## Enviroments
74
***
85
- Windows 10 laptop
@@ -281,6 +278,10 @@ and GPU memory usage (with preprocess, without nms, 536 x 640 x 3)
281278
</table>
282279

283280
***
281+
282+
## Object Detection model 3 (in progress)
283+
- Yolov7 model (yolov7.cpp)
284+
284285

285286
## Using C TensoRT model in Python using dll
286287
- TRT_DLL_EX : <https://github.com/yester31/TRT_DLL_EX>

TensorRT/TensorRT.vcxproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
121121
</ClCompile>
122122
<ClCompile Include="real-esrgan.cpp">
123-
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</ExcludedFromBuild>
123+
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
124124
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</ExcludedFromBuild>
125125
</ClCompile>
126126
<ClCompile Include="yolov6.cpp">
@@ -140,6 +140,7 @@
140140
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
141141
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
142142
</ClCompile>
143+
<ClCompile Include="yolov7.cpp" />
143144
</ItemGroup>
144145
<ItemGroup>
145146
<CudaCompile Include="postprocess.cu" />

TensorRT/TensorRT.vcxproj.filters

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
<ClCompile Include="real-esrgan.cpp" />
1919
<ClCompile Include="resnet18.cpp" />
2020
<ClCompile Include="yolov6.cpp" />
21+
<ClCompile Include="yolov7.cpp" />
2122
</ItemGroup>
2223
<ItemGroup>
2324
<ClInclude Include="preprocess.hpp">

0 commit comments

Comments
 (0)