如果是java通过maven的settting.xml文件配置华为云或者阿里云中央仓库
1、settting.xml:如下配置的是华为云中央仓库
<mirror>
<id>huaweicloud</id>
<mirrorOf>central</mirrorOf>
<name>Huawei Cloud Repository</name>
<url>https://repo.huaweicloud.com/repository/maven/</url>
</mirror>
2、pom.xml加上如下引用,即可获取opencv-4.9.0-0.jar
<dependency>
<groupId>org.openpnp</groupId>
<artifactId>opencv</artifactId>
<version>4.9.0-0</version>
</dependency>
注意:手动下载方式可以通过:https://repo1.maven.org/maven2 链接进去找对应包下载。