---------------------------------------------------------------------------
KeyboardInterrupt Traceback (most recent call last)
<ipython-input-19-3babdeb27785> in <module>()
12 for fr in fitter_results:
13
---> 14 frame = np.require(np.round(convert_to_menpo(fr).pixels * 255), dtype=np.uint8)
15
16 #for l in fr.final_shape.points:
/data/pythondev/src/menpofast/menpofast/utils.pyc in convert_to_menpo(image)
33 if cls is Image:
34 menpo_image = cls(np.rollaxis(image.pixels, 0, image.n_dims+1),
---> 35 copy=True)
36 elif cls is MaskedImage:
37 menpo_image = cls(np.rollaxis(image.pixels, 0, image.n_dims+1),
/data/pythondev/src/menpofast/menpofast/image/base.pyc in __init__(self, image_data, copy)
97 'Please ensure the data you pass is C-contiguous.')
98 else:
---> 99 image_data = np.array(image_data, copy=True, order='C')
100 # Degenerate case whereby we can just put the extra axis
101 # on ourselves
KeyboardInterrupt: