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

com.google.cloud.videointelligence.v1.DetectedLandmarkOrBuilder Maven / Gradle / Ivy

There is a newer version: 2.50.0
Show newest version
/*
 * Copyright 2020 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/videointelligence/v1/video_intelligence.proto

package com.google.cloud.videointelligence.v1;

public interface DetectedLandmarkOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.videointelligence.v1.DetectedLandmark)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * The name of this landmark, for example, left_hand, right_shoulder.
   * 
* * string name = 1; * * @return The name. */ java.lang.String getName(); /** * * *
   * The name of this landmark, for example, left_hand, right_shoulder.
   * 
* * string name = 1; * * @return The bytes for name. */ com.google.protobuf.ByteString getNameBytes(); /** * * *
   * The 2D point of the detected landmark using the normalized image
   * coordindate system. The normalized coordinates have the range from 0 to 1.
   * 
* * .google.cloud.videointelligence.v1.NormalizedVertex point = 2; * * @return Whether the point field is set. */ boolean hasPoint(); /** * * *
   * The 2D point of the detected landmark using the normalized image
   * coordindate system. The normalized coordinates have the range from 0 to 1.
   * 
* * .google.cloud.videointelligence.v1.NormalizedVertex point = 2; * * @return The point. */ com.google.cloud.videointelligence.v1.NormalizedVertex getPoint(); /** * * *
   * The 2D point of the detected landmark using the normalized image
   * coordindate system. The normalized coordinates have the range from 0 to 1.
   * 
* * .google.cloud.videointelligence.v1.NormalizedVertex point = 2; */ com.google.cloud.videointelligence.v1.NormalizedVertexOrBuilder getPointOrBuilder(); /** * * *
   * The confidence score of the detected landmark. Range [0, 1].
   * 
* * float confidence = 3; * * @return The confidence. */ float getConfidence(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy