zzhang1987 / HungarianBP

The Hungarian-BP code in Paper "Pairwise Matching Through Max-Weight Bipartite Belief Propagation"

Home Page:https://zzhang.org/software/pairwise-matching-through-max-weight-bipartite-belief-propagation/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HungarianBP: Pairwise Matching through Max-Weight Bipartite Belief Propagation

Introduction

This repository contains the source code of the algorithm described in a CVPR 2016 paper Pairwise Matching through Max-Weight Bipartite Belief Propagation. More details are provided on the [project page] (https://zzhang.org/featurematching.html). This packages has been tested using Matlab R2015b on CentOS 7.0 (a distrubition of Linux) x64.

Citing HungarianBP

If you find HungarianBP useful in your research, please consider citing:

@inproceedings{Zhang:2016:CVPR,
    author = {Zhang, Zhen and Shi, Qinfeng and McAuley, Julian and Wei, Wei and Zhang, Yanning and Hengel, Anton},
    booktitle = {CVPR},
    title = {Pairwise Matching through {Max-Weight} Bipartite Belief Propagation},
    year = {2016}, 
}

Usage

  1. Prerequisites

  2. [Boost] (http://www.boost.org/): Install the boost library via apt-get, yum, or compiling from scratch.

  3. [Matlab] (http://www.mathworks.com/): Install Matlab.

  4. Configuring HungarianBP

  5. Downloading HungarianBP via

        git clone https://github.com/zzhang1987/HungarianBP
    
  6. Fetching the mex code via

    	cd HungarianBP 
        git submodule init
    	git submodule update --remote	
    
  7. Run compiling.m.

    	matlab
    	#inside matlab 
    		cd HungarianBP
    		compiling
    
  8. Run demoCar.m and demoMotor.m to reproduce the results on the [Cars and Motorbikes Dataset] (https://sites.google.com/site/graphmatchingmethods/). Run demoCharater.m to reproduce the results on the [Chinese Character dataset] (http://www.escience.cn/system/file?fileId=62549).

Remarks

Precompiled mex files for linux x64 are included. For other platforms, you can use any compilier that supports matlab and c++11 to compile the mex files.

Feedback

If you have any issues (question, feedback) or find bugs in the code, please contact zhangzhen@mail.nwpu.edu.cn.

About

The Hungarian-BP code in Paper "Pairwise Matching Through Max-Weight Bipartite Belief Propagation"

https://zzhang.org/software/pairwise-matching-through-max-weight-bipartite-belief-propagation/


Languages

Language:MATLAB 100.0%