Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(200)

Side by Side Diff: third_party/WebKit/public/platform/modules/shapedetection/shapedetection.mojom

Issue 2369693002: Shapedetection module: Blink side implementation (Closed)
Patch Set: Refactor code into getSharedBufferHandle() && Update *-expected.txt Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 module blink.mojom;
6
7 // BoundingBox is defined with its upper-left point, width and height.
8 struct BoundingBox {
9 double x;
10 double y;
11 double width;
12 double height;
13 };
14
15 interface ShapeDetection {
mcasas 2016/09/30 02:14:59 Add a comment with the link to the Spec URL. Same
xianglu 2016/09/30 16:37:41 Done.
16 DetectFace(handle<shared_buffer> frame_data, uint32 width, uint32 height) => (array<BoundingBox> boundingBoxes);
17 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698