(data, u=256)
| 715 | return (Encoder.uLawInvert((data-0.5)*2)+1)/2 |
| 716 | |
| 717 | def quantify(data, u=256): |
| 718 | return np.floor(data/(1/u))*(1/u) |
| 719 | |
| 720 | def max_value(data=[]): |
| 721 | _max = 0 |
nothing calls this directly
no outgoing calls
no test coverage detected