├── .gitattributes ├── README.md ├── __pycache__ ├── aplicar_ocr.cpython-39.pyc ├── pre_processamento.cpython-39.pyc ├── pre_processamento_1.cpython-310.pyc ├── pre_processamento_1.cpython-39.pyc ├── pre_processamento_2.cpython-310.pyc ├── pre_processamento_2.cpython-39.pyc ├── processar_contornos.cpython-39.pyc ├── processar_contornos_1.cpython-39.pyc ├── processar_contornos_2.cpython-39.pyc ├── processar_imagem.cpython-39.pyc └── utils.cpython-39.pyc ├── aplicar_ocr.py ├── artigo ├── Artigo.pdf ├── Latex.zip └── img.png ├── images ├── img1.png ├── img2.png ├── img3.png ├── img4.png ├── img5.png ├── img6.png └── img7.png ├── main.py ├── processar_contornos.py ├── processar_imagem.py ├── requirements.txt └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/aplicar_ocr.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/__pycache__/aplicar_ocr.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/pre_processamento.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/__pycache__/pre_processamento.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/pre_processamento_1.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/__pycache__/pre_processamento_1.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/pre_processamento_1.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/__pycache__/pre_processamento_1.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/pre_processamento_2.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/__pycache__/pre_processamento_2.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/pre_processamento_2.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/__pycache__/pre_processamento_2.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/processar_contornos.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/__pycache__/processar_contornos.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/processar_contornos_1.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/__pycache__/processar_contornos_1.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/processar_contornos_2.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/__pycache__/processar_contornos_2.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/processar_imagem.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/__pycache__/processar_imagem.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /aplicar_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/aplicar_ocr.py -------------------------------------------------------------------------------- /artigo/Artigo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/artigo/Artigo.pdf -------------------------------------------------------------------------------- /artigo/Latex.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/artigo/Latex.zip -------------------------------------------------------------------------------- /artigo/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/artigo/img.png -------------------------------------------------------------------------------- /images/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/images/img1.png -------------------------------------------------------------------------------- /images/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/images/img2.png -------------------------------------------------------------------------------- /images/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/images/img3.png -------------------------------------------------------------------------------- /images/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/images/img4.png -------------------------------------------------------------------------------- /images/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/images/img5.png -------------------------------------------------------------------------------- /images/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/images/img6.png -------------------------------------------------------------------------------- /images/img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/images/img7.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/main.py -------------------------------------------------------------------------------- /processar_contornos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/processar_contornos.py -------------------------------------------------------------------------------- /processar_imagem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/processar_imagem.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python==4.8.0.74 2 | pytesseract==0.3.10 3 | matplotlib==3.5.2 -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriellimmaa/reconhecimento-e-leitura-placa-carro-ptBR/HEAD/utils.py --------------------------------------------------------------------------------