CVPR14年关于图像检索方面的papers,汇总成一个list,方便阅读。


图像检索

  1. Triangulation embedding and democratic aggregation for image search (Orals)
  2. Collaborative Hashing (post)
  3. Packing and Padding: Coupled Multi-index for Accurate Image Retrieval (post) technical report
  4. Bayes Merging of Multiple Vocabularies for Scalable Image Retrieval (post) technical report
  5. Fast Supervised Hashing with Decision Trees for High-Dimensional Data (post)
  6. Learning Fine-grained Image Similarity with Deep Ranking (post)
  7. Congruency-Based Reranking (post)可能
  8. Fisher and VLAD with FLAIR (post)可能
  9. Locality in Generic Instance Search from One Example (post)
  10. Asymmetric sparse kernel approximations for large-scale visual search (post)
  11. Locally Linear Hashing for Extracting Non-Linear Manifolds (post)
  12. Adaptive Object Retrieval with Kernel Reconstructive Hashing (post)
  13. Hierarchical Feature Hashing for Fast Dimensionality Reduction (post)

视频检索与事件检测

  1. Temporal Sequence Modeling For Video Event Detection (Orals)
  2. 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的更多相关文章

  1. 哈希学习(2)—— Hashing图像检索资源

    CVPR14 图像检索papers——图像检索 1.  Triangulation embedding and democratic aggregation for imagesearch (Oral ...

  2. 图像检索中为什么仍用BOW和LSH

    原文链接:http://blog.csdn.net/jwh_bupt/article/details/27713453 去年年底的时候在一篇博客中,用ANN的框架解释了BOW模型[1],并与LSH[2 ...

  3. International Conference for Smart Health 2015 Call for Papers

    Advancing Informatics for healthcare and healthcare applications has become an international researc ...

  4. IEEE/ACM ASONAM 2014 Industry Track Call for Papers

    IEEE/ACM International Conference on Advances in Social Network Analysis and Mining (ASONAM) 2014 In ...

  5. 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 ...

  6. 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 ...

  7. ICML历年Best Papers

    作者:我爱机器学习原文链接:ICML历年Best Papers ICML (Machine Learning)(1999-2016) 2016 Dueling Network Architecture ...

  8. CVPR历年Best Papers

    作者:我爱机器学习原文链接:CVPR历年Best Papers CVPR (Computer Vision)(2000-2016) 年份 标题 一作 一作单位 2016 Deep Residual L ...

  9. SIGKDD历年Best Papers

    作者:我爱机器学习原文链接:SIGKDD历年Best Papers SIGKDD(Data Mining)(1997-2016) 年份 标题 一作 一作单位 2016 FRAUDAR: Boundin ...

随机推荐

  1. Web Api之Cors跨域以及其他跨域方式(三)

    我们知道ajax不能跨域访问,但是有时我们确实需要跨域访问获取数据,所以JSONP就此诞生了,其本质使用的是Script标签,除JSONP以外还有另外实现跨域方式 一.手动实现JSONP跨域 1.首先 ...

  2. 自定义排序及Hadoop序列化

    自定义排序 将两列数据进行排序,第一列按照升序排列,当第一列相同时,第二列升序排列. 在map和reduce阶段进行排序时,比较的是k2.v2是不参与排序比较的.如果要想让v2也进行排序,需要把k2和 ...

  3. JAVA 并发编程-多个线程之间共享数据

    原文地址:http://blog.csdn.net/hejingyuan6/article/details/47053409# 多线程共享数据的方式: 1,如果每个线程执行的代码相同,可以使用同一个R ...

  4. mysql索引之三:索引使用注意规则(索引失效--存在索引但不使用索引)*

    使用索引时,有以下一些技巧和注意事项: (1)越小的数据类型通常更好:越小的数据类型通常在磁盘.内存和CPU缓存中都需要更少的空间,处理起来更快.(2)简单的数据类型更好:整型数据比起字符,处理开销更 ...

  5. [leetcode trie]208. Implement Trie (Prefix Tree)

    实现一个字典树 class Trie(object): def __init__(self): self.root = TrieNode() def insert(self, word): cur = ...

  6. web客户端安全之跨站脚本攻击

    跨站脚本攻击,Cross-site script,是Web程序中最常见的漏洞.为了和CSS层叠样式表区分开,所以取名为 XSS. 一.XSS的重点 跨域和客户端执行. 二.XSS的原理 攻击者向有XS ...

  7. [ 原创 ]学习笔记- 数据在Activity之间的传递的情况

    情况一:一个Activity跳转到另一个Activity时,将第一个Activity的数据传递到第二个Activity里面. 分析:当一个界面跳转到另一个界面的同时还要讲数据传递过去,这种情况需要用I ...

  8. 机器学习之路:python k均值聚类 KMeans 手写数字

    python3 学习使用api 使用了网上的数据集,我把他下载到了本地 可以到我的git中下载数据集: https://github.com/linyi0604/MachineLearning 代码: ...

  9. DataGridView、List<T>相关操作

    一.DataGridView数据转成DataTable 1.已绑定过数据源:DataTable dt = (dataGridView1.DataSource as DataTable) 2.未绑定过数 ...

  10. [BZOJ5287][HNOI2018]毒瘤(虚树DP)

    暴力枚举非树边取值做DP可得75. 注意到每次枚举出一个容斥状态的时候,都要做大量重复操作. 建立虚树,预处理出虚树上两点间的转移系数.也可动态DP解决. 树上倍增.动态DP.虚树DP似乎是这种问题的 ...