pigeon-tem-comms 2.1.1__py3-none-any.whl → 2.1.2__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.
@@ -74,17 +74,19 @@ class Matches(TileMetadata):
74
74
  class TemplateMatch(BaseModel):
75
75
  model_config = {"extra": "forbid"}
76
76
 
77
+ query_point: Tuple[float, float] = Field(
78
+ description="The center point of the template in the template image."
79
+ )
80
+ search_point: Tuple[float, float] = Field(
81
+ description="The center point of the search patch in the search image."
82
+ )
77
83
  offset: Tuple[float, float] = Field(
78
84
  description="The offset between the expected and actual template positions."
79
85
  )
80
86
  distance: float = Field(description="The distance of the offset.")
81
87
  rotation: float = Field(description="The angle of the offset.")
82
- maxVal: float = Field(
83
- description="The maximum value of the template match."
84
- )
85
- minVal: float = Field(
86
- description="The minimum value of the template match."
87
- )
88
+ maxVal: float = Field(description="The maximum value of the template match.")
89
+ minVal: float = Field(description="The minimum value of the template match.")
88
90
  expected_offset_in_crop: Tuple[int, int] = Field(description="")
89
91
  maxLoc: Tuple[int, int] = Field(
90
92
  description="The maximum location of the template match."
@@ -109,7 +111,9 @@ class TemplateMatchContainer(BaseModel):
109
111
  position: Literal["top", "bottom", "left", "right"] = Field(
110
112
  description="The position of matched tile relative to the captured tile."
111
113
  )
112
- matches: List[TemplateMatch] = Field(description="A list of data structures containing the information about each individual match.")
114
+ matches: List[TemplateMatch] = Field(
115
+ description="A list of data structures containing the information about each individual match."
116
+ )
113
117
 
114
118
 
115
119
  class TemplateMatches(TileMetadata):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pigeon-tem-comms
3
- Version: 2.1.1
3
+ Version: 2.1.2
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
@@ -14,12 +14,12 @@ TEM_comms/stage/__init__.py,sha256=UVtYKzMBI01FUADS24xSItNIjhqdZtlDeJdqsDJNVIc,6
14
14
  TEM_comms/stage/aperture.py,sha256=RoZjwmUMsgZcFTW6OYasK7g9pbz5hE0fUAOvWqVPZeA,1029
15
15
  TEM_comms/stage/motion.py,sha256=Ox_WIdhKxhkr7Q9QxbdKRKx-84az5tT_L1yUlxxNrXo,1730
16
16
  TEM_comms/stage/rotation.py,sha256=_rMk9ES7_ivMZ1AypqFVdvcuTbTQ32g9La2L1ZLdMTE,1476
17
- TEM_comms/tile/__init__.py,sha256=_SN7yS_rbosNsZ0n9M62WOlD_WSHnjaLoeg-vvdDeEY,4895
17
+ TEM_comms/tile/__init__.py,sha256=hXeUva171rB0lw7OQpLiCK6UHenLKEiCtQdG5aMX11Q,5144
18
18
  TEM_comms/tile/metadata.py,sha256=iLKEmi-ocC0I_LU4YVk0AymL5zxSmmquk-fKDiKyUg0,1332
19
19
  TEM_comms/tile/statistics.py,sha256=hinAROuYdL4l0SNAdvndqetbWhDiF1ANjMoLJoPubpM,976
20
- pigeon_tem_comms-2.1.1.dist-info/licenses/LICENSE,sha256=tZfQIUX7uNGacTb751ZWInVenJl6OwYQihcGbYrKSts,1463
21
- pigeon_tem_comms-2.1.1.dist-info/METADATA,sha256=3WsqVZnGiI0xuEf3dUnyXqg0aeS65lRNpWkADV6xzkU,1575
22
- pigeon_tem_comms-2.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
23
- pigeon_tem_comms-2.1.1.dist-info/entry_points.txt,sha256=X2WfBCDgfH9XVVqiI4rLu7BLyMNuLW6WWckqXxfbrgk,38
24
- pigeon_tem_comms-2.1.1.dist-info/top_level.txt,sha256=3_1RcQ7xvS2dJEYnPIigo9snoKcSXSNJzPqunY0qydI,10
25
- pigeon_tem_comms-2.1.1.dist-info/RECORD,,
20
+ pigeon_tem_comms-2.1.2.dist-info/licenses/LICENSE,sha256=tZfQIUX7uNGacTb751ZWInVenJl6OwYQihcGbYrKSts,1463
21
+ pigeon_tem_comms-2.1.2.dist-info/METADATA,sha256=gWzWkGLIqyc0nqm1ZlmgZNFt4FVyL6jszVA9jW5QJvw,1575
22
+ pigeon_tem_comms-2.1.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
23
+ pigeon_tem_comms-2.1.2.dist-info/entry_points.txt,sha256=X2WfBCDgfH9XVVqiI4rLu7BLyMNuLW6WWckqXxfbrgk,38
24
+ pigeon_tem_comms-2.1.2.dist-info/top_level.txt,sha256=3_1RcQ7xvS2dJEYnPIigo9snoKcSXSNJzPqunY0qydI,10
25
+ pigeon_tem_comms-2.1.2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5