mirror of
https://github.com/we0091234/crnn_plate_recognition.git
synced 2025-12-24 12:12:23 +08:00
35 lines
413 B
Plaintext
35 lines
413 B
Plaintext
# .gitignore
|
|
# 首先忽略所有的文件
|
|
*
|
|
# 但是不忽略目录
|
|
!*/
|
|
# 忽略一些指定的目录名
|
|
ut/
|
|
runs/
|
|
.vscode/
|
|
build/
|
|
result1/
|
|
output/
|
|
color_model/
|
|
color_model_small/
|
|
pretrainde_model/
|
|
demoMy.py
|
|
get_every_provice_number.py
|
|
get_train_less_data.py
|
|
redtest.py
|
|
# 不忽略下面指定的文件类型
|
|
!*.cpp
|
|
!*.h
|
|
!*.hpp
|
|
!*.c
|
|
!.gitignore
|
|
!*.py
|
|
!*.sh
|
|
!*.npy
|
|
!*.jpg
|
|
!*.pth
|
|
!*.npy
|
|
!*.txt
|
|
!*.md
|
|
!*.yaml
|
|
!*.png |