Skip to content

Commit 7e6602a

Browse files
committed
typo
1 parent 03257a8 commit 7e6602a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

face_alignment/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def draw_gaussian(image, point, sigma):
5757
g = _gaussian(size)
5858
gauss_kernel = g
5959
else:
60-
g = gauss_kernel.clone()
60+
g = gauss_kernel
6161
g_x = [int(max(1, -ul[0])), int(min(br[0], image.shape[1])) - int(max(1, ul[0])) + int(max(1, -ul[0]))]
6262
g_y = [int(max(1, -ul[1])), int(min(br[1], image.shape[0])) - int(max(1, ul[1])) + int(max(1, -ul[1]))]
6363
img_x = [int(max(1, ul[0])), int(min(br[0], image.shape[1]))]

0 commit comments

Comments
 (0)