All Projects → Baidu-AIP → Java Sdk

Baidu-AIP / Java Sdk

Licence: apache-2.0
百度AI开放平台 Java SDK

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Java Sdk

Nodejs Sdk
百度AI开放平台 Node.js SDK
Stars: ✭ 222 (-55.15%)
Mutual labels:  ai, baidu, sdk
Php Sdk
百度AI开放平台 PHP SDK
Stars: ✭ 81 (-83.64%)
Mutual labels:  ai, baidu, sdk
Dotnet Sdk
百度AI开放平台 .Net SDK
Stars: ✭ 312 (-36.97%)
Mutual labels:  ai, baidu, sdk
Python Sdk
百度AI开放平台 Python SDK
Stars: ✭ 285 (-42.42%)
Mutual labels:  ai, baidu, sdk
Clarifai Apple Sdk
Artificial Intelligence with a Vision
Stars: ✭ 46 (-90.71%)
Mutual labels:  ai, sdk
Alexa Skills Kit Sdk For Java
The Alexa Skills Kit SDK for Java helps you get a skill up and running quickly, letting you focus on skill logic instead of boilerplate code.
Stars: ✭ 758 (+53.13%)
Mutual labels:  ai, sdk
Ultimatemrz Sdk
Machine-readable zone/travel document (MRZ / MRTD) detector and recognizer using deep learning
Stars: ✭ 66 (-86.67%)
Mutual labels:  ai, sdk
Baidu Ai Go Sdk
百度AI服务go语言sdk
Stars: ✭ 124 (-74.95%)
Mutual labels:  ai, baidu
Amadeus Node
Node library for the Amadeus Self-Service travel APIs
Stars: ✭ 91 (-81.62%)
Mutual labels:  ai, sdk
Ai
像查询数据库一样优雅调用人工智能API
Stars: ✭ 147 (-70.3%)
Mutual labels:  ai, baidu
Kendryte Freertos Sdk
Kendryte K210 SDK with FreeRTOS
Stars: ✭ 164 (-66.87%)
Mutual labels:  ai, sdk
Hyperdash Sdk Py
Official Python SDK for Hyperdash
Stars: ✭ 190 (-61.62%)
Mutual labels:  ai, sdk
Java Markdown Generator
Java library to generate markdown
Stars: ✭ 159 (-67.88%)
Mutual labels:  jar, maven
Aliyun Openapi Java Sdk
Alibaba Cloud SDK for Java
Stars: ✭ 1,170 (+136.36%)
Mutual labels:  sdk, maven
Xiaoai
a tiny&smart AI & Repo for work for AI Survey百度云资源持续更新中,欢迎点赞star Min's blog 欢迎访问我的博客主页!(Welcome to my blog website !)https://liweimin1996.github.io/
Stars: ✭ 111 (-77.58%)
Mutual labels:  ai, baidu
Smartopencv
🔥 🔥 🔥 SmartOpenCV是一个OpenCV在Android端的增强库,解决了OpenCV Android SDK在图像预览方面存在的诸多问题,且无需修改OpenCV SDK源码,与OpenCV的SDK解耦
Stars: ✭ 1,869 (+277.58%)
Mutual labels:  ai, sdk
GradleMavenPush
Helper to upload Gradle Android Artifacts, Gradle Java Artifacts and Gradle Kotlin Artifacts to Maven repositories (JCenter, Maven Central, Corporate staging/snapshot servers and local Maven repositories).
Stars: ✭ 21 (-95.76%)
Mutual labels:  maven, jar
Godot 2d Space Game
A 2D space exploration and mining game made with Godot and our AI framework
Stars: ✭ 462 (-6.67%)
Mutual labels:  ai
Xray Oxygen
🌀 Oxygen Engine 2.0. [Preview] Discord: https://discord.gg/P3aMf66
Stars: ✭ 481 (-2.83%)
Mutual labels:  ai
Cookiecutter Data Science
A logical, reasonably standardized, but flexible project structure for doing and sharing data science work.
Stars: ✭ 5,271 (+964.85%)
Mutual labels:  ai

安装Java SDK

Java SDK主要目录结构

com.baidu.aip
       ├── auth                                //签名相关类
       ├── http                                //Http通信相关类
       ├── client                              //公用类
       ├── exception                           //exception类
       ├── ocr
       │       └── AipOcr                      //OCR服务入口
       ├── face
       │       └── AipFace                     //人脸服务入口
       ├── imagecensor
       │       └── AipImageCensor              //图像审核服务入口
       ├── imageclassify
       │       └── AipImageClassify            //图像识别服务入口
       ├── imageprocess
       │       └── AipImageProcess             //图像处理服务入口
       ├── nlp
       │       └── AipNlp                      //Nlp服务入口
       ├── kg
       │       └── AipKnowledgeGraphic         //知识图谱服务入口
       ├── speech
       │       └── AipSpeech                   //语音服务入口
       └── util                                //工具类

支持 JAVA版本:1.7+

直接使用JAR包步骤如下:

1.在官方网站下载Java SDK压缩工具包。

2.将下载的aip-java-sdk-version.zip解压后,复制到工程文件夹中。

3.在Eclipse右键“工程 -> Properties -> Java Build Path -> Add JARs”。

4.添加SDK工具包aip-java-sdk-version.jar和第三方依赖工具包json-20160810.jar

其中,version为版本号,添加完成后,用户就可以在工程中使用OCR Java SDK。

使用maven依赖:

添加以下依赖:

<dependency>
    <groupId>com.baidu.aip</groupId>
    <artifactId>java-sdk</artifactId>
    <version>4.8.0</version>
</dependency>

详细使用文档

参考百度AI开放平台官方文档

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].