Skip to content

Commit 27e64dc

Browse files
committed
up
1 parent a16c7d3 commit 27e64dc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/controlnet_aux/zoe/__init__.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def to(self, device):
3838
self.model.to(device)
3939
return self
4040

41-
def __call__(self, input_image, detect_resolution=512, image_resolution=512, output_type=None):
41+
def __call__(self, input_image, detect_resolution=512, image_resolution=512, output_type=None, gamma_corrected=False):
4242
device = next(iter(self.model.parameters())).device
4343
if not isinstance(input_image, np.ndarray):
4444
input_image = np.array(input_image, dtype=np.uint8)
@@ -65,6 +65,9 @@ def __call__(self, input_image, detect_resolution=512, image_resolution=512, out
6565
depth -= vmin
6666
depth /= vmax - vmin
6767
depth = 1.0 - depth
68+
69+
if gamma_corrected:
70+
depth = np.power(depth, 2.2)
6871
depth_image = (depth * 255.0).clip(0, 255).astype(np.uint8)
6972

7073
detected_map = depth_image

0 commit comments

Comments
 (0)