Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

feat: introduce tracks and thumbnails fields for FaceDetectionAnnotation #508

Merged
merged 2 commits into from
Dec 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,12 @@ message NormalizedBoundingBox {

// Face detection annotation.
message FaceDetectionAnnotation {
// The face tracks with attributes.
repeated Track tracks = 3;

// The thumbnail of a person's face.
bytes thumbnail = 4;

// Feature version.
string version = 5;
}
Expand Down
12 changes: 12 additions & 0 deletions protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

78 changes: 77 additions & 1 deletion protos/protos.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions protos/protos.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 19 additions & 8 deletions src/v1/gapic_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,30 @@
"language": "typescript",
"protoPackage": "google.cloud.videointelligence.v1",
"libraryPackage": "@google-cloud/video-intelligence",
"services": {"VideoIntelligenceService": {"clients": {
"services": {
"VideoIntelligenceService": {
"clients": {
"grpc": {
"libraryClient": "VideoIntelligenceServiceClient",
"rpcs": {"AnnotateVideo": {
"methods": ["annotateVideo"]
}}
"rpcs": {
"AnnotateVideo": {
"methods": [
"annotateVideo"
]
}
}
},
"grpc-fallback": {
"libraryClient": "VideoIntelligenceServiceClient",
"rpcs": {,"AnnotateVideo": {
"methods": ["annotateVideo"]
}}
"rpcs": {
"AnnotateVideo": {
"methods": [
"annotateVideo"
]
}
}
}
}
}}
}
}
}
27 changes: 19 additions & 8 deletions src/v1beta2/gapic_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,30 @@
"language": "typescript",
"protoPackage": "google.cloud.videointelligence.v1beta2",
"libraryPackage": "@google-cloud/video-intelligence",
"services": {"VideoIntelligenceService": {"clients": {
"services": {
"VideoIntelligenceService": {
"clients": {
"grpc": {
"libraryClient": "VideoIntelligenceServiceClient",
"rpcs": {"AnnotateVideo": {
"methods": ["annotateVideo"]
}}
"rpcs": {
"AnnotateVideo": {
"methods": [
"annotateVideo"
]
}
}
},
"grpc-fallback": {
"libraryClient": "VideoIntelligenceServiceClient",
"rpcs": {,"AnnotateVideo": {
"methods": ["annotateVideo"]
}}
"rpcs": {
"AnnotateVideo": {
"methods": [
"annotateVideo"
]
}
}
}
}
}}
}
}
}
27 changes: 19 additions & 8 deletions src/v1p1beta1/gapic_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,30 @@
"language": "typescript",
"protoPackage": "google.cloud.videointelligence.v1p1beta1",
"libraryPackage": "@google-cloud/video-intelligence",
"services": {"VideoIntelligenceService": {"clients": {
"services": {
"VideoIntelligenceService": {
"clients": {
"grpc": {
"libraryClient": "VideoIntelligenceServiceClient",
"rpcs": {"AnnotateVideo": {
"methods": ["annotateVideo"]
}}
"rpcs": {
"AnnotateVideo": {
"methods": [
"annotateVideo"
]
}
}
},
"grpc-fallback": {
"libraryClient": "VideoIntelligenceServiceClient",
"rpcs": {,"AnnotateVideo": {
"methods": ["annotateVideo"]
}}
"rpcs": {
"AnnotateVideo": {
"methods": [
"annotateVideo"
]
}
}
}
}
}}
}
}
}
27 changes: 19 additions & 8 deletions src/v1p2beta1/gapic_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,30 @@
"language": "typescript",
"protoPackage": "google.cloud.videointelligence.v1p2beta1",
"libraryPackage": "@google-cloud/video-intelligence",
"services": {"VideoIntelligenceService": {"clients": {
"services": {
"VideoIntelligenceService": {
"clients": {
"grpc": {
"libraryClient": "VideoIntelligenceServiceClient",
"rpcs": {"AnnotateVideo": {
"methods": ["annotateVideo"]
}}
"rpcs": {
"AnnotateVideo": {
"methods": [
"annotateVideo"
]
}
}
},
"grpc-fallback": {
"libraryClient": "VideoIntelligenceServiceClient",
"rpcs": {,"AnnotateVideo": {
"methods": ["annotateVideo"]
}}
"rpcs": {
"AnnotateVideo": {
"methods": [
"annotateVideo"
]
}
}
}
}
}}
}
}
}
Loading