forked from boston-dynamics/spot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage_service.proto
25 lines (19 loc) · 1 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
// Copyright (c) 2019 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.
/// 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) {}
}