BUGFIX:pose transfer 视频转GIF依赖操作系统环境切换

This commit is contained in:
2025-06-16 18:25:32 +08:00
parent 9d022ae13e
commit e3ee724e6f

13
pom.xml
View File

@@ -32,6 +32,7 @@
<javacv.version>1.5.5</javacv.version> <javacv.version>1.5.5</javacv.version>
<system.windowsx64>windows-x86_64</system.windowsx64> <system.windowsx64>windows-x86_64</system.windowsx64>
<javacpp.platform.linux-x86_64>linux-x86_64</javacpp.platform.linux-x86_64>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
<dependencies> <dependencies>
@@ -373,26 +374,30 @@
<groupId>org.bytedeco</groupId> <groupId>org.bytedeco</groupId>
<artifactId>opencv</artifactId> <artifactId>opencv</artifactId>
<version>4.5.1-${javacv.version}</version> <version>4.5.1-${javacv.version}</version>
<classifier>${system.windowsx64}</classifier> <!--<classifier>${system.windowsx64}</classifier>-->
<classifier>${javacpp.platform.linux-x86_64}</classifier>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.bytedeco</groupId> <groupId>org.bytedeco</groupId>
<artifactId>openblas</artifactId> <artifactId>openblas</artifactId>
<version>0.3.13-${javacv.version}</version> <version>0.3.13-${javacv.version}</version>
<classifier>${system.windowsx64}</classifier> <!--<classifier>${system.windowsx64}</classifier>-->
<classifier>${javacpp.platform.linux-x86_64}</classifier>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.bytedeco</groupId> <groupId>org.bytedeco</groupId>
<artifactId>flycapture</artifactId> <artifactId>flycapture</artifactId>
<version>2.13.3.31-${javacv.version}</version> <version>2.13.3.31-${javacv.version}</version>
<classifier>${system.windowsx64}</classifier> <!--<classifier>${system.windowsx64}</classifier>-->
<classifier>${javacpp.platform.linux-x86_64}</classifier>
</dependency> </dependency>
<!-- FFmpeg视频处理解决你的报错 --> <!-- FFmpeg视频处理解决你的报错 -->
<dependency> <dependency>
<groupId>org.bytedeco</groupId> <groupId>org.bytedeco</groupId>
<artifactId>ffmpeg</artifactId> <artifactId>ffmpeg</artifactId>
<version>4.4-1.5.6</version> <version>4.4-1.5.6</version>
<classifier>${system.windowsx64}</classifier> <!--<classifier>${system.windowsx64}</classifier>-->
<classifier>${javacpp.platform.linux-x86_64}</classifier>
</dependency> </dependency>