I have a Python numpy
array I want to change the values of it.
Here is my array:
[[ 0 0 0 ..., 0 0 0]
[ 0 0 0 ..., 0 0 0]
[ 0 0 0 ..., 0 0 0]
...,
[ 0 0 0 ..., 174 152 178]
[ 0 0 0 ..., 193 157 172]
[ 0 0 0 ..., 199 173 166]]
How can I change all values which are greater than 0 to 1?