You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This page describes a detector module for [TrackMate](/plugins/trackmate/index) that relies on [lacss](https://github.com/jiyuuchc/lacss) to segment cells in 2D or 3D. It is not included in the base installation of TrackMate and must be installed via its own [update site](https://sites.imagej.net/TrackMate-Lacss/).
9
+
This page describes a detector module for [TrackMate](/plugins/trackmate/index) that relies on [LACSS](https://github.com/jiyuuchc/lacss) to segment cells in 2D or 3D. It is not included in the base installation of TrackMate and must be installed via its own [update site](https://sites.imagej.net/TrackMate-Lacss/). Lacss itself is a deep-learning (DL) model for single-cell segmentation from microscopy images.
10
10
11
-
Lacss itself is a deep-learning model for single-cell segmentation from microscopy images. On GPU, the model is very fast for processing large time-lapse datasets. In addition, Lacss is designed to utilize point labels for model training, and offers several efficient paths for adapting an existing model to new data characeristics. See the [lacss website](https://github.com/jiyuuchc/lacss) for more details.
11
+
The design of TrackMate-Lacss follows a server/client architecture, using the [GRPC](https://grpc.io/) communication protocol. In such case, the Lacss program runs as a GRPC server, listening on a TCP port, which the thin client TrackMate-Lacss uses to communicates with the server, sending the image data and receiving the segmentation results.
12
12
13
-
The design of TrackMate-Lacss follows a server/client model, using the [GRPC](https://grpc.io/) communication protocol. In such case, the Lacss program runs as a GRPC server, listening on a TCP port, which the thin client TrackMate-Lacss uses to communicates with the server, sending the image data and receiving the segmentation results.
13
+
By default, Trackmate-Lacss will contact the open server (lacss.cam.uchc.edu) we have setup for this purpose. This simplify the workflow for most users, as they only need to install a small Fiji plugin to fully take advantage of the DL model's capability. The server-client design allows the user to perform computation quickly on limited hardware resources, becasue most of the computation is done on the server-side.
14
14
15
-
From the users' perspective, the most important advantage of such design is so that they can run the server on a different computer than the one they run Fiji on. Modern deep learning algorithms heavily rely on sophisticated GPU hardware for speed. Our design allows the user to utilize a dedicated server for faster computation and for multiple users to share computational resources.
16
-
17
-
On the other hand, there is also nothing wrong with running the server locally on the same machine running Fiji. It is entirely the users' choice in how to set it up.
15
+
The user can also setup their own inference server. See [section](#running-your-own-server) below.
18
16
19
17
## Limitations
20
18
21
19
3D segmentation results will not be rendered in full. Instead, only a single point per cell will be displayed. This is a limitation of TrackMate itself and will be resolved in the next major release of TrackMate.
22
20
23
21
## Installation
24
22
25
-
You need to install both the *Lacss*, which is a Python package, and *TrackMate-Lacss*, which is a Fiji/ImageJ plugin.
23
+
In Fiji, go to {% include bc path='Help|Update...' %}, update, and click on {% include button label="Manage update sites" %} (bottom-left). A new window containing all the known update sites will appear. Check the **TrackMate-Lacss** box, perform update, and restart Fiji.
24
+
25
+
## Usage
26
+
27
+
#### Lacss Parameters in the TrackMate UI
28
+
29
+
##### `Server`
30
+
31
+
The address to the GRPC server in the format of `hostname:port`. The default is `lacss.cam.uchc.edu`.
32
+
33
+
##### `Access token`
34
+
35
+
An optional security token. Only used if you are running your own server.
36
+
37
+
##### `Minimum Cell Area`
38
+
39
+
The minimum cell area/volume in units of pixels.
40
+
41
+
##### `Scaling Factor`
42
+
43
+
If not 1, the input image will be resized internally before sent to the model. This is useful if your cell sizes (in pixels) differ significantly from those of the training data.
44
+
45
+
##### `Score Treshold`
46
+
47
+
Minimum score needed to be considered a valid prediction.
48
+
49
+
##### `NMS IOU`
50
+
51
+
Lacss is an object detection model, and can detect cells that are right on top of each other. If you want to disable this behavior, set a non-zero IOU threshold to remove overlapping cells.
52
+
53
+
##### `Multi-Channel`
54
+
55
+
By default the segmentation is performed by considering all channels. Uncheck this to segment on only the first channel.
56
+
57
+
58
+
## Running your own server
59
+
60
+
TrackMate-Lacss runs on a client-server architecture. By default, TrackMate-Lacss will contact the open-server at lacss.cam.uchc.edu:443. But some may want to run your own server (e.g. on your own intranet to improve data transfer speed).
26
61
27
62
### Install Lacss
28
63
29
64
The short version:
30
65
31
66
```shell
32
-
pip install lacss
67
+
pip install lacss[cuda12]
33
68
```
34
69
35
70
Slightly longer version: See the [Lacss Documentation](https://jiyuuchc.github.io/lacss/install/) for more details. We recommend installation on a Linux computer with a dedicated GPU.
36
71
37
72
_Lacss installation is independent of Fiji._
38
73
39
-
### Install TrackMate-Lacss
40
-
41
-
In Fiji, go to {% include bc path='Help|Update...' %}, update, and click on {% include button label="Manage update sites" %} (bottom-left). A new window containing all the known update sites will appear. Check the **TrackMate-Lacss** box and restart Fiji.
42
-
43
-
## Usage
44
-
45
-
#### Starting the Lacss server
74
+
### Starting the server
46
75
47
76
To start Lacss on a remote server:
48
77
```
@@ -55,45 +84,31 @@ The server should print out a randomized token string, which serves as the key f
The `<path_to_model_file>` is the local path to the file that contains the model parameters. You can get the download links of model files by calling the above command without arguments:
The `<path_to_model_file>` is the local path to the file that contains the model parameters. See [Lacss](https://github.com/jiyuuchc/lacss) page for download linkes.
69
88
70
-
##### `Server`
71
89
72
-
The address to the GRPC server in the format of `hostname:port`. The default is for a local server.
90
+
## Running a Cellpose server
73
91
74
-
##### `Access token`
92
+
You can also run a "Lacss" server backed by the [cellpose](https://cellpose.readthedocs.io/en/latest/do3d.html) model as its backend. To do that
75
93
76
-
The token printed out by the server. Leave it empty for a local server.
77
-
78
-
##### `Minimum Cell Area`
79
-
80
-
The minimum cell area/volume in units of pixels.
81
-
82
-
##### `Scaling Factor`
83
-
84
-
If not 1, the input image will be resized internally before sent to the model. This is useful if your cell sizes (in pixels) differ significantly from those of the training data.
85
-
86
-
##### `Score Treshold`
87
-
88
-
Minimum score needed to be considered a valid prediction.
89
-
90
-
##### `NMS IOU`
94
+
#### Install cellpose
95
+
In most cases, this is simply
96
+
```shell
97
+
pip install cellpose
98
+
```
99
+
But see [full documentation](https://cellpose.readthedocs.io/en/latest/do3d.html) for more details.
91
100
92
-
Lacss is an object detection model, and can detect cells that are right on top of each other. If you want to disable this behavior, set a non-zero IOU threshold to remove overlapping cells.
101
+
#### Install Lacss
102
+
```shell
103
+
pip install lacss
104
+
```
105
+
Note that in this case, you do not need the `cuda12` option.
93
106
94
-
##### `Multi-Channel`
107
+
#### Start server
108
+
```shell
109
+
python -m lacss.deploy.cellpose_server
110
+
```
95
111
96
-
By default the segmentation is performed by considering all color channels. Uncheck this to use only a single channel.
0 commit comments