MtcnnBox.js 399 B

1234567891011
  1. import { __extends } from "tslib";
  2. import { Box } from '../classes';
  3. var MtcnnBox = /** @class */ (function (_super) {
  4. __extends(MtcnnBox, _super);
  5. function MtcnnBox(left, top, right, bottom) {
  6. return _super.call(this, { left: left, top: top, right: right, bottom: bottom }, true) || this;
  7. }
  8. return MtcnnBox;
  9. }(Box));
  10. export { MtcnnBox };
  11. //# sourceMappingURL=MtcnnBox.js.map