All Downloads are FREE. Search and download functionalities are using the official Maven repository.

grpc-classifier.1.3.1.source-code.classification.proto Maven / Gradle / Ivy

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;
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy