Spaces:
Sleeping
Sleeping
File size: 533 Bytes
c7e9899 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | [project]
name = "template-matching"
version = "0.1.0"
description = "Interactive template matching demo using OpenCV and Streamlit"
readme = "README.md"
requires-python = ">=3.11.9"
dependencies = [
"opencv-python-headless>=4.8.0",
"streamlit>=1.28.0",
"streamlit-image-coordinates>=0.1.6",
"pillow>=10.0.0",
"numpy>=1.24.0",
"huggingface-hub>=0.17.0",
]
[tool.pylint."MESSAGES CONTROL"]
disable = ["c-extension-no-member"]
[tool.pyright]
reportGeneralTypeIssues = false
reportOptionalMemberAccess = false
|