remove downscaling (crashes on too many iamges)

This commit is contained in:
Daniel Løvbrøtte Olsen 2019-10-31 16:32:45 +01:00
parent e4183b986a
commit 1c9954c8ad
1 changed files with 7 additions and 5 deletions

View File

@ -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