CVPR14 图像检索papers
CVPR14年关于图像检索方面的papers,汇总成一个list,方便阅读。
图像检索
- Triangulation embedding and democratic aggregation for image search (Orals)
- Collaborative Hashing (post)
- Packing and Padding: Coupled Multi-index for Accurate Image Retrieval (post) technical report
- Bayes Merging of Multiple Vocabularies for Scalable Image Retrieval (post) technical report
- Fast Supervised Hashing with Decision Trees for High-Dimensional Data (post)
- Learning Fine-grained Image Similarity with Deep Ranking (post)
- Congruency-Based Reranking (post)可能
- Fisher and VLAD with FLAIR (post)可能
- Locality in Generic Instance Search from One Example (post)
- Asymmetric sparse kernel approximations for large-scale visual search (post)
- Locally Linear Hashing for Extracting Non-Linear Manifolds (post)
- Adaptive Object Retrieval with Kernel Reconstructive Hashing (post)
- Hierarchical Feature Hashing for Fast Dimensionality Reduction (post)
视频检索与事件检测
- Temporal Sequence Modeling For Video Event Detection (Orals)
- Visual Semantic Search: Retrieving Videos via Complex Textual Queries (post)
感兴趣文章
Robust Orthonormal Subspace Learning: Efficient Recovery of Corrupted Low-rank Matrices (Orals)
Fast and Accurate Image Matching with Cascade Hashing for 3D Reconstruction (Orals)
Large-scale Video Classification using Convolutional Neural Networks (Orals)
Locally Optimized Product Quantization (post)
Product Sparse Coding (post)
Distance Encoded Product Quantization (post)
Covariance descriptors for 3D shape matching and retrieval (post)
Turning Mobile Phones into 3D Scanners (post)
Linear Ranking Analysis (post)
from: http://yongyuan.name/blog/cvpr14-reading-list.html
CVPR14 图像检索papers的更多相关文章
- 哈希学习(2)—— Hashing图像检索资源
CVPR14 图像检索papers——图像检索 1. Triangulation embedding and democratic aggregation for imagesearch (Oral ...
- 图像检索中为什么仍用BOW和LSH
原文链接:http://blog.csdn.net/jwh_bupt/article/details/27713453 去年年底的时候在一篇博客中,用ANN的框架解释了BOW模型[1],并与LSH[2 ...
- International Conference for Smart Health 2015 Call for Papers
Advancing Informatics for healthcare and healthcare applications has become an international researc ...
- IEEE/ACM ASONAM 2014 Industry Track Call for Papers
IEEE/ACM International Conference on Advances in Social Network Analysis and Mining (ASONAM) 2014 In ...
- Call for Papers IEEE/ACM International Conference on Advances in Social Network Analysis and Mining (ASONAM)
IEEE/ACM International Conference on Advances in Social Network Analysis and Mining (ASONAM) 2014 In ...
- Call for Papers International Conference for Smart Health (ICSH) 2014
Call for PapersInternational Conference for Smart Health (ICSH) 2014 Beijing, China July 10-11, 2014 ...
- ICML历年Best Papers
作者:我爱机器学习原文链接:ICML历年Best Papers ICML (Machine Learning)(1999-2016) 2016 Dueling Network Architecture ...
- CVPR历年Best Papers
作者:我爱机器学习原文链接:CVPR历年Best Papers CVPR (Computer Vision)(2000-2016) 年份 标题 一作 一作单位 2016 Deep Residual L ...
- SIGKDD历年Best Papers
作者:我爱机器学习原文链接:SIGKDD历年Best Papers SIGKDD(Data Mining)(1997-2016) 年份 标题 一作 一作单位 2016 FRAUDAR: Boundin ...
随机推荐
- ASP.NET WebAPI 01-Demo
WebAPI作为构建RESTful的平台出来有段时间了,加上最近也在用,所以想把自己的心得记录下来.我就以一个简单的增删查改作为开篇. 准备 实体类(Figure)的定义. public class ...
- TypeScript的数据类型总结
全局下载:npm i typescript -g 编译.ts文件:tsc 1.ts自动生成对应js文件 基本类型: 1.布尔,数字,字符串 ts文件 //布尔类型 var a:boolean=tru ...
- 002 python语法入门
一:基本数据类型知识点 1.基本数据类型 Number 数字 String 字符串 Bool 布尔 List 列表 Tuple 元组 Set 集合 Dictionary字典 2.分类 )标准的pyth ...
- pandas使用总结
一.pandas简介 Pandas是基于Numpy开发出的,是一款开放源码的BSD许可的Python库,为Python编程语言提供了高性能,易于使用的数据结构和数据分析工具.Pandas用于广泛的领域 ...
- 2017-2018-1 20179202《Linux内核原理与分析》第十二周作业
C语言实现Linux网络嗅探器 一.知识准备 1.一般情况下,网络上所有的机器都可以"听"到通过的流量,但对不属于自己的数据包则不予响应.如果某个工作站的网络接口处于混杂模式,那么 ...
- django.db.utils.OperationalError: 1045错误
django.db.utils.OperationalError: (1045, "Access denied for user 'root'@'localhost' (using pass ...
- Linux 的文件权限与目录配置
用户和用户组 文件所有者 (owner) 用户组概念 (group) 其他人概念 (others) Linux文件权限概念 1. Linux文件属性 要了解Linux文件属性,那么有个重要的命令必须提 ...
- 解决mysql中limit和in不能同时使用的问题
先给出数据表 CREATE TABLE `test_tb_grade` ( `ID` ) NOT NULL AUTO_INCREMENT, `) DEFAULT NULL, `COURSE` ) DE ...
- android 数据存储方式
韩梦飞沙 韩亚飞 313134555@qq.com yue31313 han_meng_fei_sha 1,文件 2,内容提供者 3,偏好设置 4,数据库 5,网络存储. 网络存储,就是上传到 ...
- Bzoj1018[SHOI2008]堵塞的交通traffic(线段树)
这题需要维护连通性,看到有连接删除,很容易直接就想LCT了.然而这题点数20w操作10w,LCT卡常估计过不去.看到这个东西只有两行,考虑能否用魔改后的线性数据结构去维护.我想到了线段树. 考虑如果两 ...