Returns the positional indices of the maximum value of array values. If there are multiple occurrences of the maximum, the indices reflect the first.
(self)
| 797 | ) |
| 798 | |
| 799 | def arrayArgmax(self) -> Image: |
| 800 | """Returns the positional indices of the maximum value of array values. |
| 801 | |
| 802 | If there are multiple occurrences of the maximum, the indices reflect the |
| 803 | first. |
| 804 | """ |
| 805 | |
| 806 | return apifunction.ApiFunction.call_(self.name() + '.arrayArgmax', self) |
| 807 | |
| 808 | def arrayCat( |
| 809 | self, image2: _arg_types.Image, axis: _arg_types.Integer |