0

I need some code for CRF implementation in C++ or Matlab for images for segmentation problem. Which is the more appropriate code library? It will be great if it supports higher order energy terms

Thanks in advance.

Swagatika
  • 857
  • 1
  • 11
  • 32

1 Answers1

2

I've had great success with Justin Domke's JGMT. It is written in C++ and can be used from Matlab. I would recommend you look at this library first.

There are plenty of other options: CRFSuite which is written in C++ but easily accesible from Python and stuff.

There is also CRF++ which is written in C++ and does have bindings for Python and Ruby.

carlosdc
  • 12,022
  • 4
  • 45
  • 62
  • Thanks a lot for the links :) I checked JGMT, it seemed good, but it has the limitation of supporting only pairwise graphs...I want to use higher order energy terms. – Swagatika Nov 05 '12 at 09:56