server-json/node_modules/tfjs-image-recognition-base/build/es6/classes/BoundingBox.js
2024-11-01 08:00:42 +00:00

12 lines
No EOL
552 B
JavaScript

import { __extends } from "tslib";
import { Box } from './Box';
var BoundingBox = /** @class */ (function (_super) {
__extends(BoundingBox, _super);
function BoundingBox(left, top, right, bottom, allowNegativeDimensions) {
if (allowNegativeDimensions === void 0) { allowNegativeDimensions = false; }
return _super.call(this, { left: left, top: top, right: right, bottom: bottom }, allowNegativeDimensions) || this;
}
return BoundingBox;
}(Box));
export { BoundingBox };
//# sourceMappingURL=BoundingBox.js.map