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") 




Logo

CSDN联合极客时间,共同打造面向开发者的精品内容学习社区,助力成长!

更多推荐