opencv4.5.5+qt5.15.2+vtk9.1+mingw81_64编译记录

简介: 本文记录了使用mingw81_64编译OpenCV 4.5.5、Qt 5.15.2、VTK 9.1的详细过程,包括编译结果截图、编译步骤、遇到的问题及其解决方案,以及相关参考链接。文中还提到了如何编译boost源码为静态库,并提供了测试代码示例。

mingw编译器针对很多仓库代码没有编译错误,适配mingw是个好选择。

编译结果文件:

链接:https://pan.baidu.com/s/11pgNAwn_o-saygo1blJz4A
提取码:w5so

一 VTK编译

cd C:\Users\pgjgg\Desktop\CODE\VTK

mkdir build

cd build

cmake -DCMAKE_BUILD_TYPE="Release"  -G "MinGW Makefiles" -DCMAKE_PREFIX_PATH="C:/Qt/5.15.2/mingw81_64/lib/cmake/Qt5"  ../

mingw32-make -j48

mingw32-make install

中间存在编译错误,继续使用编译指令:

mingw32-make -j48

或者在cmake-gui手动取消一些build。

类似这样:

最后管理员运行cmd.exe后,执行:

mingw32-make install

二 无opencv_contrib编译记录

git clone https://gitcode.net/opencv/opencv

cd C:\Users\pgjgg\Desktop\CODE\opencv

mkdir build

cd build

cmake -DCMAKE_BUILD_TYPE="Release"  -G “MinGW Makefiles” -DQT_QMAKE_EXECUTABLE="C:/Qt/Tools/mingw810_64/bin/qmake.exe" -DQt5_DIR="C:/Qt/5.15.2/mingw81_64/lib/cmake/Qt5" -DCMAKE_PREFIX_PATH="C:/Program Files (x86)/VTK/lib/cmake/vtk-9.1"  ../

mingw32-make -j64

mingw32-make install

这样是没有适配QT的,需要手动在cmake-gui添加QT。

配置如下:

ocv_init_download: Using gitcode-hosted mirror to download 3rdparty components.

Registering hook 'OPENCV_DOWNLOAD_PRE': C:/Users/pgjgg/Desktop/CODE/opencv/cmake/mirrors/gitcode.cmake

Detected processor: AMD64

Found PythonInterp: C:/Users/pgjgg/AppData/Local/Programs/Python/Python39/python.exe (found suitable version "3.9.7", minimum required is "2.7")

AVX_512F is not supported by C++ compiler

AVX512_COMMON is not supported by C++ compiler

AVX512_SKX is not supported by C++ compiler

Dispatch optimization AVX512_SKX is not available, skipped

libjpeg-turbo: VERSION = 2.1.2, BUILD = opencv-4.5.5-dev-libjpeg-turbo

Could NOT find OpenJPEG (minimal suitable version: 2.0, recommended version >= 2.3.1). OpenJPEG will be built from sources

OpenJPEG: VERSION = 2.4.0, BUILD = opencv-4.5.5-dev-openjp2-2.4.0

OpenJPEG libraries will be built from sources: libopenjp2 (version "2.4.0")

Could not find OpenBLAS include. Turning OpenBLAS_FOUND off

Could not find OpenBLAS lib. Turning OpenBLAS_FOUND off

Could NOT find BLAS (missing: BLAS_LIBRARIES)

Could NOT find LAPACK (missing: LAPACK_LIBRARIES)

Reason given by package: LAPACK could not be found because dependency BLAS could not be found.

Found VTK 9.1.20220207

Consider adding OPENCV_ALLOCATOR_STATS_COUNTER_TYPE=int/int64_t according to your build configuration

Excluding from source files list: /modules/core/test/test_intrin128.avx512_skx.cpp

Excluding from source files list: /modules/core/test/test_intrin256.avx512_skx.cpp

Excluding from source files list: /modules/core/test/test_intrin512.avx512_skx.cpp

