Increase minimum fraction coverage - makes stitching much more reliable

This commit is contained in:
Joe Knapper 2024-05-30 11:42:25 +00:00
parent c9aeabf545
commit 4ea3b5b623

View file

@ -217,7 +217,7 @@ class BackgroundDetectThing(Thing):
@thing_property @thing_property
def fraction(self) -> float: def fraction(self) -> float:
"""How much of the image needs to be not background to label as sample""" """How much of the image needs to be not background to label as sample"""
return self.thing_settings.get("fraction", 7) return self.thing_settings.get("fraction", 25)
@fraction.setter @fraction.setter
def fraction(self, value: float) -> None: def fraction(self, value: float) -> None: