pigeon-tem-comms 0.4.10__py3-none-any.whl → 0.5.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
TEM_comms/__init__.py CHANGED
@@ -1,12 +1,4 @@
1
- from . import buffer
2
- from . import camera
3
- from . import scope
4
- from . import stage
5
- from . import tile
6
- from . import ui
7
- from . import montage
8
- from . import qc
9
-
1
+ from . import buffer, camera, montage, qc, roi, scope, stage, tile, ui
10
2
 
11
3
  topics = {
12
4
  "buffer.status": buffer.Status,
@@ -36,4 +28,7 @@ topics = {
36
28
  "montage.start": montage.Start,
37
29
  "montage.finished": montage.Finished,
38
30
  "qc.status": qc.Status,
31
+ "roi.load": roi.LoadROI,
32
+ "roi.create": roi.CreateROI,
33
+ "roi.current": roi.ROI,
39
34
  }
TEM_comms/roi.py ADDED
@@ -0,0 +1,45 @@
1
+ from pigeon import BaseMessage
2
+ from typing import List, Tuple, Optional
3
+ from pydantic import Field
4
+
5
+
6
+ class Vertex(BaseMessage):
7
+ x: float
8
+ y: float
9
+
10
+
11
+ class ROI(BaseMessage):
12
+ vertices: List[Vertex]
13
+ rotation_angle: float
14
+ buffer_size: float = 0.0
15
+ montage_id: str
16
+ specimen_id: Optional[str] = None
17
+ grid_id: Optional[str] = None
18
+ section_id: Optional[str] = None
19
+ metadata: Optional[dict] = None
20
+ queue_position: Optional[int] = Field(
21
+ None, description="Position in queue, None means set as current"
22
+ )
23
+
24
+
25
+ class LoadROI(BaseMessage):
26
+ specimen_id: str
27
+ section_id: str
28
+ grid_id: Optional[str] = None
29
+ queue_position: Optional[int] = Field(
30
+ None, description="Position in queue, None means set as current"
31
+ )
32
+
33
+
34
+ class CreateROI(BaseMessage):
35
+ center: Vertex
36
+ width: float
37
+ height: float
38
+ rotation_angle: float = 0.0
39
+ montage_id: str
40
+ specimen_id: Optional[str] = None
41
+ grid_id: Optional[str] = None
42
+ section_id: Optional[str] = None
43
+ queue_position: Optional[int] = Field(
44
+ None, description="Position in queue, None means set as current"
45
+ )
@@ -1,35 +1,24 @@
1
- from pigeon import BaseMessage
1
+ from .metadata import TileMetadata
2
2
  from . import statistics
3
3
 
4
4
 
5
- class Preview(BaseMessage):
6
- tile_id: str
5
+ class Preview(TileMetadata):
7
6
  image: str
8
7
 
9
8
 
10
- class Minimap(BaseMessage):
11
- tile_id: str
12
- path: str
9
+ class Minimap(TileMetadata):
10
+ image: str
13
11
 
14
12
 
15
- class Raw(BaseMessage):
16
- tile_id: str
17
- montage_id: str
13
+ class Raw(TileMetadata):
18
14
  path: str
19
- row: int
20
- column: int
21
- overlap: int
22
15
 
23
16
 
24
- class Transform(BaseMessage):
25
- montage_id: str
26
- tile_id: str
17
+ class Transform(TileMetadata):
27
18
  rotation: float
28
19
  x: float
29
20
  y: float
30
21
 
31
22
 
32
- class Processed(BaseMessage):
33
- montage_id: str
34
- tile_id: str
23
+ class Processed(TileMetadata):
35
24
  path: str
@@ -0,0 +1,9 @@
1
+ from pigeon import BaseMessage
2
+
3
+
4
+ class TileMetadata(BaseMessage):
5
+ tile_id: str
6
+ montage_id: str
7
+ row: int
8
+ column: int
9
+ overlap: int
@@ -1,22 +1,16 @@
1
- from pigeon import BaseMessage
1
+ from .metadata import TileMetadata
2
+ from typing import List
2
3
 
3
4
 
4
- class Focus(BaseMessage):
5
- montage_id: str
6
- tile_id: str
5
+ class Focus(TileMetadata):
7
6
  focus: float
8
7
 
9
8
 
10
- class Histogram(BaseMessage):
11
- montage_id: str
12
- tile_id: str
13
- path: str
9
+ class Histogram(TileMetadata):
10
+ hist: List[int]
14
11
 
15
12
 
16
- class MinMaxMean(BaseMessage):
17
- montage_id: str
18
- tile_id: str
13
+ class MinMaxMean(TileMetadata):
19
14
  min: int
20
15
  max: int
21
16
  mean: int
22
-
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pigeon-tem-comms
3
- Version: 0.4.10
3
+ Version: 0.5.0
4
4
  Summary: Pigeon messages for the next generation TEM imaging system.
5
5
  Author-email: Cameron Devine <cameron.devine@alleninstitute.org>
6
6
  License: BSD 3 Clause
@@ -0,0 +1,21 @@
1
+ TEM_comms/__init__.py,sha256=YCjLxCTzYjlYToUwPCuUeTUWIi3yrEPb0P6h_gJJ_Po,1263
2
+ TEM_comms/buffer.py,sha256=Jr6fUIbUPreQSSGKWR7jkA1McyZZv3lVE8uQSER8VL4,123
3
+ TEM_comms/camera.py,sha256=L9ebaZra-M3g571PUzQCAuC92Auw4ox3gRceJ2uKRhs,522
4
+ TEM_comms/montage.py,sha256=PCfve__0M3S2RSmBtrDRlDlmIW_qJffDRE8gnlEHoxY,281
5
+ TEM_comms/qc.py,sha256=sujy2i0wimMvrHDPEXKdaiO7xxvRcHiy83mVpATLyqA,141
6
+ TEM_comms/roi.py,sha256=37fKMT-KNJfWOwWvFAPTFHuBzkV1h6RS42kQsU00teQ,1145
7
+ TEM_comms/scope.py,sha256=lPEKzWT2raR6ailiAitvWXH-Xu6fxWwYBf3GPfVIizc,761
8
+ TEM_comms/ui.py,sha256=Yxd0i4wjmddDl9sVzcFHHu5b6n0ICzaO0b_8SmAysxg,1459
9
+ TEM_comms/stage/__init__.py,sha256=UVtYKzMBI01FUADS24xSItNIjhqdZtlDeJdqsDJNVIc,67
10
+ TEM_comms/stage/aperture.py,sha256=lyJO34_K76MKrZ-o2izd5V7eEN55d3lGu__RvZq-NlA,227
11
+ TEM_comms/stage/motion.py,sha256=1NSuGQvPjlxwnkaV410VGDBBtmsISQn_XjZcPuUXvQg,244
12
+ TEM_comms/stage/rotation.py,sha256=J7tAIP2nskjInhZmdIbqwrvxTFXihEynVOAyxbDDfjU,262
13
+ TEM_comms/tile/__init__.py,sha256=bC8Tm7cFyFHdFkW20uD5vAtGvz7HrCn0E9sOxtCLo_E,319
14
+ TEM_comms/tile/metadata.py,sha256=pUxmi_C02e5nwTm51rIULkKaRz6ij5mlXylzAcDU-9c,149
15
+ TEM_comms/tile/statistics.py,sha256=ij0ggk15J_jikIkuSDmhvY96yjliofFRN5SNdsGA0lA,232
16
+ pigeon_tem_comms-0.5.0.dist-info/LICENSE,sha256=tZfQIUX7uNGacTb751ZWInVenJl6OwYQihcGbYrKSts,1463
17
+ pigeon_tem_comms-0.5.0.dist-info/METADATA,sha256=lOD0EGJK7vzX-hWJabxrJ1w4TDbtsque1OUurU20vaE,1553
18
+ pigeon_tem_comms-0.5.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
19
+ pigeon_tem_comms-0.5.0.dist-info/entry_points.txt,sha256=X2WfBCDgfH9XVVqiI4rLu7BLyMNuLW6WWckqXxfbrgk,38
20
+ pigeon_tem_comms-0.5.0.dist-info/top_level.txt,sha256=3_1RcQ7xvS2dJEYnPIigo9snoKcSXSNJzPqunY0qydI,10
21
+ pigeon_tem_comms-0.5.0.dist-info/RECORD,,
@@ -1,19 +0,0 @@
1
- TEM_comms/__init__.py,sha256=MC7FgQrqnsNQ3i7AVU9CrJXLjNv0tGbka_LZCRrmsdI,1260
2
- TEM_comms/buffer.py,sha256=Jr6fUIbUPreQSSGKWR7jkA1McyZZv3lVE8uQSER8VL4,123
3
- TEM_comms/camera.py,sha256=L9ebaZra-M3g571PUzQCAuC92Auw4ox3gRceJ2uKRhs,522
4
- TEM_comms/montage.py,sha256=PCfve__0M3S2RSmBtrDRlDlmIW_qJffDRE8gnlEHoxY,281
5
- TEM_comms/qc.py,sha256=sujy2i0wimMvrHDPEXKdaiO7xxvRcHiy83mVpATLyqA,141
6
- TEM_comms/scope.py,sha256=lPEKzWT2raR6ailiAitvWXH-Xu6fxWwYBf3GPfVIizc,761
7
- TEM_comms/ui.py,sha256=Yxd0i4wjmddDl9sVzcFHHu5b6n0ICzaO0b_8SmAysxg,1459
8
- TEM_comms/stage/__init__.py,sha256=UVtYKzMBI01FUADS24xSItNIjhqdZtlDeJdqsDJNVIc,67
9
- TEM_comms/stage/aperture.py,sha256=lyJO34_K76MKrZ-o2izd5V7eEN55d3lGu__RvZq-NlA,227
10
- TEM_comms/stage/motion.py,sha256=1NSuGQvPjlxwnkaV410VGDBBtmsISQn_XjZcPuUXvQg,244
11
- TEM_comms/stage/rotation.py,sha256=J7tAIP2nskjInhZmdIbqwrvxTFXihEynVOAyxbDDfjU,262
12
- TEM_comms/tile/__init__.py,sha256=RlmgJt3ELn3PWlv1kIr0dRAgMaSaMcsy6fgtsQ3hMr0,500
13
- TEM_comms/tile/statistics.py,sha256=big7ydZe18RaT_B_sh1ust7MiGITOZ1aJdH7mY9T2BY,307
14
- pigeon_tem_comms-0.4.10.dist-info/LICENSE,sha256=tZfQIUX7uNGacTb751ZWInVenJl6OwYQihcGbYrKSts,1463
15
- pigeon_tem_comms-0.4.10.dist-info/METADATA,sha256=FvkJBs7WKF0zBh3jQiOcVED0zl1ufZwacz7k2ojTFcA,1554
16
- pigeon_tem_comms-0.4.10.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
17
- pigeon_tem_comms-0.4.10.dist-info/entry_points.txt,sha256=X2WfBCDgfH9XVVqiI4rLu7BLyMNuLW6WWckqXxfbrgk,38
18
- pigeon_tem_comms-0.4.10.dist-info/top_level.txt,sha256=3_1RcQ7xvS2dJEYnPIigo9snoKcSXSNJzPqunY0qydI,10
19
- pigeon_tem_comms-0.4.10.dist-info/RECORD,,