-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathAipSdk.xml
1662 lines (1576 loc) · 106 KB
/
AipSdk.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>AipSdk</name>
</assembly>
<members>
<member name="T:Baidu.Aip.AipException">
<summary>
百度AI异常类
</summary>
</member>
<member name="T:Baidu.Aip.AipHttpRequest">
<summary>
Http请求包装
</summary>
</member>
<member name="F:Baidu.Aip.AipHttpRequest.Uri">
<summary>
不带query
</summary>
</member>
<member name="M:Baidu.Aip.AipHttpRequest.GenerateDevWebRequest(System.String,System.Int32)">
<summary>
生成AI的Web请求
</summary>
<param name="token"></param>
<param name="timeout"></param>
<returns></returns>
</member>
<member name="M:Baidu.Aip.AipHttpRequest.GenerateCloudRequest(System.String,System.String,System.Int32)">
<summary>
生成云的Web请求
</summary>
<param name="ak"></param>
<param name="sk"></param>
<param name="timeout"></param>
<returns></returns>
</member>
<member name="M:Baidu.Aip.AipHttpRequest.GenerateSpeechRequest(System.Int32)">
<summary>
生成语音的Web请求
</summary>
<returns></returns>
</member>
<member name="P:Baidu.Aip.AipServiceBase.Timeout">
<summary>
in millisecond
</summary>
</member>
<member name="M:Baidu.Aip.AipServiceBase.Report(System.Collections.Generic.IEnumerable{System.Collections.Generic.Dictionary{System.String,System.Object}})">
<summary>
反馈接口
用于用户反馈模型的效果,用户必须至少反馈一个 true/false 来表示对该结果是否满意,同时可选择反馈详细的评价。
http://ai.baidu.com/docs#/ImageCensoring-API/top
</summary>
<param name="data">
demo: 具体参考文档
{
"api_url": "https://aip.baidubce.com/rest/2.0/antiporn/v1/detect",
"image_logid": 123456,
"level": 1,
"correct": 1
}
</param>
<returns></returns>
</member>
<member name="M:Baidu.Aip.Auth.OpenApiFetchToken(System.String,System.String,System.Boolean,System.Boolean)">
<summary>
获取OpenApi的Token
</summary>
<param name="ak"></param>
<param name="sk"></param>
<param name="throws">是否是否throw</param>
<param name="debugLog"></param>
<returns>成功返回token, 失败返回null</returns>
</member>
<member name="M:Baidu.Aip.Auth.CanonicalRequest(Baidu.Aip.AipHttpRequest)">
<summary>
签名 host 和 Content-Type
</summary>
<param name="aipHttpRequest"></param>
<returns></returns>
</member>
<member name="M:Baidu.Aip.Auth.Hex(System.Byte[])">
<summary>
16进制表示
</summary>
<param name="data"></param>
<returns></returns>
</member>
<member name="T:Baidu.Aip.BodyAnalysis.Body">
<summary>
人体属性分析
</summary>
</member>
<member name="M:Baidu.Aip.BodyAnalysis.Body.BodyAnalysis(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
人体关键点识别接口
对于输入的一张图片(可正常解码,且长宽比适宜),**检测图片中的所有人体,输出每个人体的21个主要关键点,包含头顶、五官、脖颈、四肢等部位,同时输出人体的坐标信息和数量**。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<!-- 对于成员“M:Baidu.Aip.BodyAnalysis.Body.BodyAttr(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.BodyAnalysis.Body.BodyNum(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<member name="M:Baidu.Aip.BodyAnalysis.Body.Gesture(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
手势识别接口
识别图片中的手势类型,返回手势名称、手势矩形框、概率分数,可识别24种常见手势,适用于手势特效、智能家居手势交互等场景**。支持的24类手势列表:拳头、OK、祈祷、作揖、作别、单手比心、点赞、Diss、我爱你、掌心向上、双手比心(3种)、数字(9种)、Rock、竖中指。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<!-- 对于成员“M:Baidu.Aip.BodyAnalysis.Body.BodySeg(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.BodyAnalysis.Body.DriverBehavior(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.BodyAnalysis.Body.BodyTracking(System.Byte[],System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<member name="T:Baidu.Aip.ContentCensor.AntiPorn">
<summary>
黄反相关
</summary>
</member>
<member name="M:Baidu.Aip.ContentCensor.AntiPorn.Detect(System.Byte[])">
<summary>
黄反识别
</summary>
<param name="image">图像字节数组</param>
<returns>识别结果</returns>
</member>
<member name="M:Baidu.Aip.ContentCensor.AntiPorn.DetectGif(System.Byte[])">
<summary>
GIF色情图像识别
</summary>
<param name="image">图像字节数组</param>
<returns>识别结果</returns>
</member>
<member name="T:Baidu.Aip.ContentCensor.AntiTerror">
<summary>
暴恐
</summary>
</member>
<member name="M:Baidu.Aip.ContentCensor.AntiTerror.Detect(System.Byte[])">
<summary>
暴恐识别
</summary>
<param name="image">图像字节数组</param>
<returns></returns>
</member>
<member name="T:Baidu.Aip.ContentCensor.ImageCensor">
<summary>
图像审核
</summary>
</member>
<member name="M:Baidu.Aip.ContentCensor.ImageCensor.UserDefined(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
图像审核接口
为用户提供色情识别、暴恐识别、政治敏感人物识别、广告识别、图像垃圾文本识别(反作弊)、恶心图像识别等一系列图像识别接口的一站式服务调用,
并且支持用户在控制台中自定义配置所有接口的报警阈值和疑似区间,上传自定义文本黑库和敏感人物名单等。
相比于组合服务接口,本接口除了支持自定义配置外,还对返回结果进行了总体的包装,按照用户在控制台中配置的规则直接返回是否合规,如果不合规则指出具体不合规的内容。
</summary>
<param name="image"></param>
<param name="options"></param>
<returns></returns>
</member>
<member name="M:Baidu.Aip.ContentCensor.ImageCensor.UserDefinedUrl(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
图像审核接口
为用户提供色情识别、暴恐识别、政治敏感人物识别、广告识别、图像垃圾文本识别(反作弊)、恶心图像识别等一系列图像识别接口的一站式服务调用,
并且支持用户在控制台中自定义配置所有接口的报警阈值和疑似区间,上传自定义文本黑库和敏感人物名单等。
相比于组合服务接口,本接口除了支持自定义配置外,还对返回结果进行了总体的包装,按照用户在控制台中配置的规则直接返回是否合规,如果不合规则指出具体不合规的内容。
</summary>
<param name="imageUrl"></param>
<param name="options"></param>
<returns></returns>
</member>
<member name="T:Baidu.Aip.ContentCensor.Solution">
<summary>
图像审核解决方案
</summary>
</member>
<member name="M:Baidu.Aip.ContentCensor.Solution.Combo(System.String,System.String[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
图像审核组合接口
</summary>
<param name="imageUrl">图片URL</param>
<param name="scenes">需要调用的服务</param>
<param name="options">
服务参数。
key为服务类型,value为json string或dictionary
</param>
<returns></returns>
</member>
<member name="M:Baidu.Aip.ContentCensor.Solution.Combo(System.Byte[],System.String[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
图像审核组合接口
</summary>
<param name="image">图像原始字节数据</param>
<param name="scenes">调用的服务列表</param>
<param name="options">额外参数</param>
<returns></returns>
</member>
<member name="M:Baidu.Aip.ContentCensor.Solution.FaceAudit(System.Byte[][],System.Nullable{System.Int64})">
<summary>
头像审核
</summary>
<param name="images"></param>
<param name="configId"></param>
<returns></returns>
</member>
<member name="M:Baidu.Aip.ContentCensor.Solution.FaceAudit(System.String[],System.Nullable{System.Int64})">
<summary>
头像审核
</summary>
<param name="images"></param>
<param name="configId"></param>
<returns></returns>
</member>
<member name="T:Baidu.Aip.ContentCensor.TextCensor">
<summary>
文本审核
</summary>
</member>
<member name="M:Baidu.Aip.ContentCensor.TextCensor.AntiSpam(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
文本审核接口
运用业界领先的深度学习技术,判断一段文本内容是否符合网络发文规范,实现自动化、智能化的文本审核。审核内容目前分为5大方向:色情文本、政治敏感、恶意推广、网络暴恐、低俗辱骂。v2正式版支持审核文本的黑白名单配置,且可通过调整阈值控制审核的松紧度标准,大幅度满足个性化文本内容审核的需求,详细配置说明详见AI官网社区说明帖。
</summary>
<param name="content">待审核的文本内容,不可为空,长度不超过20000字节</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ContentCensor.TextCensor.TextCensorUserDefined(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
内容审核文本API接口
</summary>
<param name="text"></param>
<param name="options"></param>
<returns></returns>
</member>
<member name="M:Baidu.Aip.Utils.StreamToString(System.IO.Stream,System.Text.Encoding)">
<summary>
read stream to string. Will close the steam !
</summary>
<param name="ss"></param>
<param name="enc"></param>
<returns></returns>
</member>
<member name="M:Baidu.Aip.Utils.ParseQueryString(System.Collections.Generic.Dictionary{System.String,System.String})">
<summary>
query dictionary to string
</summary>
<param name="querys"></param>
<returns></returns>
</member>
<member name="M:Baidu.Aip.Utils.UriEncode(System.String,System.Boolean)">
<summary>
UriEncode
</summary>
<param name="input"></param>
<param name="encodeSlash"></param>
<returns></returns>
</member>
<member name="M:Baidu.Aip.Utils.Md5(System.String)">
<summary>
MD5
</summary>
<param name="text"></param>
<returns></returns>
</member>
<member name="M:Baidu.Aip.Utils.StreamToBytes(System.IO.Stream)">
<summary>
Stream to bytes
</summary>
<param name="input"></param>
<returns></returns>
</member>
<member name="M:Baidu.Aip.Utils.UnixTimestamp">
<summary>
Timestamp
</summary>
<returns>timestamp in milliseconds</returns>
</member>
<member name="M:Baidu.Aip.EasyDL.EasyDL.requestImage(System.String,System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
图像类请求接口
</summary>
<param name="fullurl">请求地址</param>
<param name="image">声音数据原始二进制</param>
<param name="options">可选参数</param>
<returns></returns>
</member>
<member name="M:Baidu.Aip.EasyDL.EasyDL.requestSound(System.String,System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
声音类请求接口
</summary>
<param name="fullurl">请求地址</param>
<param name="sound">声音数据原始二进制</param>
<param name="options">可选参数</param>
<returns></returns>
</member>
<member name="T:Baidu.Aip.Face.Face">
<summary>
人脸识别
</summary>
</member>
<member name="M:Baidu.Aip.Face.Face.Match(Newtonsoft.Json.Linq.JArray)">
<summary>
人脸对比接口
两张人脸图片相似度对比:比对两张图片中人脸的相似度,并返回相似度分值
</summary>
<param name="faces">
数组成员必须是JObject,每个JObject均为string:string的key:value对,具体key如下:
image: 必须,图片信息(**总数据大小应小于10M**),图片上传方式根据image_type来判断
image_type: 必须,图片类型 **BASE64**:图片的base64值,base64编码后的图片数据,需urlencode,编码后的图片大小不超过2M;**URL**:图片的 URL地址( 可能由于网络等原因导致下载图片时间过长)**;FACE_TOKEN**: 人脸图片的唯一标识,调用人脸检测接口时,会为每个人脸图片赋予一个唯一的FACE_TOKEN,同一张图片多次检测得到的FACE_TOKEN是同一个
face_type: 可选,人脸的类型 LIVE表示生活照:通常为手机、相机拍摄的人像图片、或从网络获取的人像图片等 IDCARD表示身份证芯片照:二代身份证内置芯片中的人像照片 WATERMARK表示带水印证件照:一般为带水印的小图,如公安网小图 CERT表示证件照片:如拍摄的身份证、工卡、护照、学生证等证件图片 默认LIVE
quality_control: 可选,质量控制 NONE: 不进行控制 LOW:较低的质量要求 NORMAL: 一般的质量要求 HIGH: 较高的质量要求 默认NONE
liveness_control: 可选,活体控制 NONE: 不进行控制 LOW:较低的活体要求(高通过率 低攻击拒绝率) NORMAL: 一般的活体要求(平衡的攻击拒绝率, 通过率) HIGH: 较高的活体要求(高攻击拒绝率 低通过率) 默认NONE
</param>
<returns></returns>
</member>
<member name="M:Baidu.Aip.Face.Face.Faceverify(Newtonsoft.Json.Linq.JArray)">
<summary>
在线活体检测接口
</summary>
<param name="faces">
数组成员必须是JObject,每个JObject均为string:string的key:value对,具体key如下:
image: 必须,图片信息(**总数据大小应小于10M**),图片上传方式根据image_type来判断
image_type: 必须,图片类型 **BASE64**:图片的base64值,base64编码后的图片数据,需urlencode,编码后的图片大小不超过2M;**URL**:图片的 URL地址( 可能由于网络等原因导致下载图片时间过长)**;FACE_TOKEN**: 人脸图片的唯一标识,调用人脸检测接口时,会为每个人脸图片赋予一个唯一的FACE_TOKEN,同一张图片多次检测得到的FACE_TOKEN是同一个
face_field: 可选,包括age,beauty,expression,faceshape,gender,glasses,landmark,race,quality,facetype,parsing信息,逗号分隔,默认只返回face_token、活体数、人脸框、概率和旋转角度
</param>
<return>JObject</return>
</member>
<!-- 对于成员“M:Baidu.Aip.Face.Face.Detect(System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.Face.Face.Search(System.String,System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.Face.Face.MultiSearch(System.String,System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.Face.Face.UserAdd(System.String,System.String,System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.Face.Face.UserUpdate(System.String,System.String,System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<member name="M:Baidu.Aip.Face.Face.FaceDelete(System.String,System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
人脸删除接口
</summary>
<param name="userId">用户id(由数字、字母、下划线组成),长度限制128B</param>
<param name="groupId">用户组id(由数字、字母、下划线组成),长度限制128B</param>
<param name="faceToken">需要删除的人脸图片token,(由数字、字母、下划线组成)长度限制64B</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.Face.Face.UserGet(System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
用户信息查询接口
</summary>
<param name="userId">用户id(由数字、字母、下划线组成),长度限制128B</param>
<param name="groupId">用户组id(由数字、字母、下划线组成),长度限制128B</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.Face.Face.FaceGetlist(System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
获取用户人脸列表接口
</summary>
<param name="userId">用户id(由数字、字母、下划线组成),长度限制128B</param>
<param name="groupId">用户组id(由数字、字母、下划线组成),长度限制128B</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.Face.Face.GroupGetusers(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
获取用户列表接口
</summary>
<param name="groupId">用户组id(由数字、字母、下划线组成),长度限制128B</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>start</c>: 默认值0,起始序号 </item>
<item> <c>length</c>: 返回数量,默认值100,最大值1000 </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.Face.Face.UserCopy(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
复制用户接口
</summary>
<param name="userId">用户id(由数字、字母、下划线组成),长度限制128B</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>src_group_id</c>: 从指定组里复制信息 </item>
<item> <c>dst_group_id</c>: 需要添加用户的组id </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.Face.Face.UserDelete(System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
删除用户接口
</summary>
<param name="groupId">用户组id(由数字、字母、下划线组成),长度限制128B</param>
<param name="userId">用户id(由数字、字母、下划线组成),长度限制128B</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.Face.Face.GroupAdd(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
创建用户组接口
</summary>
<param name="groupId">用户组id(由数字、字母、下划线组成),长度限制128B</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.Face.Face.GroupDelete(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
删除用户组接口
</summary>
<param name="groupId">用户组id(由数字、字母、下划线组成),长度限制128B</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.Face.Face.GroupGetlist(System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
组列表查询接口
</summary>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>start</c>: 默认值0,起始序号 </item>
<item> <c>length</c>: 返回数量,默认值100,最大值1000 </item>
</list>
</param>
<return>JObject</return>
</member>
<!-- 对于成员“M:Baidu.Aip.Face.Face.PersonVerify(System.String,System.String,System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<member name="M:Baidu.Aip.Face.Face.VideoSessioncode(System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
语音校验码接口接口
</summary>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>appid</c>: 百度云创建应用时的唯一标识ID </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="T:Baidu.Aip.ImageClassify.ImageClassify">
<summary>
图像识别
</summary>
</member>
<member name="M:Baidu.Aip.ImageClassify.ImageClassify.AdvancedGeneral(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
通用物体识别接口
该请求用于通用物体及场景识别,即对于输入的一张图片(可正常解码,且长宽比适宜),输出图片中的多个物体及场景标签。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>baike_num</c>: 返回百科信息的结果数,默认不返回 </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageClassify.ImageClassify.DishDetect(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
菜品识别接口
该请求用于菜品识别。即对于输入的一张图片(可正常解码,且长宽比适宜),输出图片的菜品名称、卡路里信息、置信度。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>top_num</c>: 返回预测得分top结果数,默认为5 </item>
<item> <c>filter_threshold</c>: 默认0.95,可以通过该参数调节识别效果,降低非菜识别率. </item>
<item> <c>baike_num</c>: 返回百科信息的结果数,默认不返回 </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageClassify.ImageClassify.CarDetect(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
车辆识别接口
该请求用于检测一张车辆图片的具体车型。即对于输入的一张图片(可正常解码,且长宽比适宜),输出图片的车辆品牌及型号。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>top_num</c>: 返回预测得分top结果数,默认为5 </item>
<item> <c>baike_num</c>: 返回百科信息的结果数,默认不返回 </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageClassify.ImageClassify.LogoSearch(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
logo商标识别接口
该请求用于检测和识别图片中的品牌LOGO信息。即对于输入的一张图片(可正常解码,且长宽比适宜),输出图片中LOGO的名称、位置和置信度。当效果欠佳时,可以建立子库(在[控制台](https://console.bce.baidu.com/ai/#/ai/imagerecognition/overview/index)创建应用并申请建库)并通过调用logo入口接口完成自定义logo入库,提高识别效果。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>custom_lib</c>: 是否只使用自定义logo库的结果,默认false:返回自定义库+默认库的识别结果 </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageClassify.ImageClassify.LogoAdd(System.Byte[],System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
logo商标识别—添加接口
使用入库接口请先在[控制台](https://console.bce.baidu.com/ai/#/ai/imagerecognition/overview/index)创建应用并申请建库,建库成功后方可正常使用。
</summary>
<param name="image">二进制图像数据</param>
<param name="brief">brief,检索时带回。此处要传对应的name与code字段,name长度小于100B,code长度小于150B</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageClassify.ImageClassify.LogoDeleteByImage(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
logo商标识别—删除接口
使用删除接口请先在[控制台](https://console.bce.baidu.com/ai/#/ai/imagerecognition/overview/index)创建应用并申请建库,建库成功后先调用入库接口完成logo图片入库,删除接口用户在已入库的logo图片中删除图片。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageClassify.ImageClassify.LogoDeleteBySign(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
logo商标识别—删除接口
使用删除接口请先在[控制台](https://console.bce.baidu.com/ai/#/ai/imagerecognition/overview/index)创建应用并申请建库,建库成功后先调用入库接口完成logo图片入库,删除接口用户在已入库的logo图片中删除图片。
</summary>
<param name="contSign">图片签名(和image二选一,image优先级更高)</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageClassify.ImageClassify.AnimalDetect(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
动物识别接口
该请求用于识别一张图片。即对于输入的一张图片(可正常解码,且长宽比适宜),输出动物识别结果
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>top_num</c>: 返回预测得分top结果数,默认为6 </item>
<item> <c>baike_num</c>: 返回百科信息的结果数,默认不返回 </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageClassify.ImageClassify.PlantDetect(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
植物识别接口
该请求用于识别一张图片。即对于输入的一张图片(可正常解码,且长宽比适宜),输出植物识别结果。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>baike_num</c>: 返回百科信息的结果数,默认不返回 </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageClassify.ImageClassify.ObjectDetect(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
图像主体检测接口
用户向服务请求检测图像中的主体位置。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>with_face</c>: 如果检测主体是人,主体区域是否带上人脸部分,0-不带人脸区域,其他-带人脸区域,裁剪类需求推荐带人脸,检索/识别类需求推荐不带人脸。默认取1,带人脸。 </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageClassify.ImageClassify.Landmark(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
地标识别接口
该请求用于识别地标,即对于输入的一张图片(可正常解码,且长宽比适宜),输出图片中的地标识别结果。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageClassify.ImageClassify.Flower(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
花卉识别接口
检测用户上传的花卉图片,输出图片的花卉识别结果名称及对应的概率打分。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>top_num</c>: 返回预测得分top结果数,默认为5 </item>
<item> <c>baike_num</c>: 返回百科信息的结果数,默认不返回 </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageClassify.ImageClassify.Ingredient(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
食材识别接口
该请求用于识别果蔬类食材,即对于输入的一张图片(可正常解码,且长宽比适宜),输出图片中的果蔬食材结果。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>top_num</c>: 返回预测得分top结果数,如果为空或小于等于0默认为5;如果大于20默认20 </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageClassify.ImageClassify.Redwine(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
红酒识别接口
该服务用于识别红酒标签,即对于输入的一张图片(可正常解码,长宽比适宜,且酒标清晰可见),输出图片中的红酒名称、国家、产区、酒庄、类型、糖分、葡萄品种、酒品描述等信息。可识别数十万中外常见红酒。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageClassify.ImageClassify.Currency(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
货币识别接口
识别图像中的货币类型,以纸币为主,正反面均可准确识别,接口返回货币的名称、代码、面值、年份信息;可识别各类近代常见货币,如美元、欧元、英镑、法郎、澳大利亚元、俄罗斯卢布、日元、韩元、泰铢、印尼卢比等。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="T:Baidu.Aip.ImageProcess.ImageProcess">
<summary>
图像处理
</summary>
</member>
<member name="M:Baidu.Aip.ImageProcess.ImageProcess.ImageQualityEnhance(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
图像无损放大接口
输入一张图片,可以在尽量保持图像质量的条件下,将图像在长宽方向各放大两倍。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageProcess.ImageProcess.Dehaze(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
图像去雾接口
对浓雾天气下拍摄,导致细节无法辨认的图像进行去雾处理,还原更清晰真实的图像。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageProcess.ImageProcess.ContrastEnhance(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
图像对比度增强接口
调整过暗或者过亮图像的对比度,使图像更加鲜明。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageProcess.ImageProcess.Colourize(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
黑白图像上色接口
智能识别黑白图像内容并填充色彩,使黑白图像变得鲜活。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageProcess.ImageProcess.StretchRestore(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
拉伸图像恢复接口
自动识别过度拉伸的图像,将图像内容恢复成正常比例。
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="T:Baidu.Aip.ImageSearch.ImageSearch">
<summary>
图像搜索
</summary>
</member>
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.SameHqAdd(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.SameHqAddUrl(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<member name="M:Baidu.Aip.ImageSearch.ImageSearch.SameHqSearch(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
相同图检索—检索接口
完成入库后,可使用该接口实现相同图检索。**支持传入指定分类维度(具体变量tags)进行检索,返回结果支持翻页(具体变量pn、rn)。****请注意,检索接口不返回原图,仅反馈当前填写的brief信息,请调用入库接口时尽量填写可关联至本地图库的图片id或者图片url等信息。**
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>tags</c>: 1 - 65535范围内的整数,tag间以逗号分隔,最多2个tag。样例:"100,11" ;检索时可圈定分类维度进行检索 </item>
<item> <c>tag_logic</c>: 检索时tag之间的逻辑, 0:逻辑and,1:逻辑or </item>
<item> <c>pn</c>: 分页功能,起始位置,例:0。未指定分页时,默认返回前300个结果;接口返回数量最大限制1000条,例如:起始位置为900,截取条数500条,接口也只返回第900 - 1000条的结果,共计100条 </item>
<item> <c>rn</c>: 分页功能,截取条数,例:250 </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageSearch.ImageSearch.SameHqSearchUrl(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
相同图检索—检索接口
完成入库后,可使用该接口实现相同图检索。**支持传入指定分类维度(具体变量tags)进行检索,返回结果支持翻页(具体变量pn、rn)。****请注意,检索接口不返回原图,仅反馈当前填写的brief信息,请调用入库接口时尽量填写可关联至本地图库的图片id或者图片url等信息。**
</summary>
<param name="url">图片完整URL,URL长度不超过1024字节,URL对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式,当image字段存在时url字段失效</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>tags</c>: 1 - 65535范围内的整数,tag间以逗号分隔,最多2个tag。样例:"100,11" ;检索时可圈定分类维度进行检索 </item>
<item> <c>tag_logic</c>: 检索时tag之间的逻辑, 0:逻辑and,1:逻辑or </item>
<item> <c>pn</c>: 分页功能,起始位置,例:0。未指定分页时,默认返回前300个结果;接口返回数量最大限制1000条,例如:起始位置为900,截取条数500条,接口也只返回第900 - 1000条的结果,共计100条 </item>
<item> <c>rn</c>: 分页功能,截取条数,例:250 </item>
</list>
</param>
<return>JObject</return>
</member>
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.SameHqUpdate(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.SameHqUpdateUrl(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.SameHqUpdateContSign(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.SameHqDeleteByImage(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.SameHqDeleteByUrl(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.SameHqDeleteBySign(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.SimilarAdd(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.SimilarAddUrl(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<member name="M:Baidu.Aip.ImageSearch.ImageSearch.SimilarSearch(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
相似图检索—检索接口
完成入库后,可使用该接口实现相似图检索。**支持传入指定分类维度(具体变量tags)进行检索,返回结果支持翻页(具体变量pn、rn)。****请注意,检索接口不返回原图,仅反馈当前填写的brief信息,请调用入库接口时尽量填写可关联至本地图库的图片id或者图片url等信息。**
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>tags</c>: 1 - 65535范围内的整数,tag间以逗号分隔,最多2个tag。样例:"100,11" ;检索时可圈定分类维度进行检索 </item>
<item> <c>tag_logic</c>: 检索时tag之间的逻辑, 0:逻辑and,1:逻辑or </item>
<item> <c>pn</c>: 分页功能,起始位置,例:0。未指定分页时,默认返回前300个结果;接口返回数量最大限制1000条,例如:起始位置为900,截取条数500条,接口也只返回第900 - 1000条的结果,共计100条 </item>
<item> <c>rn</c>: 分页功能,截取条数,例:250 </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageSearch.ImageSearch.SimilarSearchUrl(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
相似图检索—检索接口
完成入库后,可使用该接口实现相似图检索。**支持传入指定分类维度(具体变量tags)进行检索,返回结果支持翻页(具体变量pn、rn)。****请注意,检索接口不返回原图,仅反馈当前填写的brief信息,请调用入库接口时尽量填写可关联至本地图库的图片id或者图片url等信息。**
</summary>
<param name="url">图片完整URL,URL长度不超过1024字节,URL对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式,当image字段存在时url字段失效</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>tags</c>: 1 - 65535范围内的整数,tag间以逗号分隔,最多2个tag。样例:"100,11" ;检索时可圈定分类维度进行检索 </item>
<item> <c>tag_logic</c>: 检索时tag之间的逻辑, 0:逻辑and,1:逻辑or </item>
<item> <c>pn</c>: 分页功能,起始位置,例:0。未指定分页时,默认返回前300个结果;接口返回数量最大限制1000条,例如:起始位置为900,截取条数500条,接口也只返回第900 - 1000条的结果,共计100条 </item>
<item> <c>rn</c>: 分页功能,截取条数,例:250 </item>
</list>
</param>
<return>JObject</return>
</member>
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.SimilarUpdate(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.SimilarUpdateUrl(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.SimilarUpdateContSign(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.SimilarDeleteByImage(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.SimilarDeleteByUrl(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.SimilarDeleteBySign(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.ProductAdd(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.ProductAddUrl(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<member name="M:Baidu.Aip.ImageSearch.ImageSearch.ProductSearch(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
商品检索—检索接口
完成入库后,可使用该接口实现商品检索。**支持传入指定分类维度(具体变量class_id1、class_id2)进行检索,返回结果支持翻页(具体变量pn、rn)。****请注意,检索接口不返回原图,仅反馈当前填写的brief信息,请调用入库接口时尽量填写可关联至本地图库的图片id或者图片url等信息**
</summary>
<param name="image">二进制图像数据</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>class_id1</c>: 商品分类维度1,支持1-60范围内的整数。检索时可圈定该分类维度进行检索 </item>
<item> <c>class_id2</c>: 商品分类维度1,支持1-60范围内的整数。检索时可圈定该分类维度进行检索 </item>
<item> <c>pn</c>: 分页功能,起始位置,例:0。未指定分页时,默认返回前300个结果;接口返回数量最大限制1000条,例如:起始位置为900,截取条数500条,接口也只返回第900 - 1000条的结果,共计100条 </item>
<item> <c>rn</c>: 分页功能,截取条数,例:250 </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.ImageSearch.ImageSearch.ProductSearchUrl(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
商品检索—检索接口
完成入库后,可使用该接口实现商品检索。**支持传入指定分类维度(具体变量class_id1、class_id2)进行检索,返回结果支持翻页(具体变量pn、rn)。****请注意,检索接口不返回原图,仅反馈当前填写的brief信息,请调用入库接口时尽量填写可关联至本地图库的图片id或者图片url等信息**
</summary>
<param name="url">图片完整URL,URL长度不超过1024字节,URL对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式,当image字段存在时url字段失效</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>class_id1</c>: 商品分类维度1,支持1-60范围内的整数。检索时可圈定该分类维度进行检索 </item>
<item> <c>class_id2</c>: 商品分类维度1,支持1-60范围内的整数。检索时可圈定该分类维度进行检索 </item>
<item> <c>pn</c>: 分页功能,起始位置,例:0。未指定分页时,默认返回前300个结果;接口返回数量最大限制1000条,例如:起始位置为900,截取条数500条,接口也只返回第900 - 1000条的结果,共计100条 </item>
<item> <c>rn</c>: 分页功能,截取条数,例:250 </item>
</list>
</param>
<return>JObject</return>
</member>
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.ProductUpdate(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.ProductUpdateUrl(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.ProductUpdateContSign(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.ProductDeleteByImage(System.Byte[],System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.ProductDeleteByUrl(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<!-- 对于成员“M:Baidu.Aip.ImageSearch.ImageSearch.ProductDeleteBySign(System.String,System.Collections.Generic.Dictionary{System.String,System.Object})”忽略有格式错误的 XML 注释 -->
<member name="T:Baidu.Aip.Kg.Pie">
<summary>
知识图谱
</summary>
</member>
<member name="M:Baidu.Aip.Kg.Pie.CreateTask(System.String,System.String,System.String,System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
创建任务接口
创建一个新的信息抽取任务
</summary>
<param name="name">任务名字</param>
<param name="templateContent">json string 解析模板内容</param>
<param name="inputMappingFile">抓取结果映射文件的路径</param>
<param name="outputFile">输出文件名字</param>
<param name="urlPattern">url pattern</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>limit_count</c>: 限制解析数量limit_count为0时进行全量任务,limit_count>0时只解析limit_count数量的页面 </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.Kg.Pie.UpdateTask(System.Int32,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
更新任务接口
更新任务配置,在任务重新启动后生效
</summary>
<param name="id">任务ID</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>name</c>: 任务名字 </item>
<item> <c>template_content</c>: json string 解析模板内容 </item>
<item> <c>input_mapping_file</c>: 抓取结果映射文件的路径 </item>
<item> <c>url_pattern</c>: url pattern </item>
<item> <c>output_file</c>: 输出文件名字 </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.Kg.Pie.TaskInfo(System.Int32,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
获取任务详情接口
根据任务id获取单个任务的详细信息
</summary>
<param name="id">任务ID</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.Kg.Pie.TaskQuery(System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
以分页的方式查询当前用户所有的任务信息接口
该请求用于菜品识别。即对于输入的一张图片(可正常解码,且长宽比适宜),输出图片的菜品名称、卡路里信息、置信度。
</summary>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
<item> <c>id</c>: 任务ID,精确匹配 </item>
<item> <c>name</c>: 中缀模糊匹配,abc可以匹配abc,aaabc,abcde等 </item>
<item> <c>status</c>: 要筛选的任务状态 </item>
<item> <c>page</c>: 页码 </item>
<item> <c>per_page</c>: 页码 </item>
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.Kg.Pie.TaskStart(System.Int32,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
启动任务接口
启动一个已经创建的信息抽取任务
</summary>
<param name="id">任务ID</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="M:Baidu.Aip.Kg.Pie.TaskStatus(System.Int32,System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
查询任务状态接口
查询指定的任务的最新执行状态
</summary>
<param name="id">任务ID</param>
<param name="options"> 可选参数对象,key: value都为string类型,可选的参数包括
<list type="bullet">
</list>
</param>
<return>JObject</return>
</member>
<member name="T:Baidu.Aip.Nlp.Nlp">
<summary>
自然语言处理
</summary>
</member>