:meth: get color for drawing bounding box :return: 3-D tuple as color, default white as (255,255,255)
(self)
| 147 | return self.intersection(boxB) / float(min(self.area, boxB.area)+self.eps) |
| 148 | |
| 149 | def _getDrawColor(self): |
| 150 | """ |
| 151 | :meth: get color for drawing bounding box |
| 152 | :return: 3-D tuple as color, default white as (255,255,255) |
| 153 | """ |
| 154 | return (255, 255, 255) |
| 155 | |
| 156 | def _getDrawLine(self, bold=False): |
| 157 | """ |