remove downscaling (crashes on too many iamges)
This commit is contained in:
parent
e4183b986a
commit
1c9954c8ad
|
@ -1,4 +1,3 @@
|
|||
#!/usr/bin/env python
|
||||
"""
|
||||
Matplotlib based photo ranking system using the Elo rating system.
|
||||
|
||||
|
@ -93,7 +92,7 @@ class Photo:
|
|||
"""
|
||||
Reads the image, performs rotation, and downsamples.
|
||||
"""
|
||||
|
||||
print(self._filename)
|
||||
#----------------------------------------------------------------------
|
||||
# read image
|
||||
|
||||
|
@ -112,13 +111,16 @@ class Photo:
|
|||
# dump downsample, just discard columns-n-rows
|
||||
|
||||
M, N = data.shape[0:2]
|
||||
print(M)
|
||||
print(N)
|
||||
|
||||
MN = max([M,N])
|
||||
print(MN)
|
||||
|
||||
step = int(MN / 800)
|
||||
if step == 0: step = 1
|
||||
|
||||
data = data[ 0:M:step, 0:N:step, :]
|
||||
#data = data[ 0:M:step, 0:N:step, :]
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
# rotate
|
||||
|
@ -462,9 +464,9 @@ better photo.
|
|||
|
||||
ranked_list = table.get_ranked_list()
|
||||
|
||||
heading_fmt = "%4d %4.0f %7d %7.2f %s\n"
|
||||
heading_fmt = "%4d %4.0f %7d %7.2f %s\n"
|
||||
|
||||
heading = "Rank Score Matches Win % Filename\n"
|
||||
heading = "Rank Score Matches Win % Filename\n"
|
||||
|
||||
fd.write(heading)
|
||||
|
||||
|
|
Loading…
Reference in New Issue