UNPKG

5.8 kBJavaScriptView Raw
1"use strict";
2/**
3 * @license
4 * Copyright 2018 Google LLC. All Rights Reserved.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 * =============================================================================
17 */
18var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
19 return new (P || (P = Promise))(function (resolve, reject) {
20 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
21 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
22 function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
23 step((generator = generator.apply(thisArg, _arguments || [])).next());
24 });
25};
26var __generator = (this && this.__generator) || function (thisArg, body) {
27 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
28 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
29 function verb(n) { return function (v) { return step([n, v]); }; }
30 function step(op) {
31 if (f) throw new TypeError("Generator is already executing.");
32 while (_) try {
33 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
34 if (y = 0, t) op = [op[0] & 2, t.value];
35 switch (op[0]) {
36 case 0: case 1: t = op; break;
37 case 4: _.label++; return { value: op[1], done: false };
38 case 5: _.label++; y = op[1]; op = [0]; continue;
39 case 7: op = _.ops.pop(); _.trys.pop(); continue;
40 default:
41 if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
42 if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
43 if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
44 if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
45 if (t[2]) _.ops.pop();
46 _.trys.pop(); continue;
47 }
48 op = body.call(thisArg, _);
49 } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
50 if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
51 }
52};
53var _this = this;
54Object.defineProperty(exports, "__esModule", { value: true });
55var tf = require("@tensorflow/tfjs");
56var MockContext = /** @class */ (function () {
57 function MockContext() {
58 }
59 MockContext.prototype.getImageData = function (x, y, width, height) {
60 var data = new Uint8ClampedArray(width * height * 4);
61 for (var i = 0; i < data.length; ++i) {
62 data[i] = i + 1;
63 }
64 return { data: data };
65 };
66 return MockContext;
67}());
68var MockCanvas = /** @class */ (function () {
69 function MockCanvas(width, height) {
70 this.width = width;
71 this.height = height;
72 }
73 MockCanvas.prototype.getContext = function (type) {
74 return new MockContext();
75 };
76 return MockCanvas;
77}());
78describe('tf.browser.fromPixels with polyfills', function () {
79 it('accepts a canvas-like element', function () { return __awaiter(_this, void 0, void 0, function () {
80 var c, t, _a, _b;
81 return __generator(this, function (_c) {
82 switch (_c.label) {
83 case 0:
84 c = new MockCanvas(2, 2);
85 t = tf.browser.fromPixels(c);
86 expect(t.dtype).toBe('int32');
87 expect(t.shape).toEqual([2, 2, 3]);
88 _b = (_a = tf.test_util).expectArraysEqual;
89 return [4 /*yield*/, t.data()];
90 case 1:
91 _b.apply(_a, [_c.sent(), [1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 14, 15]]);
92 return [2 /*return*/];
93 }
94 });
95 }); });
96 it('accepts a canvas-like element, numChannels=4', function () { return __awaiter(_this, void 0, void 0, function () {
97 var c, t, _a, _b;
98 return __generator(this, function (_c) {
99 switch (_c.label) {
100 case 0:
101 c = new MockCanvas(2, 2);
102 t = tf.browser.fromPixels(c, 4);
103 expect(t.dtype).toBe('int32');
104 expect(t.shape).toEqual([2, 2, 4]);
105 _b = (_a = tf.test_util).expectArraysEqual;
106 return [4 /*yield*/, t.data()];
107 case 1:
108 _b.apply(_a, [_c.sent(),
109 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]]);
110 return [2 /*return*/];
111 }
112 });
113 }); });
114 it('errors when passed a non-canvas object', function () {
115 var c = 5;
116 // tslint:disable-next-line:no-any
117 expect(function () { return tf.browser.fromPixels(c); })
118 .toThrowError(/pixels passed to tf\.browser\.fromPixels\(\) must be either an/);
119 });
120});