File: block.py

package info (click to toggle)
dupeguru 4.3.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,604 kB
  • sloc: python: 16,846; ansic: 424; makefile: 123
file content (122 lines) | stat: -rw-r--r-- 4,409 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
# Created By: Virgil Dupras
# Created On: 2006/09/01
# Copyright 2015 Hardcoded Software (http://www.hardcoded.net)
#
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
# which should be included with this package. The terms are also available at
# http://www.gnu.org/licenses/gpl-3.0.html

from core.pe._block import NoBlocksError, DifferentBlockCountError, avgdiff, getblocks2  # NOQA

# Converted to C
# def getblock(image):
#     """Returns a 3 sized tuple containing the mean color of 'image'.
#
#     image: a PIL image or crop.
#     """
#     if image.size[0]:
#         pixel_count = image.size[0] * image.size[1]
#         red = green = blue = 0
#         for r,g,b in image.getdata():
#             red += r
#             green += g
#             blue += b
#         return (red // pixel_count, green // pixel_count, blue // pixel_count)
#     else:
#         return (0,0,0)

# This is not used anymore
# def getblocks(image,blocksize):
#     """Returns a list of blocks (3 sized tuples).
#
#     image: A PIL image to base the blocks on.
#     blocksize: The size of the blocks to be create. This is a single integer, defining
#         both width and height (blocks are square).
#     """
#     if min(image.size) < blocksize:
#         return ()
#     result = []
#     for i in xrange(image.size[1] // blocksize):
#         for j in xrange(image.size[0] // blocksize):
#             box = (blocksize * j, blocksize * i, blocksize * (j + 1), blocksize * (i + 1))
#             crop = image.crop(box)
#             result.append(getblock(crop))
#     return result

# Converted to C
# def getblocks2(image,block_count_per_side):
#     """Returns a list of blocks (3 sized tuples).
#
#     image: A PIL image to base the blocks on.
#     block_count_per_side: This integer determine the number of blocks the function will return.
#     If it is 10, for example, 100 blocks will be returns (10 width, 10 height). The blocks will not
#     necessarely cover square areas. The area covered by each block will be proportional to the image
#     itself.
#     """
#     if not image.size[0]:
#         return []
#     width,height = image.size
#     block_width = max(width // block_count_per_side,1)
#     block_height = max(height // block_count_per_side,1)
#     result = []
#     for ih in range(block_count_per_side):
#         top = min(ih * block_height, height - block_height)
#         bottom = top + block_height
#         for iw in range(block_count_per_side):
#             left = min(iw * block_width, width - block_width)
#             right = left + block_width
#             box = (left,top,right,bottom)
#             crop = image.crop(box)
#             result.append(getblock(crop))
#     return result

# Converted to C
# def diff(first, second):
#     """Returns the difference between the first block and the second.
#
#     It returns an absolute sum of the 3 differences (RGB).
#     """
#     r1, g1, b1 = first
#     r2, g2, b2 = second
#     return abs(r1 - r2) + abs(g1 - g2) + abs(b1 - b2)

# Converted to C
# def avgdiff(first, second, limit=768, min_iterations=1):
#     """Returns the average diff between first blocks and seconds.
#
#     If the result surpasses limit, limit + 1 is returned, except if less than min_iterations
#     iterations have been made in the blocks.
#     """
#     if len(first) != len(second):
#         raise DifferentBlockCountError
#     if not first:
#         raise NoBlocksError
#     count = len(first)
#     sum = 0
#     zipped = izip(xrange(1, count + 1), first, second)
#     for i, first, second in zipped:
#         sum += diff(first, second)
#         if sum > limit * i and i >= min_iterations:
#             return limit + 1
#     result = sum // count
#     if (not result) and sum:
#         result = 1
#     return result

# This is not used anymore
# def maxdiff(first,second,limit=768):
#     """Returns the max diff between first blocks and seconds.
#
#     If the result surpasses limit, the first max being over limit is returned.
#     """
#     if len(first) != len(second):
#         raise DifferentBlockCountError
#     if not first:
#         raise NoBlocksError
#     result = 0
#     zipped = zip(first,second)
#     for first,second in zipped:
#         result = max(result,diff(first,second))
#         if result > limit:
#             return result
#     return result