├── .idea ├── misc.xml ├── modules.xml └── workspace.xml ├── .py ├── MAIN.py ├── RD.txt ├── README.md ├── __pycache__ ├── MAIN.cpython-37.pyc ├── alert.cpython-37.pyc └── bye.cpython-37.pyc ├── alert.py ├── bye.py └── myanimal.py /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqingshan/Production-animal-recognition-system/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqingshan/Production-animal-recognition-system/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqingshan/Production-animal-recognition-system/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqingshan/Production-animal-recognition-system/HEAD/.py -------------------------------------------------------------------------------- /MAIN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqingshan/Production-animal-recognition-system/HEAD/MAIN.py -------------------------------------------------------------------------------- /RD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqingshan/Production-animal-recognition-system/HEAD/RD.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqingshan/Production-animal-recognition-system/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/MAIN.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqingshan/Production-animal-recognition-system/HEAD/__pycache__/MAIN.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/alert.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqingshan/Production-animal-recognition-system/HEAD/__pycache__/alert.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/bye.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqingshan/Production-animal-recognition-system/HEAD/__pycache__/bye.cpython-37.pyc -------------------------------------------------------------------------------- /alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqingshan/Production-animal-recognition-system/HEAD/alert.py -------------------------------------------------------------------------------- /bye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqingshan/Production-animal-recognition-system/HEAD/bye.py -------------------------------------------------------------------------------- /myanimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luoqingshan/Production-animal-recognition-system/HEAD/myanimal.py --------------------------------------------------------------------------------