def TF_adjust_gamma(x, gamma=1.0): assert len(x.shape) == 3 h, w, nc = x.shape return adjust_gamma(x, gamma)