I have a numpy array of shape (1, 7, 3) i would like to find the row with highest element in the 3 column. Eg.: 232 is the biggest in the 3rd column so it should output [196 228 232] How can I do it? I tried np.argmax but failed
Here is an example array:
[[[218 204 204]
[344 194 31]
[284 140 108]
[196 228 232]
[324 196 28]
[224 228 57]
[174 250 144]]]
[218 344 284 232 324 228 250]which is max value of each row and i need element with largest row[2] element as in question