dkriegner / micro-flakes

https://dkriegner.github.io/micro-flakes/
GNU General Public License v3.0
0 stars 0 forks source link

Data type of output #15

Closed ji-ze closed 1 year ago

ji-ze commented 1 year ago

The output is a list of lists of (x, y), where x and y are integers. How to write in the cod. I thing "function() -> data type" https://github.com/dkriegner/micro-flakes/blob/0affe23b43b5e676086691dcedb8850ba9cac0c2/Detector/find_objects.py#L106

dkriegner commented 1 year ago

If the output is a list then I guess you want def _find_objects_low_resolution(self) -> list: A more detailed description of the list needs to be put into the docstring

ji-ze commented 1 year ago

Thank you.

ji-ze commented 1 year ago

Thanks