mirror of
https://gitee.com/mymagicpower/AIAS.git
synced 2024-12-02 04:08:21 +08:00
257 lines
9.6 KiB
XML
257 lines
9.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<!--
|
||
~ Licensed to the Apache Software Foundation (ASF) under one
|
||
~ or more contributor license agreements. See the NOTICE file
|
||
~ distributed with this work for additional information
|
||
~ regarding copyright ownership. The ASF licenses this file
|
||
~ to you 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
|
||
~
|
||
~ http://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.
|
||
-->
|
||
|
||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<groupId>aias</groupId>
|
||
<artifactId>ocr_led_sdk</artifactId>
|
||
<version>0.23.0</version>
|
||
|
||
<properties>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
<maven.compiler.source>1.8</maven.compiler.source>
|
||
<maven.compiler.target>1.8</maven.compiler.target>
|
||
<djl.version>0.23.0</djl.version>
|
||
<javacv.version>1.5.8</javacv.version>
|
||
<javacv.ffmpeg.version>5.1.2-1.5.8</javacv.ffmpeg.version>
|
||
<javacpp.platform.macosx-x86_64>macosx-x86_64</javacpp.platform.macosx-x86_64>
|
||
<javacpp.platform.linux-x86>linux-x86</javacpp.platform.linux-x86>
|
||
<javacpp.platform.linux-x86_64>linux-x86_64</javacpp.platform.linux-x86_64>
|
||
<javacpp.platform.windows-x86>windows-x86</javacpp.platform.windows-x86>
|
||
<javacpp.platform.windows-x86_64>windows-x86_64</javacpp.platform.windows-x86_64>
|
||
</properties>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<version>2.2.6.RELEASE</version>
|
||
<configuration>
|
||
<mainClass>me.aias.ocr.OcrV3RecognitionExample</mainClass>
|
||
<layout>ZIP</layout>
|
||
</configuration>
|
||
<executions>
|
||
<execution>
|
||
<goals>
|
||
<goal>repackage</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
<!-- <build>-->
|
||
<!-- <plugins>-->
|
||
<!-- <plugin>-->
|
||
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
||
<!-- <artifactId>maven-compiler-plugin</artifactId>-->
|
||
<!-- <configuration>-->
|
||
<!-- <source>8</source>-->
|
||
<!-- <target>8</target>-->
|
||
<!-- </configuration>-->
|
||
<!-- <version>3.8.1</version>-->
|
||
<!-- </plugin>-->
|
||
<!-- </plugins>-->
|
||
<!-- </build>-->
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>commons-cli</groupId>
|
||
<artifactId>commons-cli</artifactId>
|
||
<version>1.4</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.logging.log4j</groupId>
|
||
<artifactId>log4j-slf4j-impl</artifactId>
|
||
<version>2.17.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.google.code.gson</groupId>
|
||
<artifactId>gson</artifactId>
|
||
<version>2.8.5</version>
|
||
</dependency>
|
||
<!-- 服务器端推理引擎 -->
|
||
<dependency>
|
||
<groupId>ai.djl</groupId>
|
||
<artifactId>api</artifactId>
|
||
<version>${djl.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>ai.djl</groupId>
|
||
<artifactId>basicdataset</artifactId>
|
||
<version>${djl.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>ai.djl</groupId>
|
||
<artifactId>model-zoo</artifactId>
|
||
<version>${djl.version}</version>
|
||
</dependency>
|
||
<!-- <!– MXNet –>-->
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>ai.djl.mxnet</groupId>-->
|
||
<!-- <artifactId>mxnet-engine</artifactId>-->
|
||
<!-- <version>${djl.version}</version>-->
|
||
<!-- </dependency>-->
|
||
|
||
<dependency>
|
||
<groupId>ai.djl.pytorch</groupId>
|
||
<artifactId>pytorch-engine</artifactId>
|
||
<version>${djl.version}</version>
|
||
</dependency>
|
||
|
||
<!-- ONNX -->
|
||
<dependency>
|
||
<groupId>ai.djl.onnxruntime</groupId>
|
||
<artifactId>onnxruntime-engine</artifactId>
|
||
<version>${djl.version}</version>
|
||
</dependency>
|
||
|
||
<!-- PaddlePaddle 表格识别,不支持onnx转换,所以仍然使用 paddle格式-->
|
||
<dependency>
|
||
<groupId>ai.djl.paddlepaddle</groupId>
|
||
<artifactId>paddlepaddle-engine</artifactId>
|
||
<version>${djl.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>ai.djl.paddlepaddle</groupId>
|
||
<artifactId>paddlepaddle-model-zoo</artifactId>
|
||
<version>${djl.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>ai.djl.opencv</groupId>
|
||
<artifactId>opencv</artifactId>
|
||
<version>${djl.version}</version>
|
||
</dependency>
|
||
|
||
<!-- java cv -->
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>org.bytedeco</groupId>-->
|
||
<!-- <artifactId>javacv-platform</artifactId>-->
|
||
<!-- <version>1.5.7</version>-->
|
||
<!-- </dependency>-->
|
||
<!--javacv截取视频帧-->
|
||
<dependency>
|
||
<groupId>org.bytedeco</groupId>
|
||
<artifactId>javacv</artifactId>
|
||
<version>${javacv.version}</version>
|
||
</dependency>
|
||
|
||
<!--MacOS平台-->
|
||
<dependency>
|
||
<groupId>org.bytedeco</groupId>
|
||
<artifactId>javacpp</artifactId>
|
||
<version>${javacv.version}</version>
|
||
<classifier>${javacpp.platform.macosx-x86_64}</classifier>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.bytedeco</groupId>
|
||
<artifactId>ffmpeg</artifactId>
|
||
<version>${javacv.ffmpeg.version}</version>
|
||
<classifier>${javacpp.platform.macosx-x86_64}</classifier>
|
||
</dependency>
|
||
|
||
<!--Linux平台-->
|
||
<dependency>
|
||
<groupId>org.bytedeco</groupId>
|
||
<artifactId>javacpp</artifactId>
|
||
<version>${javacv.version}</version>
|
||
<classifier>${javacpp.platform.linux-x86}</classifier>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.bytedeco</groupId>
|
||
<artifactId>ffmpeg</artifactId>
|
||
<version>${javacv.ffmpeg.version}</version>
|
||
<classifier>${javacpp.platform.linux-x86}</classifier>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.bytedeco</groupId>
|
||
<artifactId>javacpp</artifactId>
|
||
<version>${javacv.version}</version>
|
||
<classifier>${javacpp.platform.linux-x86_64}</classifier>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.bytedeco</groupId>
|
||
<artifactId>ffmpeg</artifactId>
|
||
<version>${javacv.ffmpeg.version}</version>
|
||
<classifier>${javacpp.platform.linux-x86_64}</classifier>
|
||
</dependency>
|
||
|
||
<!--Windows平台-->
|
||
<dependency>
|
||
<groupId>org.bytedeco</groupId>
|
||
<artifactId>javacpp</artifactId>
|
||
<version>${javacv.version}</version>
|
||
<classifier>${javacpp.platform.windows-x86}</classifier>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.bytedeco</groupId>
|
||
<artifactId>ffmpeg</artifactId>
|
||
<version>${javacv.ffmpeg.version}</version>
|
||
<classifier>${javacpp.platform.windows-x86}</classifier>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.bytedeco</groupId>
|
||
<artifactId>javacpp</artifactId>
|
||
<version>${javacv.version}</version>
|
||
<classifier>${javacpp.platform.windows-x86_64}</classifier>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.bytedeco</groupId>
|
||
<artifactId>ffmpeg</artifactId>
|
||
<version>${javacv.ffmpeg.version}</version>
|
||
<classifier>${javacpp.platform.windows-x86_64}</classifier>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-lang3</artifactId>
|
||
<version>3.12.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-collections</groupId>
|
||
<artifactId>commons-collections</artifactId>
|
||
<version>3.2.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<version>1.18.18</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi</artifactId>
|
||
<version>4.0.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>dom4j</groupId>
|
||
<artifactId>dom4j</artifactId>
|
||
<version>1.6.1</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project> |