Skip to content

Commit 23d7ab5

Browse files
committed
feat(camera): update camera rtc
1 parent 8e9d048 commit 23d7ab5

File tree

3 files changed

+23
-78
lines changed

3 files changed

+23
-78
lines changed

.eslintrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
],
121121
"max-nested-callbacks": "warn",
122122
"max-params": ["error", 6],
123-
"max-statements": ["error", 50],
123+
"max-statements": ["error", 70],
124124
"max-statements-per-line": "error",
125125
"multiline-comment-style": ["warn", "separate-lines"],
126126
"new-parens": "warn",

packages/paddlejs-backend-webgl/src/ops/shader/conv2d_depthwise.ts

+3-63
Original file line numberDiff line numberDiff line change
@@ -2,66 +2,6 @@
22
* @file conv2d_depthwise
33
*/
44

5-
function mainFunc(
6-
{ origin, filter },
7-
{ strides = [], paddings = [], dilations = [], fuse_relu }
8-
) {
9-
const [stride_v = 1, stride_h = 1] = strides;
10-
const [padTop = 0, padLeft = 0] = paddings;
11-
const [dilation_v = 1, dilation_h = 1] = dilations;
12-
return `
13-
// start函数
14-
void main(void) {
15-
ivec4 oPos = getOutputTensorPos();
16-
int x = oPos.a;
17-
int c = oPos.g;
18-
int y = oPos.b;
19-
int b = oPos.r;
20-
float res = 0.0;
21-
int top = y * ${stride_v} - ${padTop};
22-
int left = x * ${stride_h} - ${padLeft};
23-
for (int fy = 0; fy < ${filter.height_shape}; fy++) {
24-
int oy = top + fy * ${dilation_v};
25-
if (oy >= ${origin.height_shape}) {
26-
break;
27-
}
28-
if (oy < 0) {
29-
continue;
30-
}
31-
for (int fx = 0; fx < ${filter.width_shape}; fx++) {
32-
int ox = left + fx * ${dilation_h};
33-
if (ox >= ${origin.width_shape}) {
34-
break;
35-
}
36-
if (ox < 0) {
37-
continue;
38-
}
39-
// b默认是0
40-
float f = getValueFromTensorPos_filter(c, 0, fy, fx);
41-
float o = getValueFromTensorPos_origin(b, c, oy, ox);
42-
res += f * o;
43-
}
44-
}
45-
float bi = getValueFromTensorPos_bias(0, 0, 0, c);
46-
res += bi;
47-
if (${fuse_relu}) {
48-
res = max(0.0, res);
49-
}
50-
setOutput(res);
51-
}
52-
`;
53-
}
54-
export default {
55-
mainFunc,
56-
params: [
57-
'strides',
58-
'paddings',
59-
'dilations',
60-
'fuse_relu'
61-
],
62-
textureFuncConf: {
63-
filter: ['getValueFromTensorPos'],
64-
origin: ['getValueFromTensorPos'],
65-
bias: ['getValueFromTensorPos']
66-
}
67-
};
5+
import conv2d from './conv2d';
6+
7+
export default conv2d;

packages/paddlejs-mediapipe/camera/src/index.ts

+19-14
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ interface cameraOption {
99
mirror?: boolean;
1010
targetCanvas?: HTMLCanvasElement;
1111
onSuccess?: () => void;
12-
onError?: NavigatorUserMediaErrorCallback;
12+
onError?: () => void;
1313
onNotSupported?: () => void;
14-
onFrame?: (canvas: HTMLCanvasElement) => void;
14+
onFrame?: (target: HTMLCanvasElement | HTMLVideoElement) => void;
1515
switchError?: () => void;
1616
videoLoaded?: () => void;
1717
}
@@ -42,8 +42,8 @@ export default class Camera {
4242
private canvas: HTMLCanvasElement;
4343
private context: CanvasRenderingContext2D;
4444
private requestAnimationId;
45-
private stream: any;
46-
private videoDevices: any;
45+
private stream: MediaStream;
46+
private videoDevices: string[];
4747
private videoDeviceId: string;
4848
private currentMode: string;
4949
private isIOS: boolean;
@@ -52,18 +52,19 @@ export default class Camera {
5252
const ua = navigator.userAgent;
5353
this.isIOS = !!ua.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
5454
this.video.width = this.options.width || this.video.clientWidth;
55-
if (this.options.height) {
56-
this.video.height = this.options.height;
57-
}
55+
this.video.height = this.options.height || this.video.clientHeight;
5856
// 枚举设备摄像头
5957
this.enumerateDevices();
6058
}
6159

6260
private handleStream() {
6361
const videoConstraints = {
6462
deviceId: { exact: this.videoDeviceId },
65-
facingMode: this.currentMode
63+
facingMode: this.currentMode,
64+
width: this.video.width,
65+
height: this.video.height
6666
};
67+
6768
if (navigator.mediaDevices && navigator.mediaDevices.getUserMedia) {
6869
navigator.mediaDevices.getUserMedia({
6970
video: videoConstraints
@@ -111,7 +112,7 @@ export default class Camera {
111112
})
112113
.catch(err => {
113114
this.options.onNotSupported && this.options.onNotSupported();
114-
console.log(err.name + ': ' + err.message);
115+
console.error(err.name + ': ' + err.message);
115116
});
116117
}
117118

@@ -122,7 +123,8 @@ export default class Camera {
122123
if ('srcObject' in this.video) {
123124
try {
124125
this.video.srcObject = this.stream;
125-
} catch (error) {
126+
}
127+
catch (error) {
126128
this.video.src = URL.createObjectURL(this.stream) || this.stream;
127129
}
128130
}
@@ -134,6 +136,7 @@ export default class Camera {
134136
else {
135137
this.video.height = this.video.clientHeight;
136138
}
139+
137140
this.options.videoLoaded && this.options.videoLoaded();
138141
this.initCanvas();
139142
});
@@ -162,16 +165,18 @@ export default class Camera {
162165

163166
private videoRequestAnimationFrame() {
164167
const drawImage = () => {
165-
this.context.drawImage(this.video, 0, 0, this.video.width, this.video.height);
166-
this.options.onFrame(this.canvas);
167-
this.requestAnimationId = window.requestAnimationFrame(drawImage);
168+
if (this.context) {
169+
this.context.drawImage(this.video, 0, 0, this.video.width, this.video.height);
170+
}
171+
this.options.onFrame(this.video);
172+
this.requestAnimationId = requestAnimationFrame(drawImage);
168173
};
169174
drawImage();
170175
}
171176

172177
public start() {
173178
this.video && this.video.play();
174-
if (!this.canvas || this.requestAnimationId) {
179+
if (this.requestAnimationId) {
175180
return;
176181
}
177182
this.videoRequestAnimationFrame();

0 commit comments

Comments
 (0)