// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: service.opencv.proto
package com.gitee.code4fun.facerecognition.common.rpc.stub;
public final class OpenCVServiceProto {
private OpenCVServiceProto() {}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistryLite registry) {
}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistry registry) {
registerAllExtensions(
(com.google.protobuf.ExtensionRegistryLite) registry);
}
public interface OpenCVBasicRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:service.OpenCVBasicRequest)
com.google.protobuf.MessageOrBuilder {
/**
* <code>string imageCode = 1;</code>
*/
String getImageCode();
/**
* <code>string imageCode = 1;</code>
*/
com.google.protobuf.ByteString
getImageCodeBytes();
}
/**
* Protobuf type {@code service.OpenCVBasicRequest}
*/
public static final class OpenCVBasicRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:service.OpenCVBasicRequest)
OpenCVBasicRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use OpenCVBasicRequest.newBuilder() to construct.
private OpenCVBasicRequest(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
super(builder);
}
private OpenCVBasicRequest() {
imageCode_ = "";
}
@Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private OpenCVBasicRequest(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
case 10: {
String s = input.readStringRequireUtf8();
imageCode_ = s;
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return OpenCVServiceProto.internal_static_service_OpenCVBasicRequest_descriptor;
}
protected FieldAccessorTable
internalGetFieldAccessorTable() {
return OpenCVServiceProto.internal_static_service_OpenCVBasicRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
OpenCVBasicRequest.class, Builder.class);
}
public static final int IMAGECODE_FIELD_NUMBER = 1;
private volatile Object imageCode_;
/**
* <code>string imageCode = 1;</code>
*/
public String getImageCode() {
Object ref = imageCode_;
if (ref instanceof String) {
return (String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
String s = bs.toStringUtf8();
imageCode_ = s;
return s;
}
}
/**
* <code>string imageCode = 1;</code>
*/
public com.google.protobuf.ByteString
getImageCodeBytes() {
Object ref = imageCode_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(String) ref);
imageCode_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!getImageCodeBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, imageCode_);
}
unknownFields.writeTo(output);
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getImageCodeBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, imageCode_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@Override
public boolean equals(final Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof OpenCVBasicRequest)) {
return super.equals(obj);
}
OpenCVBasicRequest other = (OpenCVBasicRequest) obj;
boolean result = true;
result = result && getImageCode()
.equals(other.getImageCode());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + IMAGECODE_FIELD_NUMBER;
hash = (53 * hash) + getImageCode().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static OpenCVBasicRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static OpenCVBasicRequest parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static OpenCVBasicRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static OpenCVBasicRequest parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static OpenCVBasicRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static OpenCVBasicRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static OpenCVBasicRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static OpenCVBasicRequest parseFrom(
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
基于OpenCV与Spark的人脸识别样例源代码(期末大作业#&课程设计),含有代码注释,满分大作业资源,新手也可看懂,期末大作业、课程设计、高分必看,下载下来,简单部署,就可以使用。该项目可以作为课程设计期末大作业使用,该系统功能完善、界面美观、操作简单、功能齐全、管理便捷,具有很高的实际应用价值。 基于OpenCV与Spark的人脸识别样例源代码(期末大作业#&课程设计),含有代码注释,满分大作业资源,新手也可看懂,期末大作业、课程设计、高分必看,下载下来,简单部署,就可以使用。该项目可以作为课程设计期末大作业使用,该系统功能完善、界面美观、操作简单、功能齐全、管理便捷,具有很高的实际应用价值 基于OpenCV与Spark的人脸识别样例源代码(期末大作业#&课程设计),含有代码注释,满分大作业资源,新手也可看懂,期末大作业、课程设计、高分必看,下载下来,简单部署,就可以使用。该项目可以作为课程设计期末大作业使用,该系统功能完善、界面美观、操作简单、功能齐全、管理便捷,具有很高的实际应用价值基于OpenCV与Spark的人脸识别样例源代码(期末大作业#&课程设计),含有代码注释,
资源推荐
资源详情
资源评论
收起资源包目录
基于OpenCV与Spark的人脸识别样例源代码(期末大作业#&课程设计) (225个子文件)
bootstrap.css 134KB
bootstrap.css 118KB
bootstrap.min.css 111KB
layui.css 59KB
style.css 36KB
bootstrap-theme.css 21KB
bootstrap-theme.min.css 19KB
my-style.css 14KB
layer.css 14KB
xadmin.css 10KB
layui.mobile.css 10KB
laydate.css 7KB
flexslider.css 7KB
app.min.css 6KB
htmleaf-demo.css 6KB
component.css 5KB
normalize.css 2KB
code.css 1KB
jquery.fileupload.css 682B
font.css 505B
iconfont.eot 48KB
iconfont.eot 40KB
glyphicons-halflings-regular.eot 20KB
59.gif 10KB
22.gif 10KB
24.gif 8KB
13.gif 7KB
16.gif 7KB
39.gif 6KB
64.gif 6KB
63.gif 6KB
50.gif 6KB
loading-0.gif 6KB
4.gif 6KB
1.gif 5KB
42.gif 5KB
71.gif 5KB
21.gif 5KB
20.gif 5KB
29.gif 5KB
70.gif 4KB
5.gif 4KB
17.gif 4KB
27.gif 4KB
9.gif 4KB
44.gif 4KB
11.gif 4KB
8.gif 4KB
3.gif 4KB
23.gif 4KB
34.gif 4KB
41.gif 4KB
38.gif 4KB
65.gif 3KB
32.gif 3KB
45.gif 3KB
7.gif 3KB
12.gif 3KB
26.gif 3KB
60.gif 3KB
2.gif 3KB
40.gif 3KB
25.gif 3KB
19.gif 3KB
66.gif 3KB
18.gif 3KB
46.gif 3KB
10.gif 3KB
28.gif 3KB
51.gif 3KB
57.gif 3KB
67.gif 3KB
0.gif 3KB
48.gif 3KB
43.gif 3KB
30.gif 2KB
61.gif 2KB
33.gif 2KB
69.gif 2KB
14.gif 2KB
47.gif 2KB
36.gif 2KB
49.gif 2KB
58.gif 2KB
6.gif 2KB
54.gif 2KB
53.gif 2KB
56.gif 2KB
62.gif 2KB
31.gif 2KB
55.gif 2KB
35.gif 2KB
15.gif 2KB
loading-2.gif 2KB
37.gif 1KB
68.gif 1KB
52.gif 777B
loading-1.gif 701B
.gitignore 160B
detection_image.html 8KB
共 225 条
- 1
- 2
- 3
资源评论
yava_free
- 粉丝: 2540
- 资源: 739
下载权益
C知道特权
VIP文章
课程特权
开通VIP
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 基于Java、HTML、CSS和JavaScript的儿童玩具市场网页设计源码
- 基于Odoo框架的图书管理、待办事项、省市联动及养老机构三级联动设计源码
- 基于Java和HTML的micro-play网络有声小说播放器设计源码
- 基于Java的高考志愿填报系统后端设计源码
- 基于Java语言的在线问卷调查系统后端代码设计源码
- 基于HTML/CSS/JavaScript的睡眠健身打卡系统设计源码
- 基于Python及多语言融合的TD打工人华为算子开发挑战赛参赛源码
- 基于Java和JavaScript的HTML软件机房设计源码
- 基于jline3注解驱动的Java命令行交互库设计源码
- 基于SpringBoot框架的医疗物资审批系统管理平台设计源码
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功