Replies: 1 comment 1 reply
-
Have you tried it out via the Python API via C++? You should be able to use
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I have a python script with a function that returns a 2-dimentional array and looks something like this:
[[ 269.83 1391. ] [ 270.17347367 1483. ] [ 270.51702984 1492. ] ... [1118.45796377 1537. ] [1118.93168884 1541. ] [1119.40545879 1525. ]]
I want to be able to get the whole column 1 ( data[:,1] ), preferably without iterating over the array and convert it to std::vector.
Thank you
Beta Was this translation helpful? Give feedback.
All reactions