|
@@ -55,7 +55,7 @@ class LocationPart(BasePart):
|
|
|
fill=fill, linestyle=linestyle,
|
|
|
**kwargs))
|
|
|
|
|
|
- ax.scatter(*self.middle, marker="x", color="white", alpha=0.8)
|
|
|
+ ax.scatter(*self.middle, marker="x", color="yellow", alpha=1.0, s=60)
|
|
|
return self._generic_op(im, ratio, op)
|
|
|
|
|
|
|
|
@@ -115,5 +115,5 @@ class BBoxPart(BasePart):
|
|
|
**kwargs
|
|
|
))
|
|
|
|
|
|
- ax.scatter(*self.middle, marker="x", color="white", alpha=0.8)
|
|
|
+ ax.scatter(*self.middle, marker="x", color="yellow", alpha=1.0, s=60)
|
|
|
|