Skip to content

Commit

Permalink
classify input and output types
Browse files Browse the repository at this point in the history
  • Loading branch information
haesleinhuepf committed Oct 25, 2020
1 parent e875a77 commit 99b872e
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import net.haesleinhuepf.clij2.AbstractCLIJ2Plugin;
import net.haesleinhuepf.clij2.CLIJ2;
import net.haesleinhuepf.clij2.utilities.HasAuthor;
import net.haesleinhuepf.clij2.utilities.HasClassifiedInputOutput;
import net.haesleinhuepf.clij2.utilities.HasLicense;
import net.haesleinhuepf.clij2.utilities.IsCategorized;
import net.imglib2.RandomAccessibleInterval;
Expand All @@ -20,7 +21,7 @@
* Demo plugin for integrating imglib2 based algorithms into CLIJ workflows.
*/
@Plugin(type = CLIJMacroPlugin.class, name = "CLIJx_imglib2ConnectedComponentsLabeling")
public class Imglib2ConnectedComponentsLabeling extends AbstractCLIJ2Plugin implements CLIJMacroPlugin, CLIJOpenCLProcessor, OffersDocumentation, IsCategorized, HasLicense, HasAuthor
public class Imglib2ConnectedComponentsLabeling extends AbstractCLIJ2Plugin implements CLIJMacroPlugin, CLIJOpenCLProcessor, OffersDocumentation, IsCategorized, HasClassifiedInputOutput
{

public Imglib2ConnectedComponentsLabeling() {
Expand Down Expand Up @@ -77,12 +78,12 @@ public String getCategories() {
}

@Override
public String getAuthorName() {
return "Put your name here.";
public String getInputType() {
return "Binary Image";
}

@Override
public String getLicense() {
return "Public domain";
public String getOutputType() {
return "Label Image";
}
}

0 comments on commit 99b872e

Please sign in to comment.