{"id":19110753,"url":"https://github.com/ermig1979/antiduplx","last_synced_at":"2025-04-30T20:47:22.155Z","repository":{"id":156227736,"uuid":"627952434","full_name":"ermig1979/AntiDuplX","owner":"ermig1979","description":"AntiDuplX - cross platform console utility to remove similar pictures.","archived":false,"fork":false,"pushed_at":"2024-11-05T09:59:45.000Z","size":109,"stargazers_count":27,"open_issues_count":4,"forks_count":6,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-19T08:34:00.825Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","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/ermig1979.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,"zenodo":null}},"created_at":"2023-04-14T15:04:41.000Z","updated_at":"2025-01-19T06:46:21.000Z","dependencies_parsed_at":"2023-10-17T00:01:31.870Z","dependency_job_id":"7dcf485d-816e-4e68-a649-b99eef36ce01","html_url":"https://github.com/ermig1979/AntiDuplX","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ermig1979%2FAntiDuplX","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ermig1979%2FAntiDuplX/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ermig1979%2FAntiDuplX/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ermig1979%2FAntiDuplX/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ermig1979","download_url":"https://codeload.github.com/ermig1979/AntiDuplX/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251780625,"owners_count":21642808,"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":[],"created_at":"2024-11-09T04:25:55.971Z","updated_at":"2025-04-30T20:47:22.127Z","avatar_url":"https://github.com/ermig1979.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"AntiDuplX\n=========\nAntiDuplX - cross platform command line tool to find and remove similar pictures.\n\nBuilding of AntiDuplX for Linux\n===============================\n\nOn Ubuntu 22.04.2 LTS there is following way to build AntiDuplX:\n\n\tsudo apt-get update\n\tsudo apt-get install git cmake g++ nasm\n\tgit clone -b master --recurse-submodules -v https://github.com/ermig1979/AntiDuplX.git AntiDuplX\n\tcd AntiDuplX\n\tmkdir build\n\tcmake ./prj/cmake -B ./build -DCMAKE_BUILD_TYPE=Release\n\tcmake --build ./build --config Release --parallel$(nproc)\n\nThere are addition build parameters:\n\n* `ADX_INFO` - Print build information. It is switched on by default.\n* `ADX_GET_VERSION` - Call scipt to get AntiDuplX version. It is switched on by default.\n* `ADX_USE_SYSTEM_TURBOJPEG` - Use system libjpeg-turbo. It is switched off by default.\n\nBuilding of AntiDuplX for Windows\n=================================\n\nTo build the tool for Windows 32/64 you need to use Microsoft Visual Studio 2022. \nThere are project files are in the directory: \n\n`./prj/vs2022/`\n\nUsing of AntiDuplX\n==================\n\nAntiDuplX using example:\n\n\t./AntiDuplX -id=./pict_dir_1 -id=./pict_dir_2 -ct=0.05 -of=./dupl_list.txt\n\nWhere following parameters are used:\n\n* `-id=./pict_dir_1` or `--imageDirectories=./pict_dir_1` - a path to directory with images. You can set several directories.\n* `-ct=0.05` or `--compareThreshold=0.05` - an image compare threshold. Standard deviation threshold for duplicates. By default it is equal to 0.05.\n* `-of=./dupl_list.txt` or `--outFile=./dupl_list.txt` - a file name to save list with found duplicated and damaged images. A path to image with poor quality is printed at the beginning of line.\n* `-dl='\\t'` or `--delimiter='\\t'`  - Create separators for fields when outputting files. By default,`\\t`is used as a delimiter.\n\nAlso you can use parameters:\n* `--help` or `-h` - to print this help message.\n* `--version` or `-v` - to print AntiDuplX version.\n* `--imageExtensions=.jpg` or `-ie=.jpg` - an image file extensions to search. You can set several extensions. By default this parameter is equal to (.jpg, .png).\n* `--subDirectories=1` or `-sd=1` - to search images in sub-directories. By default this parameter is turned on.\n* `--logLevel=3` or `-ll=3` - a log level. It can be: 0 - None, 1 - Error, 2 - Warning, 3 - Info, 4 - Verbose, 5 - Debug. By default this parameter is equal to 3 (Info).\n* `--performanceReport=1` or `-pr=1` - a flag to print performance report. By default this parameter is turned off.\n* `--compareSize=32x32` or `-cs=32x32` - an image compare size. It can be 16x16, 32x32 or 64x64. By default this parameter is equal to 32x32.\n* `--threadNumber=4` or `-tn=4` - a number of work threads to load and compare images. By default this parameter is equal to -1 (use of all available threads).\n* `--deleteDupls=1` or `-dd=1` - a flag to auto delete found image duplicates. By default this parameter is turned off.\n* `--deleteBads=1` or `-db=1` - a flag to auto delete found bad (damaged) images. By default this parameter is turned off.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fermig1979%2Fantiduplx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fermig1979%2Fantiduplx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fermig1979%2Fantiduplx/lists"}