Base Hasher
Bases: ABC
Abstract base class for image hashing strategies in DataForge.
This class provides the core logic for generating image hashes in parallel, managing incremental caching, and performing fast duplicate detection using vectorized NumPy operations.
Attributes:
| Name | Type | Description |
|---|---|---|
settings |
AppSettings
|
Global configuration for paths and parameters. |
logger |
Logger
|
Logger instance for hashing operations. |
hash_type |
str
|
The name of the hashing algorithm (e.g., 'dhash'). |
core_size |
int
|
The resolution used for image resizing. |
threshold |
int
|
The distance threshold in bits for duplicate detection. |
cache_io |
CacheIO
|
Tool for saving and loading hash data from disk. |
n_jobs |
int
|
Number of parallel processes for hash computation. |
Source code in tools/comparer/img_comparer/hasher/base_hasher.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 | |
core_size
property
writable
int: The resolution used for resizing images before hashing.
n_jobs
property
writable
int: The number of parallel worker processes.
threshold
property
writable
int: The current distance threshold measured in bits.
__init__(settings, cache_io=None)
Initializes the hasher with project settings and cache handler.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
settings
|
AppSettings
|
Configuration containing defaults and CLI arguments. |
required |
cache_io
|
Optional[CacheIO]
|
Instance for cache persistence. If None, a new CacheIO instance is created. |
None
|
Source code in tools/comparer/img_comparer/hasher/base_hasher.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | |
compute_hash(image_path, core_size)
abstractmethod
staticmethod
Abstract method to calculate a hash for a single image.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image_path
|
Path
|
Path to the image file. |
required |
core_size
|
int
|
Resolution for resizing before hashing. |
required |
Returns:
| Type | Description |
|---|---|
ndarray
|
np.ndarray: A 1D boolean array representing the image hash. |
Source code in tools/comparer/img_comparer/hasher/base_hasher.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 | |
find_duplicates(hashmap)
Finds similar images using vectorized Hamming distance comparison.
This method converts the hash map into a matrix and compares all images against each other. It optimizes the search by skipping already identified duplicates.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
hashmap
|
Dict[Path, ndarray]
|
Dictionary of paths and hashes. |
required |
Returns:
| Type | Description |
|---|---|
List[Path]
|
List[Path]: A list of file paths identified as duplicates. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If hashes in the map have different lengths. |
Source code in tools/comparer/img_comparer/hasher/base_hasher.py
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 | |
get_hashmap(image_paths)
Orchestrates the process of obtaining hashes for the entire directory.
It attempts to load data from cache, validates it against the current files, and computes any missing hashes in parallel.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image_paths
|
Tuple[Path]
|
All image paths to be processed. |
required |
Returns:
| Type | Description |
|---|---|
Dict[Path, ndarray]
|
Dict[Path, np.ndarray]: A complete dictionary of paths and their hashes. |
Source code in tools/comparer/img_comparer/hasher/base_hasher.py
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | |
update_hashes(image_paths)
Computes hashes for a list of images using multiple CPU cores.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image_paths
|
Tuple[Path, ...]
|
List of images that need new hashes. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
list |
list
|
A list of generated NumPy arrays (hashes). |
Source code in tools/comparer/img_comparer/hasher/base_hasher.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | |
validate_hash_map(image_paths, hash_map)
Synchronizes the loaded cache with the current files in the directory.
It removes hashes for files that no longer exist and triggers re-calculation for new files found on the disk.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image_paths
|
Tuple[Path]
|
Current list of image paths from the folder. |
required |
hash_map
|
Dict[Path, ndarray]
|
The hash map loaded from cache. |
required |
Returns:
| Type | Description |
|---|---|
Tuple[bool, Dict[Path, ndarray]]
|
Tuple[bool, Dict[Path, np.ndarray]]: A tuple containing a sync status (True if matches 1:1) and the updated hash map. |
Source code in tools/comparer/img_comparer/hasher/base_hasher.py
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | |