Soumen commited on
Commit
68cad5a
·
1 Parent(s): 6e25163

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -136,7 +136,7 @@ def main():
136
  imge = cv2.imread("img.png")
137
  # get co-ordinates to crop the image
138
  imag, lc = line_cor.mark_region(imge)
139
- c = lc[1]
140
  # cropping image img = image[y0:y1, x0:x1]
141
  imgg = imge[c[0][1]:c[1][1], c[0][0]:c[1][0]]
142
  #plt.figure(figsize=(10,10))
 
136
  imge = cv2.imread("img.png")
137
  # get co-ordinates to crop the image
138
  imag, lc = line_cor.mark_region(imge)
139
+ c = lc[min(len(lc)-1,1)]
140
  # cropping image img = image[y0:y1, x0:x1]
141
  imgg = imge[c[0][1]:c[1][1], c[0][0]:c[1][0]]
142
  #plt.figure(figsize=(10,10))