Registering hook 'INIT_MODULE_SOURCES_opencv_dnn': C:/Users/pgjgg/Desktop/CODE/opencv/modules/dnn/cmake/hooks/INIT_MODULE_SOURCES_opencv_dnn.cmake

opencv_dnn: filter out cuda4dnn source code

Excluding from source files list: /modules/dnn/layers/layers_common.avx512_skx.cpp

Excluding from source files list: /modules/dnn/layers/layers_common.rvv.cpp

Excluding from source files list: /modules/dnn/int8layers/layers_common.avx512_skx.cpp

imgcodecs: OpenEXR codec is disabled in runtime. Details: https://github.com/opencv/opencv/issues/21326

highgui: using builtin backend: QT5

Found 'misc' Python modules from C:/Users/pgjgg/Desktop/CODE/opencv/modules/python/package/extra_modules

Found 'mat_wrapper;utils' Python modules from C:/Users/pgjgg/Desktop/CODE/opencv/modules/core/misc/python/package

Found 'gapi' Python modules from C:/Users/pgjgg/Desktop/CODE/opencv/modules/gapi/misc/python/package

Found 'misc' Python modules from C:/Users/pgjgg/Desktop/CODE/opencv/modules/python/package/extra_modules

Found 'mat_wrapper;utils' Python modules from C:/Users/pgjgg/Desktop/CODE/opencv/modules/core/misc/python/package

Found 'gapi' Python modules from C:/Users/pgjgg/Desktop/CODE/opencv/modules/gapi/misc/python/package

CMake Warning at cmake/OpenCVGenSetupVars.cmake:54 (message):
CONFIGURATION IS NOT SUPPORTED: validate setupvars script in install
directory
Call Stack (most recent call first):
CMakeLists.txt:1039 (include)

General configuration for OpenCV 4.5.5-dev =====================================

Version control: 4.5.5-407-g11f36bdf9a

Platform:

Timestamp: 2022-05-20T09:51:33Z

Host: Windows 10.0.18363 AMD64

CMake: 3.19.2

CMake generator: MinGW Makefiles

CMake build tool: C:/Qt/Tools/mingw810_64/bin/mingw32-make.exe

Configuration: Release

CPU/HW features:

Baseline: SSE SSE2 SSE3

requested: SSE3

Dispatched code generation: SSE4_1 SSE4_2 FP16 AVX AVX2

requested: SSE4_1 SSE4_2 AVX FP16 AVX2 AVX512_SKX

SSE4_1 (18 files): + SSSE3 SSE4_1

SSE4_2 (2 files): + SSSE3 SSE4_1 POPCNT SSE4_2

