Initial commit: Logo detection test framework

Add DETR+CLIP based logo detection library and test framework:
- DetectLogosDETR class for logo detection and matching
- Test script with margin-based and multi-ref matching methods
- Data preparation script for test database
- Documentation for API usage and test methodology
This commit is contained in:
Rick McEwen
2025-12-31 10:42:36 -05:00
commit ddccf653d2
14 changed files with 3457 additions and 0 deletions

6
main.py Normal file
View File

@ -0,0 +1,6 @@
def main():
print("Hello from logo-test!")
if __name__ == "__main__":
main()