{"id":17632889,"url":"https://github.com/jamjamjon/ilytix","last_synced_at":"2025-07-24T16:19:32.843Z","repository":{"id":224536860,"uuid":"763518063","full_name":"jamjamjon/ilytix","owner":"jamjamjon","description":"A CLI tool for images analysis: checking image integrity, images deduplication, image retrieval.","archived":false,"fork":false,"pushed_at":"2024-03-27T08:45:59.000Z","size":51,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-05T01:07:09.094Z","etag":null,"topics":["dedup","image-deduplication","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/jamjamjon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2024-02-26T12:56:34.000Z","updated_at":"2024-03-04T12:20:50.000Z","dependencies_parsed_at":"2024-10-23T07:19:24.023Z","dependency_job_id":"d57229d8-9bfe-4577-9553-63795a1a1efc","html_url":"https://github.com/jamjamjon/ilytix","commit_stats":null,"previous_names":["jamjamjon/ilytix"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/jamjamjon/ilytix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamjamjon%2Filytix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamjamjon%2Filytix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamjamjon%2Filytix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamjamjon%2Filytix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jamjamjon","download_url":"https://codeload.github.com/jamjamjon/ilytix/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamjamjon%2Filytix/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265875371,"owners_count":23842711,"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","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":["dedup","image-deduplication","rust"],"created_at":"2024-10-23T01:46:16.147Z","updated_at":"2025-07-24T16:19:32.781Z","avatar_url":"https://github.com/jamjamjon.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ilytix\nA simple command-line tool for visual image analysis, with features like checking image integrity, deduplication, and retrieval, written in Rust.\n\n# Installation\n```bash\npip install -U ilytix\n```\n\n# Getting Started\n\n## Check the integrity of images (检查图片完整性)\nIt will attempt to repair incorrect image formats whenever possible.  \n```bash\nilytix check -i ./datasets -r -o A/B/C\n```\n\n**Options:**  \n`-i \u003cPATH\u003e` Path for input image or images folder.  \n`-o \u003cPATH\u003e` Path for setting the saving results.  \n`-r`, `--recursive` Recursively traverse folders to obtain files.  \n`--mv` Store results by moving instead of copying.\n\n**And you'll see something like this**\n```bash\n✔  Source · /home/qweasd/Desktop/datasets › Folder\n✔  Recursively · true\n\n🐢 Integrity Checking [####################] 73/73 (100% | 0.00s | 00:00:00)\n✔  Found · x73\n    · Intact › x34\n    · Incorrect › x3\n    · Deprecated Or Unsupported › x36\n\n🐢 Saving[Copy] [####################] 73/73 (100% | 0.00s | 00:00:00)\n✔  Results saved to · /home/qweasd/Desktop/A/B/C\n```\n\n## Images deduplication (图片去重)\nUsed for deduplicating images within a folder.  \n\n```bash\nilytix dedup -i ./datasets -r -o A/B/C\n```\n**Options:**  \n`-i \u003cPATH\u003e` Path for images folder.  \n`-o \u003cPATH\u003e` Path for setting the saving results.  \n`-r`, `--recursive` Recursively traverse folders to obtain files.  \n`--mv` Store results by moving instead of copying.  \n`-thresh` Used to adjust image similarity threshold.  \n\n**And you'll see something like this**\n```bash\n✔  Source · /home/qweasd/Desktop/datasets › Folder\n✔  Recursively · true\n\n🐢 Building [####################] 73/73 (100% | 0.00s | 00:00:00)\n✔  Index\n    · Capacity › 73\n    · Size › 37\n    · Dimensions › 32\n\n🐢 Deduplicating [####################] 73/73 (100% | 0.00s | 00:00:00)\n✔  Found\n    · Duplicated › x17\n    · Curated › x20\n    · Deprecated Or Unsupported › x36\n\n🐢 Saving[Copy] [####################] 73/73 (100% | 0.00s | 00:00:00)\n✔  Results saved to · /home/qweasd/Desktop/A/B/C-1\n\n```\n\n## Image-Image Retrival (图片检索相似图片)\n```bash\nilytix retrive -i \u003cImages Folder\u003e -r --query \u003cQuery\u003e -v\n```\n\n**Output**\n```bash\n✔  Collection · /home/qweasd/Desktop/4test › Folder\n✔  Recursively · true\n\n🐢 Building [####################] 10,693/10,693 (100% | 0.00s | 00:00:36)\n✔  Index\n    · Capacity › 10693\n    · Size › 10677\n    · Dimensions › 32\n✔  Query · /home/qweasd/Desktop/query.png\n✔  Matched · x6\n    · /home/qweasd/Desktop/4test/clips/query (3rd copy).png\n    · /home/qweasd/Desktop/4test/clips/query (another copy).png\n    · /home/qweasd/Desktop/4test/clips/query (4th copy).png\n    · /home/qweasd/Desktop/4test/clips/query (copy).png\n    · /home/qweasd/Desktop/4test/clips/query.png\n    · /home/qweasd/Desktop/4test/clips/query (5th copy).png\n\n🐢 Saving[Copy] [####################] 6/6 (100% | 0.00s | 00:00:00)\n✔  Results saved to · /home/qweasd/Desktop/A/B\n\n```\n\n\n# TODO\n- [X]  images integrity check\n- [X]  images de-duplicate\n- [X]  image-image retrival\n- [ ]  text-image retrival\n- [ ]  image catption","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamjamjon%2Filytix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjamjamjon%2Filytix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamjamjon%2Filytix/lists"}