grpc-classifier.1.3.1.source-code.classification.proto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grpc-classifier Show documentation
Show all versions of grpc-classifier Show documentation
GRPC classification model for the classification problem
The newest version!
syntax = "proto3";
option java_multiple_files = true;
option java_package = "com.vision4j.classification.grpc";
option java_outer_classname = "ClassificationProto";
option objc_class_prefix = "HLW";
package classification;
service Classification {
rpc Predict (Image) returns (Prediction) {}
}
message Prediction {
int32 index = 1;
}
message Image {
bytes image_data = 1;
int32 width = 2;
int32 height = 3;
int32 channels = 4;
}