Skip to content

Commit 2f00374

Browse files
strides
1 parent 3103151 commit 2f00374

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

3d_edge_detection.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ def __init__(self,img,kernal,strides):
4040
def vertical(self):
4141

4242
self.gen_img = []
43-
for ht in range(0,self.height-2):
43+
for ht in range(0,self.height-2,self.strides):
4444
row =[]
45-
for wdt in range(0,self.width-2):
45+
for wdt in range(0,self.width-2,self.strides):
4646
n_img = self.img[ht:ht+3,wdt:wdt+3] * self.kernal
4747
row.append(sum(list(map(lambda x :sum(x),n_img))))
4848
self.gen_img.append(row)

0 commit comments

Comments
 (0)