com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-video-intelligence-v1p3beta1 Show documentation
Show all versions of proto-google-cloud-video-intelligence-v1p3beta1 Show documentation
PROTO library for proto-google-cloud-video-intelligence-v1p3beta1
/*
* Copyright 2024 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/v1p3beta1/video_intelligence.proto
// Protobuf Java Version: 3.25.2
package com.google.cloud.videointelligence.v1p3beta1;
/**
*
*
*
* Normalized bounding box.
* The normalized vertex coordinates are relative to the original image.
* Range: [0, 1].
*
*
* Protobuf type {@code google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox}
*/
public final class NormalizedBoundingBox extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox)
NormalizedBoundingBoxOrBuilder {
private static final long serialVersionUID = 0L;
// Use NormalizedBoundingBox.newBuilder() to construct.
private NormalizedBoundingBox(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private NormalizedBoundingBox() {}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new NormalizedBoundingBox();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.videointelligence.v1p3beta1.VideoIntelligenceServiceProto
.internal_static_google_cloud_videointelligence_v1p3beta1_NormalizedBoundingBox_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.videointelligence.v1p3beta1.VideoIntelligenceServiceProto
.internal_static_google_cloud_videointelligence_v1p3beta1_NormalizedBoundingBox_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox.class,
com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox.Builder.class);
}
public static final int LEFT_FIELD_NUMBER = 1;
private float left_ = 0F;
/**
*
*
*
* Left X coordinate.
*
*
* float left = 1;
*
* @return The left.
*/
@java.lang.Override
public float getLeft() {
return left_;
}
public static final int TOP_FIELD_NUMBER = 2;
private float top_ = 0F;
/**
*
*
*
* Top Y coordinate.
*
*
* float top = 2;
*
* @return The top.
*/
@java.lang.Override
public float getTop() {
return top_;
}
public static final int RIGHT_FIELD_NUMBER = 3;
private float right_ = 0F;
/**
*
*
*
* Right X coordinate.
*
*
* float right = 3;
*
* @return The right.
*/
@java.lang.Override
public float getRight() {
return right_;
}
public static final int BOTTOM_FIELD_NUMBER = 4;
private float bottom_ = 0F;
/**
*
*
*
* Bottom Y coordinate.
*
*
* float bottom = 4;
*
* @return The bottom.
*/
@java.lang.Override
public float getBottom() {
return bottom_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (java.lang.Float.floatToRawIntBits(left_) != 0) {
output.writeFloat(1, left_);
}
if (java.lang.Float.floatToRawIntBits(top_) != 0) {
output.writeFloat(2, top_);
}
if (java.lang.Float.floatToRawIntBits(right_) != 0) {
output.writeFloat(3, right_);
}
if (java.lang.Float.floatToRawIntBits(bottom_) != 0) {
output.writeFloat(4, bottom_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (java.lang.Float.floatToRawIntBits(left_) != 0) {
size += com.google.protobuf.CodedOutputStream.computeFloatSize(1, left_);
}
if (java.lang.Float.floatToRawIntBits(top_) != 0) {
size += com.google.protobuf.CodedOutputStream.computeFloatSize(2, top_);
}
if (java.lang.Float.floatToRawIntBits(right_) != 0) {
size += com.google.protobuf.CodedOutputStream.computeFloatSize(3, right_);
}
if (java.lang.Float.floatToRawIntBits(bottom_) != 0) {
size += com.google.protobuf.CodedOutputStream.computeFloatSize(4, bottom_);
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox)) {
return super.equals(obj);
}
com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox other =
(com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox) obj;
if (java.lang.Float.floatToIntBits(getLeft())
!= java.lang.Float.floatToIntBits(other.getLeft())) return false;
if (java.lang.Float.floatToIntBits(getTop()) != java.lang.Float.floatToIntBits(other.getTop()))
return false;
if (java.lang.Float.floatToIntBits(getRight())
!= java.lang.Float.floatToIntBits(other.getRight())) return false;
if (java.lang.Float.floatToIntBits(getBottom())
!= java.lang.Float.floatToIntBits(other.getBottom())) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + LEFT_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(getLeft());
hash = (37 * hash) + TOP_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(getTop());
hash = (37 * hash) + RIGHT_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(getRight());
hash = (37 * hash) + BOTTOM_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(getBottom());
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox parseFrom(
byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox parseFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox
parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox
parseDelimitedFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(
com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Normalized bounding box.
* The normalized vertex coordinates are relative to the original image.
* Range: [0, 1].
*
*
* Protobuf type {@code google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox)
com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBoxOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.videointelligence.v1p3beta1.VideoIntelligenceServiceProto
.internal_static_google_cloud_videointelligence_v1p3beta1_NormalizedBoundingBox_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.videointelligence.v1p3beta1.VideoIntelligenceServiceProto
.internal_static_google_cloud_videointelligence_v1p3beta1_NormalizedBoundingBox_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox.class,
com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox.Builder.class);
}
// Construct using
// com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
left_ = 0F;
top_ = 0F;
right_ = 0F;
bottom_ = 0F;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.videointelligence.v1p3beta1.VideoIntelligenceServiceProto
.internal_static_google_cloud_videointelligence_v1p3beta1_NormalizedBoundingBox_descriptor;
}
@java.lang.Override
public com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox
getDefaultInstanceForType() {
return com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox
.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox build() {
com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox buildPartial() {
com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox result =
new com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(
com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.left_ = left_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.top_ = top_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.right_ = right_;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.bottom_ = bottom_;
}
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox) {
return mergeFrom(
(com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(
com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox other) {
if (other
== com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox
.getDefaultInstance()) return this;
if (other.getLeft() != 0F) {
setLeft(other.getLeft());
}
if (other.getTop() != 0F) {
setTop(other.getTop());
}
if (other.getRight() != 0F) {
setRight(other.getRight());
}
if (other.getBottom() != 0F) {
setBottom(other.getBottom());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 13:
{
left_ = input.readFloat();
bitField0_ |= 0x00000001;
break;
} // case 13
case 21:
{
top_ = input.readFloat();
bitField0_ |= 0x00000002;
break;
} // case 21
case 29:
{
right_ = input.readFloat();
bitField0_ |= 0x00000004;
break;
} // case 29
case 37:
{
bottom_ = input.readFloat();
bitField0_ |= 0x00000008;
break;
} // case 37
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private float left_;
/**
*
*
*
* Left X coordinate.
*
*
* float left = 1;
*
* @return The left.
*/
@java.lang.Override
public float getLeft() {
return left_;
}
/**
*
*
*
* Left X coordinate.
*
*
* float left = 1;
*
* @param value The left to set.
* @return This builder for chaining.
*/
public Builder setLeft(float value) {
left_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Left X coordinate.
*
*
* float left = 1;
*
* @return This builder for chaining.
*/
public Builder clearLeft() {
bitField0_ = (bitField0_ & ~0x00000001);
left_ = 0F;
onChanged();
return this;
}
private float top_;
/**
*
*
*
* Top Y coordinate.
*
*
* float top = 2;
*
* @return The top.
*/
@java.lang.Override
public float getTop() {
return top_;
}
/**
*
*
*
* Top Y coordinate.
*
*
* float top = 2;
*
* @param value The top to set.
* @return This builder for chaining.
*/
public Builder setTop(float value) {
top_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* Top Y coordinate.
*
*
* float top = 2;
*
* @return This builder for chaining.
*/
public Builder clearTop() {
bitField0_ = (bitField0_ & ~0x00000002);
top_ = 0F;
onChanged();
return this;
}
private float right_;
/**
*
*
*
* Right X coordinate.
*
*
* float right = 3;
*
* @return The right.
*/
@java.lang.Override
public float getRight() {
return right_;
}
/**
*
*
*
* Right X coordinate.
*
*
* float right = 3;
*
* @param value The right to set.
* @return This builder for chaining.
*/
public Builder setRight(float value) {
right_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* Right X coordinate.
*
*
* float right = 3;
*
* @return This builder for chaining.
*/
public Builder clearRight() {
bitField0_ = (bitField0_ & ~0x00000004);
right_ = 0F;
onChanged();
return this;
}
private float bottom_;
/**
*
*
*
* Bottom Y coordinate.
*
*
* float bottom = 4;
*
* @return The bottom.
*/
@java.lang.Override
public float getBottom() {
return bottom_;
}
/**
*
*
*
* Bottom Y coordinate.
*
*
* float bottom = 4;
*
* @param value The bottom to set.
* @return This builder for chaining.
*/
public Builder setBottom(float value) {
bottom_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* Bottom Y coordinate.
*
*
* float bottom = 4;
*
* @return This builder for chaining.
*/
public Builder clearBottom() {
bitField0_ = (bitField0_ & ~0x00000008);
bottom_ = 0F;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox)
}
// @@protoc_insertion_point(class_scope:google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox)
private static final com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox
DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox();
}
public static com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox
getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public NormalizedBoundingBox parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.cloud.videointelligence.v1p3beta1.NormalizedBoundingBox
getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy