-
Notifications
You must be signed in to change notification settings - Fork 558
/
image_service.proto
27 lines (20 loc) · 1.12 KB
/
image_service.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright (c) 2023 Boston Dynamics, Inc. All rights reserved.
//
// Downloading, reproducing, distributing or otherwise using the SDK Software
// is subject to the terms and conditions of the Boston Dynamics Software
// Development Kit License (20191101-BDSDK-SL).
syntax = "proto3";
package bosdyn.api;
option java_outer_classname = "ImageServiceProto";
import "bosdyn/api/image.proto";
// An Image service provides access to one or more images, for example from cameras. It
// supports querying for the list of available images provided by the service and then
// supports requesting a latest given image by source name.
service ImageService {
// Obtain the list of ImageSources for this given service.
// Note that there may be multiple ImageServices running, each with their own set of sources
// The name field keys access to individual images when calling GetImage.
rpc ListImageSources(ListImageSourcesRequest) returns (ListImageSourcesResponse) {}
// Request an image by name, with optional parameters for requesting image quality level.
rpc GetImage(GetImageRequest) returns (GetImageResponse) {}
}