MCPcopy Create free account
hub / github.com/DSL-Lab/StreamSplat / __init__

Method __init__

datasets/transform_utils.py:129–131  ·  view source on GitHub ↗
(self, mean, std)

Source from the content-addressed store, hash-verified

127 """
128
129 def __init__(self, mean, std):
130 self.__mean = mean
131 self.__std = std
132
133 def __call__(self, sample):
134 sample["image"] = (sample["image"] - self.__mean) / self.__std

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected