You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.4 KiB
63 lines
1.4 KiB
# dedup
|
|
|
|
Photo De-Duplication
|
|
|
|
## Install Windows
|
|
```
|
|
cd dedup
|
|
python -m venv C:\Users\$env:USERNAME\Common\env_dedup
|
|
```
|
|
Check to see if C:\Users\$env:USERNAME\Common\env_dedup\Scripts OR bin folder exists in Windows...
|
|
```
|
|
& C:\Users\$env:USERNAME\Common\env_dedup\Scripts\Activate.ps1
|
|
```
|
|
If you get an error like: "running scripts is disabled on this system"
|
|
It means your PowerShell execution policy is too restrictive. You can temporarily allow scripts by running:
|
|
```
|
|
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
|
|
```
|
|
After that repeat the Activate Script command:
|
|
```
|
|
If that does not work, then TRY:
|
|
& C:\Users\$env:USERNAME\Common\env_dedup\bin\Activate.ps1
|
|
```
|
|
Here are the packages that need to be installed by pip:
|
|
```
|
|
pip install xxhash opencv-python pillow
|
|
```
|
|
|
|
## Usage Windows:
|
|
Again, verify if the folder exists Scripts or bin:
|
|
```
|
|
& C:\Users\$env:USERNAME\Common\env_dedup\Scripts\Activate.ps1
|
|
python dedup.py 0.jpg 1.jpg
|
|
```
|
|
|
|
## Windows Automated Directory use, not TESTED YET!:
|
|
```
|
|
get_dups.bat %USERPROFILE%\Pictures
|
|
```
|
|
|
|
## Install Linux
|
|
```
|
|
cd dedup
|
|
python3 -m venv myenv
|
|
source myenv/bin/activate
|
|
pip install xxhash opencv-python pillow
|
|
```
|
|
## Useage Linux:
|
|
|
|
```
|
|
cd dedup
|
|
source myenv/bin/activate
|
|
python dedup.py 0.jpg 1.jpg
|
|
```
|
|
|
|
## Linux Automated Directoy use:
|
|
```
|
|
./get_dups.sh .
|
|
OR:
|
|
./get_dups.sh $HOME/Pictures
|
|
```
|
|
|
|
[]
|
|
|