| 249 | } |
| 250 | |
| 251 | void File::appendRect(const QRectF &rect) |
| 252 | { |
| 253 | QList<QVariant> newRects = m_metadata["Rects"].toList(); |
| 254 | newRects.append(rect); |
| 255 | m_metadata["Rects"] = newRects; |
| 256 | } |
| 257 | |
| 258 | void File::appendRect(const cv::Rect &rect) |
| 259 | { |
no test coverage detected