Hello everybody,
today I want to document another issue that took from me plenty of time. Recently I've used following code in Python in order to save array of numpy numbers:
import numpy as np
newImage = ...some way of getting array
np.ndarray.tofile(newImage, newFn)
But when I tried to get that...