FP16 (1 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 AVX

AVX (5 files): + SSSE3 SSE4_1 POPCNT SSE4_2 AVX

AVX2 (33 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2

C/C++:

Built as dynamic libs?: YES

C++ standard: 11

C++ Compiler: C:/Qt/Tools/mingw810_64/bin/g++.exe (ver 8.1.0)

C++ flags (Release): -fsigned-char -W -Wall -Wreturn-type -Wnon-virtual-dtor -Waddress -Wsequence-point -Wformat -Wformat-security -Wmissing-declarations -Wundef -Winit-self -Wpointer-arith -Wshadow -Wsign-promo -Wuninitialized -Wsuggest-override -Wno-delete-non-virtual-dtor -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -fvisibility-inlines-hidden -O3 -DNDEBUG -DNDEBUG

C++ flags (Debug): -fsigned-char -W -Wall -Wreturn-type -Wnon-virtual-dtor -Waddress -Wsequence-point -Wformat -Wformat-security -Wmissing-declarations -Wundef -Winit-self -Wpointer-arith -Wshadow -Wsign-promo -Wuninitialized -Wsuggest-override -Wno-delete-non-virtual-dtor -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -fvisibility-inlines-hidden -g -O0 -DDEBUG -D_DEBUG

C Compiler: C:/Qt/Tools/mingw810_64/bin/gcc.exe

C flags (Release): -fsigned-char -W -Wall -Wreturn-type -Waddress -Wsequence-point -Wformat -Wformat-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG

C flags (Debug): -fsigned-char -W -Wall -Wreturn-type -Waddress -Wsequence-point -Wformat -Wformat-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -g -O0 -DDEBUG -D_DEBUG

Linker flags (Release): -Wl,--gc-sections

Linker flags (Debug): -Wl,--gc-sections

ccache: NO

Precompiled headers: NO

Extra dependencies:

3rdparty dependencies:

OpenCV modules:

To be built: calib3d core dnn features2d flann gapi highgui imgcodecs imgproc ml objdetect photo python3 stitching ts video videoio

Disabled: world

Disabled by dependency: -

Unavailable: java python2

Applications: tests perf_tests apps

Documentation: NO

Non-free algorithms: NO

Windows RT support: NO

GUI: QT5

QT: YES (ver 5.15.2 )

QT OpenGL support: YES (Qt5::OpenGL 5.15.2)

Win32 UI: YES

OpenGL support: YES (opengl32 glu32)

VTK support: YES (ver 9.1.20220207)

Media I/O:

ZLib: build (ver 1.2.12)

JPEG: build-libjpeg-turbo (ver 2.1.2-62)

WEBP: build (ver encoder: 0x020f)

PNG: build (ver 1.6.37)

TIFF: build (ver 42 - 4.2.0)

JPEG 2000: build (ver 2.4.0)

OpenEXR: build (ver 2.3.0)

HDR: YES

SUNRASTER: YES

PXM: YES

PFM: YES

Video I/O:

DC1394: NO

FFMPEG: YES (prebuilt binaries)

avcodec: YES (58.134.100)

avformat: YES (58.76.100)

avutil: YES (56.70.100)

swscale: YES (5.9.100)

avresample: YES (4.0.0)

GStreamer: NO

DirectShow: YES

Parallel framework: none

Trace: YES (built-in)

Other third-party libraries:

Lapack: NO

Eigen: YES (ver 3.3.7)

Custom HAL: NO

Protobuf: build (3.19.1)

OpenCL: YES (no extra features)

Include path: C:/Users/pgjgg/Desktop/CODE/opencv/3rdparty/include/opencl/1.2

Link libraries: Dynamic load

Python 3:

Interpreter: C:/Users/pgjgg/AppData/Local/Programs/Python/Python39/python.exe (ver 3.9.7)

Libraries: C:/Users/pgjgg/AppData/Local/Programs/Python/Python39/libs/python39.lib (ver 3.9.7)

numpy: C:/Users/pgjgg/AppData/Local/Programs/Python/Python39/lib/site-packages/numpy/core/include (ver 1.22.3)

install path: C:/Users/pgjgg/AppData/Local/Programs/Python/Python39/Lib/site-packages/cv2/python-3.9

Python (for build): C:/Users/pgjgg/AppData/Local/Programs/Python/Python39/python.exe

Java:

ant: NO

JNI: C:/android/openjdk-11+28_windows-x64_bin/jdk-11/include C:/android/openjdk-11+28_windows-x64_bin/jdk-11/include/win32 C:/android/openjdk-11+28_windows-x64_bin/jdk-11/include

Java wrappers: NO

Java tests: NO

Install to: C:/Users/pgjgg/Desktop/CODE/opencv/buildOpenGL/install

-----------------------------------------------------------------

Configuring done

Generating done

三 有opencv_contrib编译记录

git clone  https://gitcode.net/opencv/opencv

git clone  https://gitcode.net/opencv/opencv_contrib.git

cd C:\Users\pgjgg\Desktop\CODE\opencv

mkdir buildContrib

cd buildContrib

cmake -DCMAKE_BUILD_TYPE="Release" -G "MinGW Makefiles" -DCMAKE_PREFIX_PATH="C:/Qt/5.15.2/mingw81_64/lib/cmake/Qt5;C:/Users/pgjgg/Desktop/CODE/VTK/build/lib/cmake/vtk-9.1" -DOPENCV_EXTRA_MODULES_PATH="C:/Users/pgjgg/Desktop/CODE/opencv_contrib/modules" C:\Users\pgjgg\Desktop\CODE\opencv

mingw32-make -j48

mingw32-make install

同样需要cmake-gui带QT和手动取消一些build,才能mingw32-make install

ocv_init_download: Using gitcode-hosted mirror to download 3rdparty components.

Registering hook 'OPENCV_DOWNLOAD_PRE': C:/Users/pgjgg/Desktop/CODE/opencv/cmake/mirrors/gitcode.cmake

Detected processor: AMD64

AVX_512F is not supported by C++ compiler

AVX512_COMMON is not supported by C++ compiler

AVX512_SKX is not supported by C++ compiler

Dispatch optimization AVX512_SKX is not available, skipped

libjpeg-turbo: VERSION = 2.1.2, BUILD = opencv-4.5.5-dev-libjpeg-turbo

Could NOT find OpenJPEG (minimal suitable version: 2.0, recommended version >= 2.3.1). OpenJPEG will be built from sources

OpenJPEG: VERSION = 2.4.0, BUILD = opencv-4.5.5-dev-openjp2-2.4.0

OpenJPEG libraries will be built from sources: libopenjp2 (version "2.4.0")

Could not find OpenBLAS include. Turning OpenBLAS_FOUND off

Could not find OpenBLAS lib. Turning OpenBLAS_FOUND off

Could NOT find BLAS (missing: BLAS_LIBRARIES)

Could NOT find LAPACK (missing: LAPACK_LIBRARIES)

Reason given by package: LAPACK could not be found because dependency BLAS could not be found.

Found VTK 9.1.20220207

freetype2: NO

harfbuzz: NO

Julia not found. Not compiling Julia Bindings.

Module opencv_ovis disabled because OGRE3D was not found

CERES support is disabled. Ceres Solver for reconstruction API is required.

Tesseract: NO

Consider adding OPENCV_ALLOCATOR_STATS_COUNTER_TYPE=int/int64_t according to your build configuration

Excluding from source files list: /modules/core/test/test_intrin128.avx512_skx.cpp

Excluding from source files list: /modules/core/test/test_intrin256.avx512_skx.cpp

Excluding from source files list: /modules/core/test/test_intrin512.avx512_skx.cpp

Registering hook 'INIT_MODULE_SOURCES_opencv_dnn': C:/Users/pgjgg/Desktop/CODE/opencv/modules/dnn/cmake/hooks/INIT_MODULE_SOURCES_opencv_dnn.cmake

opencv_dnn: filter out cuda4dnn source code

Excluding from source files list: /modules/dnn/layers/layers_common.avx512_skx.cpp

Excluding from source files list: /modules/dnn/layers/layers_common.rvv.cpp

Excluding from source files list: /modules/dnn/int8layers/layers_common.avx512_skx.cpp

imgcodecs: OpenEXR codec is disabled in runtime. Details: https://github.com/opencv/opencv/issues/21326

highgui: using builtin backend: QT5

General configuration for OpenCV 4.5.5-dev =====================================

Version control: 4.5.5-407-g11f36bdf9a

Extra modules:

Location (extra): C:/Users/pgjgg/Desktop/CODE/opencv_contrib/modules

Version control (extra): 4.5.5-74-g654849ad

Platform:

Timestamp: 2022-05-21T02:45:36Z

Host: Windows 10.0.18363 AMD64

CMake: 3.19.2

CMake generator: MinGW Makefiles

CMake build tool: C:/Qt/Tools/mingw810_64/bin/mingw32-make.exe

Configuration: Release

CPU/HW features:

Baseline: SSE SSE2 SSE3

requested: SSE3

Dispatched code generation: SSE4_1 SSE4_2 FP16 AVX AVX2

requested: SSE4_1 SSE4_2 AVX FP16 AVX2 AVX512_SKX

SSE4_1 (18 files): + SSSE3 SSE4_1

SSE4_2 (2 files): + SSSE3 SSE4_1 POPCNT SSE4_2

FP16 (1 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 AVX

AVX (5 files): + SSSE3 SSE4_1 POPCNT SSE4_2 AVX

AVX2 (33 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2

C/C++:

Built as dynamic libs?: YES

C++ standard: 11

C++ Compiler: C:/Qt/Tools/mingw810_64/bin/g++.exe (ver 8.1.0)

C++ flags (Release): -fsigned-char -W -Wall -Wreturn-type -Wnon-virtual-dtor -Waddress -Wsequence-point -Wformat -Wformat-security -Wmissing-declarations -Wundef -Winit-self -Wpointer-arith -Wshadow -Wsign-promo -Wuninitialized -Wsuggest-override -Wno-delete-non-virtual-dtor -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -fvisibility-inlines-hidden -O3 -DNDEBUG -DNDEBUG

C++ flags (Debug): -fsigned-char -W -Wall -Wreturn-type -Wnon-virtual-dtor -Waddress -Wsequence-point -Wformat -Wformat-security -Wmissing-declarations -Wundef -Winit-self -Wpointer-arith -Wshadow -Wsign-promo -Wuninitialized -Wsuggest-override -Wno-delete-non-virtual-dtor -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -fvisibility-inlines-hidden -g -O0 -DDEBUG -D_DEBUG

C Compiler: C:/Qt/Tools/mingw810_64/bin/gcc.exe

C flags (Release): -fsigned-char -W -Wall -Wreturn-type -Waddress -Wsequence-point -Wformat -Wformat-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG

C flags (Debug): -fsigned-char -W -Wall -Wreturn-type -Waddress -Wsequence-point -Wformat -Wformat-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -g -O0 -DDEBUG -D_DEBUG

Linker flags (Release): -Wl,--gc-sections

Linker flags (Debug): -Wl,--gc-sections

ccache: NO

Precompiled headers: NO

Extra dependencies:

3rdparty dependencies:

OpenCV modules:

To be built: alphamat aruco barcode bgsegm bioinspired calib3d ccalib core cvv datasets dnn dnn_objdetect dnn_superres dpm face features2d flann fuzzy gapi hfs highgui img_hash imgcodecs imgproc intensity_transform line_descriptor mcc ml objdetect optflow phase_unwrapping photo plot quality rapid reg rgbd saliency shape stereo stitching structured_light superres surface_matching text tracking ts video videoio videostab viz wechat_qrcode xfeatures2d ximgproc xobjdetect xphoto

Disabled: python3 python_bindings_generator python_tests sfm world

Disabled by dependency: -

Unavailable: cudaarithm cudabgsegm cudacodec cudafeatures2d cudafilters cudaimgproc cudalegacy cudaobjdetect cudaoptflow cudastereo cudawarping cudev freetype hdf java julia matlab ovis python2

Applications: tests perf_tests apps

Documentation: NO

Non-free algorithms: NO

Windows RT support: NO

GUI: QT5

QT: YES (ver 5.15.2 )

QT OpenGL support: YES (Qt5::OpenGL 5.15.2)

Win32 UI: YES

OpenGL support: YES (opengl32 glu32)

VTK support: YES (ver 9.1.20220207)

Media I/O:

ZLib: build (ver 1.2.12)

JPEG: build-libjpeg-turbo (ver 2.1.2-62)

WEBP: build (ver encoder: 0x020f)

PNG: build (ver 1.6.37)

TIFF: build (ver 42 - 4.2.0)

JPEG 2000: build (ver 2.4.0)

OpenEXR: build (ver 2.3.0)

HDR: YES

SUNRASTER: YES

PXM: YES

PFM: YES

Video I/O:

DC1394: NO

FFMPEG: YES (prebuilt binaries)

avcodec: YES (58.134.100)

avformat: YES (58.76.100)

avutil: YES (56.70.100)

swscale: YES (5.9.100)

avresample: YES (4.0.0)

GStreamer: NO

DirectShow: YES

Parallel framework: none

Trace: YES (built-in)

Other third-party libraries:

Lapack: NO

Eigen: YES (ver 3.3.7)

Custom HAL: NO

Protobuf: build (3.19.1)

OpenCL: YES (no extra features)

Include path: C:/Users/pgjgg/Desktop/CODE/opencv/3rdparty/include/opencl/1.2

Link libraries: Dynamic load

Python (for build): C:/Users/pgjgg/AppData/Local/Programs/Python/Python39/python.exe

Java:

ant: NO

JNI: C:/android/openjdk-11+28_windows-x64_bin/jdk-11/include C:/android/openjdk-11+28_windows-x64_bin/jdk-11/include/win32 C:/android/openjdk-11+28_windows-x64_bin/jdk-11/include

Java wrappers: NO

Java tests: NO

Install to: C:/Users/pgjgg/Desktop/CODE/opencv/buildContrib/install

-----------------------------------------------------------------

Configuring done

Generating done

试了我一个通宵,遇到过一些问题。

比如编译完没有highgui模块。

这个是因为VTK没有带上QT编译。

还有sfm模块编译不了,取消build这个模块即可。

编译OK截图

四 参考链接

下载不再卡顿,OpenCV中国镜像启用 - 知乎 (zhihu.com)

(12条消息) 【CMake】Win10 + CMake + MinGW 简单使用_zhaotun123的博客-CSDN博客_cmake mingw

(15条消息) windows下更改CMake编译器为MinGW_罗伯特祥的博客-CSDN博客_cmake windows指定编译器

(15条消息) Opencv编译出现"In-source builds are not allowed"_景天的天的博客-CSDN博客

opencv的MinGW-W64编译 - 知乎 (zhihu.com)

(12条消息) QT5.14.2 + Cmake3.18 + OPENCV3.4.3 + Opencv_contrib3.4.3_周健文的博客-CSDN博客

(12条消息) CMake Error at cmake/OpenCVModule.cmake:288 (message): No modules has been found:_yogurt_的博客-CSDN博客

(13条消息) Qt、MinGW编译OpenCV 4.5.4(包含opencv_contrib)详细过程_雍正不秃头的博客-CSDN博客_qt编译opencv

(12条消息) Mingw编译opencv4.4+contrib4.4后的库文件_opencv+contrib编好qt-C++文档类资源-CSDN文库

(15条消息) 关于QT下配置OpenCV3.4.0后出现 error: undefined reference to 'cv::xxx'的问题及解决方案_HerofH_的博客-CSDN博客

(15条消息) 如何去掉cmake编译OpenCV时的Cmake Warning:“OpenCVGenSetupVars.cmake:54”_Striveallen的博客-CSDN博客_cmake warning可以忽略吗

相关文章
|
11天前
|
弹性计算 人工智能 架构师
阿里云携手Altair共拓云上工业仿真新机遇
2024年9月12日,「2024 Altair 技术大会杭州站」成功召开,阿里云弹性计算产品运营与生态负责人何川,与Altair中国技术总监赵阳在会上联合发布了最新的“云上CAE一体机”。
阿里云携手Altair共拓云上工业仿真新机遇
|
8天前
|
机器学习/深度学习 算法 大数据
【BetterBench博士】2024 “华为杯”第二十一届中国研究生数学建模竞赛 选题分析
2024“华为杯”数学建模竞赛,对ABCDEF每个题进行详细的分析,涵盖风电场功率优化、WLAN网络吞吐量、磁性元件损耗建模、地理环境问题、高速公路应急车道启用和X射线脉冲星建模等多领域问题,解析了问题类型、专业和技能的需要。
2522 17
【BetterBench博士】2024 “华为杯”第二十一届中国研究生数学建模竞赛 选题分析
|
8天前
|
机器学习/深度学习 算法 数据可视化
【BetterBench博士】2024年中国研究生数学建模竞赛 C题:数据驱动下磁性元件的磁芯损耗建模 问题分析、数学模型、python 代码
2024年中国研究生数学建模竞赛C题聚焦磁性元件磁芯损耗建模。题目背景介绍了电能变换技术的发展与应用,强调磁性元件在功率变换器中的重要性。磁芯损耗受多种因素影响,现有模型难以精确预测。题目要求通过数据分析建立高精度磁芯损耗模型。具体任务包括励磁波形分类、修正斯坦麦茨方程、分析影响因素、构建预测模型及优化设计条件。涉及数据预处理、特征提取、机器学习及优化算法等技术。适合电气、材料、计算机等多个专业学生参与。
1525 15
【BetterBench博士】2024年中国研究生数学建模竞赛 C题:数据驱动下磁性元件的磁芯损耗建模 问题分析、数学模型、python 代码
|
4天前
|
存储 关系型数据库 分布式数据库
GraphRAG:基于PolarDB+通义千问+LangChain的知识图谱+大模型最佳实践
本文介绍了如何使用PolarDB、通义千问和LangChain搭建GraphRAG系统,结合知识图谱和向量检索提升问答质量。通过实例展示了单独使用向量检索和图检索的局限性,并通过图+向量联合搜索增强了问答准确性。PolarDB支持AGE图引擎和pgvector插件,实现图数据和向量数据的统一存储与检索,提升了RAG系统的性能和效果。
|
10天前
|
编解码 JSON 自然语言处理
通义千问重磅开源Qwen2.5,性能超越Llama
击败Meta,阿里Qwen2.5再登全球开源大模型王座
585 14
|
1月前
|
运维 Cloud Native Devops
一线实战:运维人少,我们从 0 到 1 实践 DevOps 和云原生
上海经证科技有限公司为有效推进软件项目管理和开发工作,选择了阿里云云效作为 DevOps 解决方案。通过云效,实现了从 0 开始,到现在近百个微服务、数百条流水线与应用交付的全面覆盖,有效支撑了敏捷开发流程。
19283 30
|
10天前
|
人工智能 自动驾驶 机器人
吴泳铭:AI最大的想象力不在手机屏幕,而是改变物理世界
过去22个月,AI发展速度超过任何历史时期,但我们依然还处于AGI变革的早期。生成式AI最大的想象力,绝不是在手机屏幕上做一两个新的超级app,而是接管数字世界,改变物理世界。
489 49
吴泳铭:AI最大的想象力不在手机屏幕,而是改变物理世界
|
1月前
|
人工智能 自然语言处理 搜索推荐
阿里云Elasticsearch AI搜索实践
本文介绍了阿里云 Elasticsearch 在AI 搜索方面的技术实践与探索。
18842 20
|
1月前
|
Rust Apache 对象存储
Apache Paimon V0.9最新进展
Apache Paimon V0.9 版本即将发布,此版本带来了多项新特性并解决了关键挑战。Paimon自2022年从Flink社区诞生以来迅速成长,已成为Apache顶级项目,并广泛应用于阿里集团内外的多家企业。
17530 13
Apache Paimon V0.9最新进展
|
2天前
|
云安全 存储 运维
叮咚!您有一份六大必做安全操作清单,请查收
云安全态势管理(CSPM)开启免费试用
367 4
叮咚!您有一份六大必做安全操作清单,请查收