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
Copy file name to clipboardExpand all lines: docs/Inspect.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,9 @@ Division events are detected based on the tracking graph. If cells has not been
35
35
(Un)Select the option `show division` to (un)display division events. You can see the total number of divisions found written in the top of the `Inspect` panel.
36
36
37
37
You can manually add a division event, or remove one.
38
+
38
39
* To remove a division, the shortcut is the same as for removing any event: by default, press <kbd>Control+Alt+Right-click</kbd> on the event to remove.
40
+
39
41
* To add a divison, do <kbd>Control+Shift+Left clikc</kbd> from one daughter cell to the other. EpiCure will detect automatically the most likely mother cell.
40
42
If suspect events had been found on the two daughter cells or on the mother cell, they will be automatically removed when manually adding the division.
Copy file name to clipboardExpand all lines: docs/Start-epicure.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,16 +8,20 @@ However, if some format is not correctly recongized/handled by EpiCure, you can
8
8
9
9
In the `Start EpiCure` step, you have a dedicated interface in the right part of the main interface.
10
10
11
+
### Raw movie
11
12
The first file to choose is the movie containing the epithelial staining, with the `image file` parameter.
12
13
It should be _2D(+time/channels) file_. 3D is not handled. If a file has a Z dimension and no temporal dimension, EpiCure will swap them and use the Z axis as time.
13
14
14
15
If the file contains several chanels, the plugin should detect it and show the `junction_chanel` parameter, to choose the chanel that contains the junction staining. The plugin will display only this chanel. If you wish to also see the other chanels, use the option `show other chanels` in the [advanced parameters](#advanced-parameters) panel.
15
16
16
-
The second file is the segmentation of this movie (it should only contain the segmentation), to select with the `segmentation file` parameter. It can be a binarized file of the junctions (skeletonized) or a labelled file (each cell is filled by a unique number).
17
+
### Segmentation/Tracks
18
+
The second file is the segmentation or tracks of this movie (it should only contain the segmentation), to select with the `segmentation file` parameter. It can be a binarized file of the junctions (skeletonized), a labelled file (each cell is filled by a unique number), or a TrackMate `.xml` file.
19
+
20
+
If it is a TrackMate file, the tracks and the divisions will be loaded directly from it.
17
21
18
22
_Note that if you haven't done the segmentation yet, there's an [additional option](./Segment-option.md) in EpiCure to directly run [EpySeg](https://github.com/baigouy/EPySeg) on the loaded movie._
19
23
20
-
If the input movie file had already been processed with EpiCure previously (and saved), EpiCure will automatically propose to load the saved file and reload the previous parameters. You can directly click `START CURE` in this case.
24
+
If the input movie file had already been processed with EpiCure previously (and saved), EpiCure will **automatically propose to load the saved file** and reload the previous parameters. You can directly click `START CURE` in this case.
Copy file name to clipboardExpand all lines: docs/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ It should be _2D(+time/channel) file_.
18
18
Note that if your file format is not correctly handled by EpiCure, you can first open the image with other plugins and start EpiCure from the opened layer(s). See [Start EpiCure page](./Start-epicure.md#start-from-opened-layers) for more details.
19
19
20
20
21
-
The second file is the segmentation of this movie (it should contain only the segmentation). It can be a binarized file of the junctions (skeletonized) or a labelled file (each cell is filled by a unique number).
21
+
The second file is the segmentation of this movie (it should contain only the segmentation) or a TrackMate file (`.xml` file). It can be a binarized file of the junctions (skeletonized), a labelled file (each cell is filled by a unique number) or the `.xml` file generated by TrackMate.
22
22
_Note that if you haven't done the segmentation yet, there's an [additional option](./Segment-option.md) in EpiCure to directly run [EpySeg](https://github.com/baigouy/EPySeg) on the loaded movie._
23
23
24
24
If the input movie file had already been processed with EpiCure previously (and saved), EpiCure will automatically propose to load the saved file and reload the previous parameters. You can directly click `START CURE` in this case.
self.add_key_shortcut( "Labels", shortname="unused paint", fulltext="set the current label to unused value and go to paint mode", key="n" )
151
158
self.add_key_shortcut( "Labels", shortname="unused fill", fulltext="set the current label to unused value and go to fill mode", key="Shift-n" )
152
-
self.add_key_shortcut( "Labels", shortname="swap mode", fulltext="then <Control>+Left click on one cell to another to swap their values", key="w" )
159
+
self.add_key_shortcut( "Labels", shortname="swap mode", fulltext="then <"+self.ctl+">+Left click on one cell to another to swap their values", key="w" )
153
160
154
161
self.add_click_shortcut( "Labels", shortname="erase", fulltext="erase the cell under the click", button="Right", modifiers=None )
155
162
self.add_click_shortcut( "Labels", shortname="merge", fulltext="drag-click from one cell to another to merge them", button="Left", modifiers=["Control"] )
0 commit comments