I'm trying to transform each element of a numpy array into an array itself (say, to interpret a greyscale image as a color image). In other words:
>>> my_ar = numpy.array((0,5,10))
[0, 5, 10]
>>> transformed = my_fun(my_ar) # In reality, my_fun() would do something more useful
array([
[ 0, 0, 0],
[ 5, 5, 5],
[10,10,10]])
>>> transformed.shape
(3, 3)
I've tried:
def my_fun_e(val):
return numpy.array((val, val, val))
my_fun = numpy.frompyfunc(my_fun_e, 1, 3)
but get:
my_fun(my_ar)
(array([0, 5, 10], dtype=object), array([0, 5, 10], dtype=object), array([0, 5, 10], dtype=object))
and I've tried:
my_fun = numpy.frompyfunc(my_fun_e, 1, 1)
but get:
>>> my_fun(test)
(array([[0 0 0], [5 5 5], [10 10 10]], dtype=object), array([None, None, None], dtype=object), array([None, None, None], dtype=object))
<b>Update:</b> The problem really seems to be that I'm getting an array of array objects back, not a higher-dimensional array. My result stops working like a normal array.
Any thoughts on how I could make this work?