From 0806d4e85f8f07459268a85aff0e63ee52f28fad Mon Sep 17 00:00:00 2001 From: xeruf <27jf@pm.me> Date: Thu, 2 Dec 2021 23:30:23 +0100 Subject: [PATCH] bin: more image tests --- .local/bin/scripts/simg | 25 +++++++++++++++++++++++++ .local/bin/scripts/test-tiv | 6 +++--- 2 files changed, 28 insertions(+), 3 deletions(-) create mode 100755 .local/bin/scripts/simg diff --git a/.local/bin/scripts/simg b/.local/bin/scripts/simg new file mode 100755 index 0000000..8f48bc9 --- /dev/null +++ b/.local/bin/scripts/simg @@ -0,0 +1,25 @@ +#!/bin/sh -e +# Find and display duplicate images +script="/tmp/imagedupes-$(date +%s)" +include="/tmp/imagedupes-include" +# TODO repeat printf +# identify -format "%m %wx%h %[bit-depth]-bit %[colorspace]\n" Camera/IMG_20210423_170021.jpg Camera/IMG_20210423_173143.jpg | pr -w $COLUMNS -m -t - - - - +# https://stackoverflow.com/a/13343943 +echo 'VIEW(){ + aboutimg() { identify -precision 3 -format "%b %m %wx%h %[bit-depth]-bit %[colorspace]" "$@"; } + set -e + for arg; do + test -f "$arg" + done + spacing=$(expr \( $(tput cols) - 60 \) / 4) + printf "%${spacing}s %30s %$(expr "$spacing" "*" 2)s %-30s\n" "" "$(aboutimg "$1")" "" "$(aboutimg "$2")" + timg -g $(tput cols)x30 --center --title --grid=$# "$@" + echo -n "Remove (number)?" + read n + test -n "$n" && eval rm -v \"\$$n\" +}' >"$include" +case $1 in ([0-9][0-9]) threshold=$1; shift;; esac +findimagedupes --recurse --threshold=${threshold:-94}% --add --fingerprints "$XDG_CACHE_HOME/findimagedupes-fingerprints" \ + --script="$script" --include-file="$include" \ + "$@" $(test $# -eq 0 && echo ".") 2> >(grep -v "not fingerprinting" >&2) +sh "$script" diff --git a/.local/bin/scripts/test-tiv b/.local/bin/scripts/test-tiv index 3faa5ca..9b7da7d 100755 --- a/.local/bin/scripts/test-tiv +++ b/.local/bin/scripts/test-tiv @@ -5,7 +5,7 @@ runti() { which "$1" >/dev/null && highlight "$*" && "$@" } -cols="$(expr $(tput cols) / $1 / 4 \| 1)" -runti timg --title --grid=${cols} -g $(tput cols)x$(expr $1 \* $cols) "${@:2}" +cols="$(expr $(tput cols) / $1 / 3 \| 1)" +runti timg --rotate=exif --title --grid=${cols} -g $(tput cols)x$(expr $1 \* $cols + 4) "${@:2}" runti viu --name -h $1 "${@:2}" -runti tiv -h $1 -c $cols "${@:2}" +runti tiv -h $1 -c $(expr $cols + 1) "${@:2}"