Skip to content

Commit

Permalink
Set rank filter block group to 'pre-processing', as it does not work
Browse files Browse the repository at this point in the history
with segmented images.
  • Loading branch information
cklukas committed Apr 9, 2016
1 parent 8afe648 commit 33611d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion IAP/src/de/ipk/ag_ba/gui/webstart/IAPmain.java
Original file line number Diff line number Diff line change
Expand Up @@ -673,8 +673,8 @@ public static ArrayList<String> getMainInfoLines() {
res.add(fillLen("**", l));
res.add(fillLen("*-- Systems Biology Cloud Computing --*", l));
res.add(fillLen("**", l));
res.add(fillLen("*(c) 2010-2016 Research Group Image Analysis, IPK *", l));
res.add(fillLen("*(c) 2015-2016 Dr. C. Klukas *", l));
res.add(fillLen("*(c) 2010-2016 Research Group Image Analysis, IPK *", l));
res.add(fillLen("**", l));
res.add(line);
res.add(fillLen("**", l));
Expand Down
4 changes: 2 additions & 2 deletions IAP/src/iap/blocks/segmentation/BlMedianFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ public HashSet<CameraType> getCameraOutputTypes() {

@Override
public BlockType getBlockType() {
return BlockType.SEGMENTATION;
return BlockType.PREPROCESSING;
}

@Override
public String getName() {
return "Rank Filter (Adaptive Kernelsize)";
return "Rank Filter (adaptive kernel size)";
}

@Override
Expand Down

0 comments on commit 33611d1

Please sign in to comment.