123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- syntax = "proto3";
- package google.cloud.automl.v1beta1;
- import "google/cloud/automl/v1beta1/geometry.proto";
- import "google/protobuf/duration.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/automl/v1beta1;automl";
- option java_multiple_files = true;
- option java_package = "com.google.cloud.automl.v1beta1";
- option php_namespace = "Google\\Cloud\\AutoMl\\V1beta1";
- option ruby_package = "Google::Cloud::AutoML::V1beta1";
- message ImageObjectDetectionAnnotation {
-
- BoundingPoly bounding_box = 1;
-
-
- float score = 2;
- }
- message VideoObjectTrackingAnnotation {
-
-
-
-
-
-
-
- string instance_id = 1;
-
-
- google.protobuf.Duration time_offset = 2;
-
-
- BoundingPoly bounding_box = 3;
-
-
-
-
-
- float score = 4;
- }
- message BoundingBoxMetricsEntry {
-
- message ConfidenceMetricsEntry {
-
- float confidence_threshold = 1;
-
- float recall = 2;
-
- float precision = 3;
-
- float f1_score = 4;
- }
-
-
- float iou_threshold = 1;
-
- float mean_average_precision = 2;
-
-
-
- repeated ConfidenceMetricsEntry confidence_metrics_entries = 3;
- }
- message ImageObjectDetectionEvaluationMetrics {
-
-
- int32 evaluated_bounding_box_count = 1;
-
-
-
-
- repeated BoundingBoxMetricsEntry bounding_box_metrics_entries = 2;
-
-
- float bounding_box_mean_average_precision = 3;
- }
- message VideoObjectTrackingEvaluationMetrics {
-
- int32 evaluated_frame_count = 1;
-
-
- int32 evaluated_bounding_box_count = 2;
-
-
-
-
- repeated BoundingBoxMetricsEntry bounding_box_metrics_entries = 4;
-
-
- float bounding_box_mean_average_precision = 6;
- }
|