danini / graph-cut-ransac

The Graph-Cut RANSAC algorithm proposed in paper: Daniel Barath and Jiri Matas; Graph-Cut RANSAC, Conference on Computer Vision and Pattern Recognition, 2018. It is available at http://openaccess.thecvf.com/content_cvpr_2018/papers/Barath_Graph-Cut_RANSAC_CVPR_2018_paper.pdf

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

make error

greenjokers opened this issue · comments

hi danini, I have followed the build instructions, but when i run make,I get
image
but I already have the cpp in the folder,why?

you should install "ppl",you can run
sudo apt-get install libcpprest-dev

I also encountered this problem, and I use command "sudo apt-get install libcpprest-dev", but which dosn`t work. how to solve it?

To be honest, I have not used the algorithm from linux, but you can easily replace each parallel_for cycle by a simple for cycle or using OpenMP. Then you can remove ppl library.

thank you danini, before your reply I have solved this problem, from your code , I find that the code is writing with VS2015 or higher version. I do replace each parallel_for cycle by a simple for cycle. I don`t konw what if it will decrease efficiency apparently.