• Learning to Compare Image Patches via Convolutional Neural Networks --- Reading Summary


     

    Learning to Compare Image Patches via Convolutional Neural Networks ---  Reading Summary 

    2017.03.08 

     

    Target: this paper attempt to learn a geneal similarity function for comparing image patches from image data directly. 

    There are several ways in which patch pairs can be processed by the network and how the information sharing can take place in this case. This paper studied 3 types about the comparion network:

      1. 2-channel    2. Siamese   3. Pseu-siamese Network 


    1. Siamese Network : 

      This is a chassical network which first proposed by Lecun. This network has two networks which denote two inputs (the compared image pairs). Each network has its own convolution layer, ReLU and max-pooling layer. It is also worthy to notice that: the two networks are share same weights. 

     

    2. Pseudo-siamese Network :

      the same definition as siamese network, but the two branches do not share weights. This is the most difference between siamese and pseudo-siamese network. 

    3. 2-channel network : 

      Just combine two input patches 1 and 2 together, and input it into normal convolutional network. The output of the network is 1 value. This kind of network has greater flexibnility and fast to train. But, it is expensive when testing, because it need all combinations of patches. 



      

     

      

     

  • 相关阅读:
    C++指针和引用及区别
    C/C++中extern关键字总结
    php进阶面试题总结
    算法疑难(js实现)---11、字典树
    Trie|如何用字典树实现搜索引擎的关键词提示功能
    ExtJS表格——行号、复选框、选择模型
    Ext.js 中 25种类型的Ext.panel.Tool
    Ext NumberField使用
    [ext]form.submit()相关说明
    ExtJS 表单 submit时错误处理
  • 原文地址:https://www.cnblogs.com/wangxiaocvpr/p/6523147.html
Copyright © 2020-2023  润新知