{"id":19156217,"url":"https://github.com/kyegomez/odin","last_synced_at":"2025-08-19T08:07:16.517Z","repository":{"id":191806344,"uuid":"685702960","full_name":"kyegomez/Odin","owner":"kyegomez","description":"SOTA Classification at scale for UAVs, Drones, and much more","archived":false,"fork":false,"pushed_at":"2024-03-11T13:37:12.000Z","size":216,"stargazers_count":5,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-08T22:27:40.491Z","etag":null,"topics":["computer-vision","multimodal","multimodal-data","multimodal-deep-learning","swarm-intelligence"],"latest_commit_sha":null,"homepage":"https://discord.gg/qUtxnK2NMf","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kyegomez.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["kyegomez"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2023-08-31T20:17:42.000Z","updated_at":"2025-06-03T07:51:46.000Z","dependencies_parsed_at":"2024-11-09T08:35:43.851Z","dependency_job_id":"66978002-fdd9-4a82-9986-582ee3350e2b","html_url":"https://github.com/kyegomez/Odin","commit_stats":null,"previous_names":["kyegomez/odin"],"tags_count":0,"template":false,"template_full_name":"kyegomez/Paper-Implementation-Template","purl":"pkg:github/kyegomez/Odin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyegomez%2FOdin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyegomez%2FOdin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyegomez%2FOdin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyegomez%2FOdin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kyegomez","download_url":"https://codeload.github.com/kyegomez/Odin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyegomez%2FOdin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271121168,"owners_count":24702723,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-19T02:00:09.176Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["computer-vision","multimodal","multimodal-data","multimodal-deep-learning","swarm-intelligence"],"created_at":"2024-11-09T08:33:38.228Z","updated_at":"2025-08-19T08:07:16.489Z","avatar_url":"https://github.com/kyegomez.png","language":"Python","funding_links":["https://github.com/sponsors/kyegomez"],"categories":[],"sub_categories":[],"readme":"[![Multi-Modality](agorabanner.png)](https://discord.gg/qUtxnK2NMf)\n\n# Odin\nSuper Fast and super cheap object detection at massive scale in less than 10 lines of code!\n\n# Appreciation\n* Lucidrains\n* Agorians\n\n\n# Install\n`pip install vodin`\n\n# Usage\n\nHere are three examples demonstrating the usage of the `Odin` class from your provided code:\n\n**Example 1: Basic Usage**\n\n```python\n# Import the necessary modules and classes\nfrom odin import Odin\n\n# Initialize the Odin object with paths and thresholds\nodin = Odin(\n    source_weights_path=\"yolo.weights\",\n    source_video_path=\"input_video.mp4\",\n    target_video_path=\"output_video.mp4\",\n    confidence_threshold=0.3,\n    iou_threshold=0.7\n)\n\n# Run the object to process the video\nodin.run()\n```\n\n**Example 2: Custom Parameters**\n\n```python\n# Import the necessary modules and classes\nfrom odin import Odin\n\n# Initialize the Odin object with custom parameters\nodin = Odin(\n    source_weights_path=\"custom_yolo.weights\",\n    source_video_path=\"input_video.mp4\",\n    target_video_path=\"output_video.mp4\",\n    confidence_threshold=0.5,\n    iou_threshold=0.6\n)\n\n# Run the object to process the video\nodin.run()\n```\n\n**Example 3: Advanced Usage**\n\n```python\n# Import the necessary modules and classes\nfrom odin import Odin\n\n# Initialize the Odin object with paths and thresholds\nodin = Odin(\n    source_weights_path=\"yolo.weights\",\n    source_video_path=\"input_video.mp4\",\n    target_video_path=\"output_video.mp4\",\n    confidence_threshold=0.3,\n    iou_threshold=0.7\n)\n\n# Customize further configurations if needed\nodin.tracker.set_max_distance(50)\nodin.box_annotator.set_box_color((0, 255, 0))\nodin.model.set_device(\"cuda\")\n\n# Run the object to process the video\nodin.run()\n```\n\n# Architecture\n* [Odin utilizes YoloV7, weights can be downloaded here](https://drive.google.com/file/d/1yEYFq1jCIpklofMMhuqQKwyTfvj1hLQ1/view)\n\n# License\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkyegomez%2Fodin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkyegomez%2Fodin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkyegomez%2Fodin/lists"}