Ahsen Khaliq commited on
Commit
2ec56b8
1 Parent(s): 35d47a0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -47,8 +47,8 @@ def inference(file1,file2):
47
  draw_dict={'inlier_color': (0.2, 1, 0.2),
48
  'tentative_color': None,
49
  'feature_color': (0.2, 0.5, 1), 'vertical': False}, ax=ax)
50
-
51
- fig.savefig('example.jpg',dpi=100,bbox_inches='tight', pad_inches=0)
52
  return 'example.jpg'
53
 
54
 
 
47
  draw_dict={'inlier_color': (0.2, 1, 0.2),
48
  'tentative_color': None,
49
  'feature_color': (0.2, 0.5, 1), 'vertical': False}, ax=ax)
50
+ fig.axis('off')
51
+ fig.savefig('example.jpg',dpi=100,bbox_inches='tight')
52
  return 'example.jpg'
53
 
54