@@ -26,6 +26,7 @@ def points(
2626 plot_img : core .File ,
2727 method : typing .Optional [int ] = None ,
2828 plot_info : typing .Optional [str ] = None ,
29+ get_img_coords : typing .Optional [bool ] = None ,
2930 request_options : typing .Optional [RequestOptions ] = None ,
3031 ) -> ColorToPoints :
3132 """
@@ -42,6 +43,9 @@ def points(
4243 plot_info : typing.Optional[str]
4344 Can add specific plot info
4445
46+ get_img_coords : typing.Optional[bool]
47+ Whether to get coords of points on image
48+
4549 request_options : typing.Optional[RequestOptions]
4650 Request-specific configuration.
4751
@@ -65,6 +69,7 @@ def points(
6569 params = {
6670 "method" : method ,
6771 "plot_info" : plot_info ,
72+ "get_img_coords" : get_img_coords ,
6873 },
6974 data = {},
7075 files = {
@@ -108,6 +113,7 @@ async def points(
108113 plot_img : core .File ,
109114 method : typing .Optional [int ] = None ,
110115 plot_info : typing .Optional [str ] = None ,
116+ get_img_coords : typing .Optional [bool ] = None ,
111117 request_options : typing .Optional [RequestOptions ] = None ,
112118 ) -> ColorToPoints :
113119 """
@@ -124,6 +130,9 @@ async def points(
124130 plot_info : typing.Optional[str]
125131 Can add specific plot info
126132
133+ get_img_coords : typing.Optional[bool]
134+ Whether to get coords of points on image
135+
127136 request_options : typing.Optional[RequestOptions]
128137 Request-specific configuration.
129138
@@ -155,6 +164,7 @@ async def main() -> None:
155164 params = {
156165 "method" : method ,
157166 "plot_info" : plot_info ,
167+ "get_img_coords" : get_img_coords ,
158168 },
159169 data = {},
160170 files = {
0 commit comments