How to get cell x/y coordinates #1197
-
Hello! I wonder how can get the single x and y coordinates for each cell on CaIman? Here is my code for contour, but each cell has so many coordinates for it. idx = cnm.estimates.idx_components[0] |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
What you are calling Note these kinds of caiman usage questions are better suited for GitHub Discussions. Issues are more for raising software problems/bugs/feature requests. People will be more likely to search/find answers to these types of questions there moving forward. |
Beta Was this translation helpful? Give feedback.
What you are calling
contour_dict
is a coordinates dictionary that includesCoM
key which is the center of mass. Generally you can docontour_dict.keys()
to find what it includes.Note these kinds of caiman usage questions are better suited for GitHub Discussions. Issues are more for raising software problems/bugs/feature requests. People will be more likely to search/find answers to these types of questions there moving forward.