MSI-Ptolemy API information for developers » History » Version 1
Anchi Cheng, 03/15/2022 05:03 PM
1 | 1 | Anchi Cheng | h1. MSI-Ptolemy API information for developers |
---|---|---|---|
2 | |||
3 | h2. Square_Finding node: |
||
4 | |||
5 | The square finding should operate on each gr image tile at its saved mrc dimension. |
||
6 | |||
7 | # Shell script to call and specified in Blobs settings. |
||
8 | # Output json file is a list of square blob founds by the algorithm. For each item, it requires the following key, value pairs. |
||
9 | |||
10 | h3. area: integer |
||
11 | |||
12 | number of pixels the square opening on the gr tile image. |
||
13 | |||
14 | h3. center: (integer, integer) |
||
15 | |||
16 | The coordinate of the square opening center (col, row) with (0,0) at the start of the data block in the mrc image. |
||
17 | |||
18 | h3. score: (float) |
||
19 | |||
20 | The score of the blob as goodness of the blob as a good square. The higher the number the better. |
||
21 | |||
22 | h3. vertices: [(integer, integer), (integer, integer), (integer, integer), .....] |
||
23 | |||
24 | convex-hull vertices used by leginon to determine if a cursor position is within the square blob. Same coordinate system as centers. |