15 lines
248 B
Protocol Buffer
15 lines
248 B
Protocol Buffer
// Copyright (c) 2023, AgiBot Inc.
|
|
// All rights reserved.
|
|
|
|
syntax = "proto3";
|
|
|
|
import "header.proto";
|
|
|
|
package aimrt.protocols.sensor;
|
|
|
|
message CompressedImage {
|
|
aimrt.protocols.common.Header header = 1;
|
|
string format = 2;
|
|
bytes data = 3;
|
|
}
|