Skip to content

Commit 8673ddb

Browse files
committed
Forgot to state that omnipose and cellpose return segmentation results.
1 parent 03d7bb2 commit 8673ddb

3 files changed

Lines changed: 18 additions & 0 deletions

File tree

src/main/java/fiji/plugin/trackmate/cellpose/CellposeDetectorFactory.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,12 @@ public SpotGlobalDetector< T > getDetector( final ImgPlus< T > img, final Map< S
8989
return new CellposeDetector<>( img, interval, cli );
9090
}
9191

92+
@Override
93+
public boolean has2Dsegmentation()
94+
{
95+
return true;
96+
}
97+
9298
@Override
9399
public String getInfoText()
94100
{

src/main/java/fiji/plugin/trackmate/cellpose/sam/CellposeSAMDetectorFactory.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,12 @@ public SpotGlobalDetector< T > getDetector( final ImgPlus< T > img, final Map< S
9292
return new CellposeSAMDetector<>( img, interval, cli );
9393
}
9494

95+
@Override
96+
public boolean has2Dsegmentation()
97+
{
98+
return true;
99+
}
100+
95101
@Override
96102
public String getInfoText()
97103
{

src/main/java/fiji/plugin/trackmate/omnipose/OmniposeDetectorFactory.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@ public SpotGlobalDetector< T > getDetector( final ImgPlus< T > img, final Map< S
9797
return detector;
9898
}
9999

100+
@Override
101+
public boolean has2Dsegmentation()
102+
{
103+
return true;
104+
}
105+
100106
@Override
101107
public String getInfoText()
102108
{

0 commit comments

Comments
 (0)