All Downloads are FREE. Search and download functionalities are using the official Maven repository.

imageJ.graphcut.Terminal Maven / Gradle / Ivy

Go to download

Orbit, a versatile image analysis software for biological image-based quantification

There is a newer version: 3.15
Show newest version

/**
 * Graph cut implementation for images.
 * 

* This implementation was heavily inspired by the implementation * provided by Kolmogorov and Boykov: MAXFLOW version 3.01. *

* From the README of the library: *

* This software library implements the maxflow algorithm described in *

* "An Experimental Comparison of Min-Cut/Max-Flow Algorithms for Energy * Minimization in Vision." * Yuri Boykov and Vladimir Kolmogorov. * In IEEE Transactions on Pattern Analysis and Machine Intelligence * (PAMI), * September 2004 *

* This algorithm was developed by Yuri Boykov and Vladimir Kolmogorov * at Siemens Corporate Research. To make it available for public * use, it was later reimplemented by Vladimir Kolmogorov based on open * publications. *

* If you use this software for research purposes, you should cite * the aforementioned paper in any resulting publication. * * @author Jan Funke * @version 0.1 */ package imageJ.graphcut; /** * The two possible segments, represented as special terminal nodes in the graph. */ public enum Terminal { FOREGROUND, // a.k.a. the source BACKGROUND; // a.k.a. the sink }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy