当前位置:   article > 正文

计算机视觉三大顶级会议CVPR,ECCV,ICCV论文下载地址_nips,cvpr等顶会论文下载

nips,cvpr等顶会论文下载

1、极市开发者社区:计算机视觉顶会文章的解读汇总(CVPR/ECCV/ICCV/NIPS)。里面分类总结了近几年各个会议的论文,并有相应的下载链接。
http://bbs.cvmart.net/topics/62/顶会文章解读
2、http://openaccess.thecvf.com/menu.py。链接打开如下,可以选择所需要的会议论文。
在这里插入图片描述
注意:
此外,如果嫌页面跳来跳去,可以在打开某个会议论文列表后,对其链接地址进行修改。如:
http://openaccess.thecvf.com/CVPR2019.py
将CVPR2019改为其他会议或者年限即可,比如ECCV2018,ICCV2017,CVPR2018等。
3、ECCV2016
https://link.springer.com/search?facet-conf-event-id=eccv2016&facet-content-type=Chapter&query=&facet-content-type=%22ConferencePaper%22

4、批量下载会议论文的脚本文件

import re
import requests
import urllib
import os

# get web context
r = requests.get('http://openaccess.thecvf.com/ICCV2017.py')
data = r.text
# find all pdf links
link_list = re.findall(r"(?<=href=\").+?pdf(?=\">pdf)|(?<=href=\').+?pdf(?=\">pdf)" ,data)
name_list = re.findall(r"(?<=href=\").+?2017_paper.html\">.+?</a>" ,data)
cnt = 0
num = len(link_list)
print('num=',num)
# your local path to download pdf files
localDir = 'F:\papers\ICCV2017\\'
if not os.path.exists(localDir):
    os.makedirs(localDir)
while cnt < num:
    url = link_list[cnt]
    # seperate file name from url links
    file_name = name_list[cnt].split('<')[0].split('>')[1]
    # to avoid some illegal punctuation in file name
    file_name = file_name.replace(':','_')
    file_name = file_name.replace('\"','_')
    file_name = file_name.replace('?','_')
    file_name = file_name.replace('/','_')
    file_path = localDir + file_name + '.pdf'
    # download pdf files
    print('['+str(cnt)+'/'+str(num)+"]  Downloading -> "+file_path)
#    try:
    urllib.request.urlretrieve('http://openaccess.thecvf.com/'+url,file_path)
#    except Exception:
#        continue
    cnt = cnt + 1
print("all download finished") 




  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/328181
推荐阅读
相关标签
  

闽ICP备14008679号