Skip to content

Commit 3c796f3

Browse files
Merge pull request huggingface#37 from vlordier/revert-33-fix-9-lineart
Revert "fix Overload resolution failed"
2 parents dd7e23f + ebea522 commit 3c796f3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/controlnet_aux/lineart_anime/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def __call__(self, input_image, detect_resolution=512, image_resolution=512, ret
156156
image_feed = rearrange(image_feed, 'h w c -> 1 c h w')
157157

158158
line = self.model(image_feed)[0, 0] * 127.5 + 127.5
159-
line = line.cpu().numpy().astype(np.uint8)
159+
line = line.cpu().numpy()
160160

161161
line = cv2.resize(line, (W, H), interpolation=cv2.INTER_CUBIC)
162162
line = line.clip(0, 255).astype(np.uint8)
@@ -170,7 +170,7 @@ def __call__(self, input_image, detect_resolution=512, image_resolution=512, ret
170170

171171
detected_map = cv2.resize(detected_map, (W, H), interpolation=cv2.INTER_LINEAR)
172172
detected_map = 255 - detected_map
173-
173+
174174
if return_pil:
175175
detected_map = Image.fromarray(detected_map)
176176

src/controlnet_aux/open_pose/body.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ def __call__(self, oriImg):
4747

4848
# extract outputs, resize, and remove padding
4949
# heatmap = np.transpose(np.squeeze(net.blobs[output_blobs.keys()[1]].data), (1, 2, 0)) # output 1 is heatmaps
50-
heatmap = np.transpose(np.squeeze(Mconv7_stage6_L2), (1, 2, 0)).astype(np.uint8) # output 1 is heatmaps
50+
heatmap = np.transpose(np.squeeze(Mconv7_stage6_L2), (1, 2, 0)) # output 1 is heatmaps
5151
heatmap = cv2.resize(heatmap, (0, 0), fx=stride, fy=stride, interpolation=cv2.INTER_CUBIC)
52-
heatmap = heatmap[:imageToTest_padded.shape[0] - pad[2], :imageToTest_padded.shape[1] - pad[3], :].astype(np.uint8)
52+
heatmap = heatmap[:imageToTest_padded.shape[0] - pad[2], :imageToTest_padded.shape[1] - pad[3], :]
5353
heatmap = cv2.resize(heatmap, (oriImg.shape[1], oriImg.shape[0]), interpolation=cv2.INTER_CUBIC)
5454

5555
# paf = np.transpose(np.squeeze(net.blobs[output_blobs.keys()[0]].data), (1, 2, 0)) # output 0 is PAFs
56-
paf = np.transpose(np.squeeze(Mconv7_stage6_L1), (1, 2, 0)).astype(np.uint8) # output 0 is PAFs
56+
paf = np.transpose(np.squeeze(Mconv7_stage6_L1), (1, 2, 0)) # output 0 is PAFs
5757
paf = cv2.resize(paf, (0, 0), fx=stride, fy=stride, interpolation=cv2.INTER_CUBIC)
58-
paf = paf[:imageToTest_padded.shape[0] - pad[2], :imageToTest_padded.shape[1] - pad[3], :].astype(np.uint8)
58+
paf = paf[:imageToTest_padded.shape[0] - pad[2], :imageToTest_padded.shape[1] - pad[3], :]
5959
paf = cv2.resize(paf, (oriImg.shape[1], oriImg.shape[0]), interpolation=cv2.INTER_CUBIC)
6060

6161
heatmap_avg += heatmap_avg + heatmap / len(multiplier)

0 commit comments

Comments
 (0)