Newer
Older
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.scijava</groupId>
<artifactId>pom-scijava</artifactId>
<version>28.0.0-SNAPSHOT</version>
<groupId>de.mpicbg.scf</groupId>
<artifactId>MinCostZSurface_</artifactId>
<description>
an IJ plugin detecting optimal z surface (surface for which z = f(x,y)) in a 3D volume. the method is described in:
Kang Li et al., "Optimal surface segmentation in volumetric images - a Graph-theoretic approach", IEEE transactions on pattern analysis and machine intelligence, vol 28, n 1, 2006.</description>
<url>none</url>
<inceptionYear>2014</inceptionYear>
<organization>
<name>de.mpicbg.scf</name>
<url>none</url>
</organization>
<licenses>
<license>
<name>BSD3</name>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<!-- See https://imagej.net/Team -->
<developer>
<id>Benoit</id>
<name>Benoit Lombardot</name>
<url>http://imagej.net/User:Benoit</url>
<roles>
<role>founder</role>
<role>developer</role>
</roles>
</developer>
<developer>
<id>Moon</id>
<name>HongKee Moon</name>
<url>http://imagej.net/User:Moon</url>
<roles>
<role>founder</role>
<role>developer</role>
</roles>
</developer>
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
</developers>
<contributors>
<contributor>
<name>none</name>
</contributor>
</contributors>
<mailingLists>
<mailingList>
<name>none</name>
<archive>none</archive>
</mailingList>
</mailingLists>
<scm>
<url>none</url>
</scm>
<issueManagement>
<system>None</system>
</issueManagement>
<ciManagement>
<system>None</system>
</ciManagement>
<properties>
<package-name>mincostsurface</package-name>
<main-class>de.mpicg.scf.mincostsurface.MinCostZSurface_Plugin</main-class>
<license.licenseName>BSD3</license.licenseName>
<license.copyrightOwners>MPI-CBG</license.copyrightOwners>
</properties>
<repositories>
<repository>
<id>imagej.public</id>
<url>http://maven.imagej.net/content/groups/public</url>
</repository>
</repositories>
<dependency>
<groupId>net.imglib2</groupId>
<artifactId>imglib2-algorithm</artifactId>
</dependency>
<dependency>
<groupId>sc.fiji</groupId>
<artifactId>Graph_Cut</artifactId>
</dependency>