Pattern.get_bounds() should return None if it's empty
s
This commit is contained in:
parent
49982f1207
commit
b5bd7cd9c8
@ -9,6 +9,7 @@ import pickle
|
|||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
|
|
||||||
import numpy
|
import numpy
|
||||||
|
from numpy import inf
|
||||||
# .visualize imports matplotlib and matplotlib.collections
|
# .visualize imports matplotlib and matplotlib.collections
|
||||||
|
|
||||||
from .subpattern import SubPattern
|
from .subpattern import SubPattern
|
||||||
@ -387,14 +388,18 @@ class Pattern:
|
|||||||
if not entries:
|
if not entries:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
init_bounds = entries[0].get_bounds()
|
min_bounds = numpy.array((+inf, +inf))
|
||||||
min_bounds = init_bounds[0, :]
|
max_bounds = numpy.array((+inf, +inf))
|
||||||
max_bounds = init_bounds[1, :]
|
for entry in entries:
|
||||||
for entry in entries[1:]:
|
|
||||||
bounds = entry.get_bounds()
|
bounds = entry.get_bounds()
|
||||||
|
if bounds is None:
|
||||||
|
continue
|
||||||
min_bounds = numpy.minimum(min_bounds, bounds[0, :])
|
min_bounds = numpy.minimum(min_bounds, bounds[0, :])
|
||||||
max_bounds = numpy.maximum(max_bounds, bounds[1, :])
|
max_bounds = numpy.maximum(max_bounds, bounds[1, :])
|
||||||
return numpy.vstack((min_bounds, max_bounds))
|
if (max_bounds < min_bounds).any():
|
||||||
|
return None
|
||||||
|
else:
|
||||||
|
return numpy.vstack((min_bounds, max_bounds))
|
||||||
|
|
||||||
def flatten(self) -> 'Pattern':
|
def flatten(self) -> 'Pattern':
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user