Increase minimum fraction coverage - makes stitching much more reliable
This commit is contained in:
parent
c9aeabf545
commit
4ea3b5b623
1 changed files with 1 additions and 1 deletions
|
|
@ -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:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue