美文网首页开发工具mediapipe
【转载】CMake opencv时Download: openc

【转载】CMake opencv时Download: openc

作者: XBruce | 来源:发表于2020-06-17 15:53 被阅读0次

    最近OpenCV更新到了3.4.1,下载了OpenCV3.4.1的源码,想编译一个VS2013X64的SDK,在CMake的时候一般会下载一些依赖(ffmpeg.dll,ippicv.zip)等。但是现在宿主机没有网络,CMake-Configure就会失败···,或者有时候网络很差,下载速度极慢或者干脆一直下载失败···CMake-Configure也会失败。失败提示如下图:

    这几个错误是类似的就是Download failed。那只能手动下载了(没网络的换个有网的下载,下载一直失败也直接手动下载),那么问题来了。

    去哪里下载?
    
    下载后放哪里?
    

    仔细看错误信息,可以打开download log file看看,如提示,我的在D:/Kits/OpenCV/opencv-source/opencv-3.4.1/build/CMakeDownloadLog.txt,打开可以看到如下内容:

    下载获取opencv_ffmpeg.dll的过程

    use_cache "D:/Kits/OpenCV/opencv-source/opencv-3.4.1/.cache"
    do_copy "opencv_ffmpeg.dll" "b8120c07962d591e2e9071a1bf566fd0" "https://raw.githubusercontent.com/opencv/opencv_3rdparty/0a0e88972a7ea97708378d0488a65f83e7cc5e69/ffmpeg/opencv_ffmpeg.dll" "D:/Kits/OpenCV/opencv-source/opencv-3.4.1/build/3rdparty/ffmpeg"

    missing "D:/Kits/OpenCV/opencv-source/opencv-3.4.1/build/3rdparty/ffmpeg/opencv_ffmpeg.dll"

    cmake_download "D:/Kits/OpenCV/opencv-source/opencv-3.4.1/.cache/ffmpeg/b8120c07962d591e2e9071a1bf566fd0-opencv_ffmpeg.dll" "https://raw.githubusercontent.com/opencv/opencv_3rdparty/0a0e88972a7ea97708378d0488a65f83e7cc5e69/ffmpeg/opencv_ffmpeg.dll"

    timeout on name lookup is not supported

    Trying 151.101.0.133...

    TCP_NODELAY set

    Connected to raw.githubusercontent.com (151.101.0.133) port 443 (#0)

    schannel: SSL/TLS connection with raw.githubusercontent.com port 443 (step 1/3)

    schannel: disabled server certificate revocation checks

    schannel: sending initial handshake data: sending 199 bytes...

    schannel: sent initial handshake data: sent 199 bytes

    schannel: SSL/TLS connection with raw.githubusercontent.com port 443 (step 2/3)

    schannel: failed to receive handshake, need more data

    schannel: SSL/TLS connection with raw.githubusercontent.com port 443 (step 2/3)

    schannel: failed to receive handshake, SSL/TLS connection failed

    Closing connection 0

    schannel: shutting down SSL/TLS connection with raw.githubusercontent.com port 443

    Send failure: Connection was reset

    schannel: failed to send close msg: Failed sending data to the peer (bytes written: 4294967295)

    schannel: clear security context handle

    下载获取opencv_ffmpeg_64.dll的过程

    do_copy "opencv_ffmpeg_64.dll" "dc9c50e7b05482acc25d6ce0ac61bf1d" "https://raw.githubusercontent.com/opencv/opencv_3rdparty/0a0e88972a7ea97708378d0488a65f83e7cc5e69/ffmpeg/opencv_ffmpeg_64.dll" "D:/Kits/OpenCV/opencv-source/opencv-3.4.1/build/3rdparty/ffmpeg"

    missing "D:/Kits/OpenCV/opencv-source/opencv-3.4.1/build/3rdparty/ffmpeg/opencv_ffmpeg_64.dll"

    cmake_download "D:/Kits/OpenCV/opencv-source/opencv-3.4.1/.cache/ffmpeg/dc9c50e7b05482acc25d6ce0ac61bf1d-opencv_ffmpeg_64.dll" "https://raw.githubusercontent.com/opencv/opencv_3rdparty/0a0e88972a7ea97708378d0488a65f83e7cc5e69/ffmpeg/opencv_ffmpeg_64.dll"

    timeout on name lookup is not supported

    Trying 151.101.0.133...

    TCP_NODELAY set

    Connected to raw.githubusercontent.com (151.101.0.133) port 443 (#0)

    schannel: SSL/TLS connection with raw.githubusercontent.com port 443 (step 1/3)

    schannel: disabled server certificate revocation checks

    schannel: sending initial handshake data: sending 199 bytes...

    schannel: sent initial handshake data: sent 199 bytes

    schannel: SSL/TLS connection with raw.githubusercontent.com port 443 (step 2/3)

    schannel: failed to receive handshake, need more data

    schannel: SSL/TLS connection with raw.githubusercontent.com port 443 (step 2/3)

    schannel: failed to receive handshake, SSL/TLS connection failed

    Closing connection 0

    schannel: shutting down SSL/TLS connection with raw.githubusercontent.com port 443

    Send failure: Connection was reset

    schannel: failed to send close msg: Failed sending data to the peer (bytes written: 4294967295)

    schannel: clear security context handle

    下载获取ffmpeg_version.cmake的过程

    do_copy "ffmpeg_version.cmake" "3b90f67f4b429e77d3da36698cef700c" "https://raw.githubusercontent.com/opencv/opencv_3rdparty/0a0e88972a7ea97708378d0488a65f83e7cc5e69/ffmpeg/ffmpeg_version.cmake" "D:/Kits/OpenCV/opencv-source/opencv-3.4.1/build/3rdparty/ffmpeg"

    missing "D:/Kits/OpenCV/opencv-source/opencv-3.4.1/build/3rdparty/ffmpeg/ffmpeg_version.cmake"

    cmake_download "D:/Kits/OpenCV/opencv-source/opencv-3.4.1/.cache/ffmpeg/3b90f67f4b429e77d3da36698cef700c-ffmpeg_version.cmake" "https://raw.githubusercontent.com/opencv/opencv_3rdparty/0a0e88972a7ea97708378d0488a65f83e7cc5e69/ffmpeg/ffmpeg_version.cmake"

    timeout on name lookup is not supported

    Trying 151.101.0.133...

    TCP_NODELAY set

    Connected to raw.githubusercontent.com (151.101.0.133) port 443 (#0)

    schannel: SSL/TLS connection with raw.githubusercontent.com port 443 (step 1/3)

    schannel: disabled server certificate revocation checks

    schannel: sending initial handshake data: sending 199 bytes...

    schannel: sent initial handshake data: sent 199 bytes

    schannel: SSL/TLS connection with raw.githubusercontent.com port 443 (step 2/3)

    schannel: failed to receive handshake, need more data

    schannel: SSL/TLS connection with raw.githubusercontent.com port 443 (step 2/3)

    schannel: failed to receive handshake, SSL/TLS connection failed

    Closing connection 0

    schannel: shutting down SSL/TLS connection with raw.githubusercontent.com port 443

    Send failure: Connection was reset

    schannel: failed to send close msg: Failed sending data to the peer (bytes written: 4294967295)

    schannel: clear security context handle

    下载获取ippicv_2017u3_win_intel64_general_20170822.zip的过程

    do_unpack "ippicv_2017u3_win_intel64_general_20170822.zip" "0421e642bc7ad741a2236d3ec4190bdd" "https://raw.githubusercontent.com/opencv/opencv_3rdparty/dfe3162c237af211e98b8960018b564bc209261d/ippicv/ippicv_2017u3_win_intel64_general_20170822.zip" "D:/Kits/OpenCV/opencv-source/opencv-3.4.1/build/3rdparty/ippicv"

    cmake_download "D:/Kits/OpenCV/opencv-source/opencv-3.4.1/.cache/ippicv/0421e642bc7ad741a2236d3ec4190bdd-ippicv_2017u3_win_intel64_general_20170822.zip" "https://raw.githubusercontent.com/opencv/opencv_3rdparty/dfe3162c237af211e98b8960018b564bc209261d/ippicv/ippicv_2017u3_win_intel64_general_20170822.zip"

    timeout on name lookup is not supported

    Trying 151.101.0.133...

    TCP_NODELAY set

    Connected to raw.githubusercontent.com (151.101.0.133) port 443 (#0)

    schannel: SSL/TLS connection with raw.githubusercontent.com port 443 (step 1/3)

    schannel: disabled server certificate revocation checks

    schannel: sending initial handshake data: sending 199 bytes...

    schannel: sent initial handshake data: sent 199 bytes

    schannel: SSL/TLS connection with raw.githubusercontent.com port 443 (step 2/3)

    schannel: failed to receive handshake, need more data

    schannel: SSL/TLS connection with raw.githubusercontent.com port 443 (step 2/3)

    schannel: failed to receive handshake, SSL/TLS connection failed

    Closing connection 0

    schannel: shutting down SSL/TLS connection with raw.githubusercontent.com port 443

    Send failure: Connection was reset

    schannel: failed to send close msg: Failed sending data to the peer (bytes written: 4294967295)

    schannel: clear security context handle

    CMake后会发现opencv-source根目录下会出现一个.cache的文件夹,里面有需要下载的内容,如果下载失败所有的内容都是0KB如下图:

    再看看CMakeDownloadLog.txt的第一句:use_cache "D:/Kits/OpenCV/opencv-source/opencv-3.4.1/.cache"说的就是这个意思。在看看第二句:do_copy "opencv_ffmpeg.dll" "b8120c07962d591e2e9071a1bf566fd0" "https://raw.githubusercontent.com/opencv/opencv_3rdparty/0a0e88972a7ea97708378d0488a65f83e7cc5e69/ffmpeg/opencv_ffmpeg.dll" "D:/Kits/OpenCV/opencv-source/opencv-3.4.1/build/3rdparty/ffmpeg",说的是从https://raw.githubusercontent.com/opencv/opencv_3rdparty/0a0e88972a7ea97708378d0488a65f83e7cc5e69/ffmpeg/opencv_ffmpeg.dll这个网址下载opencv_ffmpeg.dll到D:/Kits/OpenCV/opencv-source/opencv-3.4.1/build/3rdparty/ffmpeg,其MD值为b8120c07962d591e2e9071a1bf566fd0,然后拷贝到.cache对应的文件夹下(该文件名为MD值+'-'+下载的文件名)。那么这个文件就类似脚本进行自动化下载,那么我们就知道手动要怎么搞了。

    回答-去哪里下载:

    https://raw.githubusercontent.com/opencv/opencv_3rdparty/0a0e88972a7ea97708378d0488a65f83e7cc5e69/ffmpeg/opencv_ffmpeg.dll
    

    回答-下载后放哪里:

    很显然下载后放.cache下对应的地方,然后改其名字为MD值+'-'+下载的文件名。比如opencv_ffmpeg.dll这个文件下载后凡在.cache下的ffmpeg下,然后改名为b8120c07962d591e2e9071a1bf566fd0-opencv_ffmpeg.dll替换原来0KB的那个文件。
    
    好了,接下来就是重复以上步骤,将opencv_ffmpeg_64.dll,ffmpeg_version.cmake,ippicv_2017u3_win_intel64_general_20170822.zip到对应的网址下载并放到.cache下对应的文件夹下然后改名字。最终效果如下图:
    
    
    
    
    
    最后再次CMake-Configure就成功通过了!
    

    ————————————————
    版权声明:本文为CSDN博主「KayChanGeek」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/KayChanGEEK/article/details/79919417

    相关文章

      网友评论

        本文标题:【转载】CMake opencv时Download: openc

        本文链接:https://www.haomeiwen.com/subject/waesxktx.html