taesiri commited on
Commit
8c622b4
·
1 Parent(s): 7de8585

Fixed Description

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -143,8 +143,8 @@ def generate_correspondences(sousrce_image, target_image, min_x=1, max_x=100, mi
143
 
144
  # GRADIO APP
145
  title = "Correspondence Matching with Convolutional Hough Matching Networks "
146
- description = "Performs keypoint transform from on a 7x7 gird from the source image to the target image. Use the sliders to adjust the grid."
147
- article = "<p style='text-align: center'><a href='https://github.com/juhongm999/chm' target='_blank'>Github Repo</a></p>"
148
 
149
  iface = gr.Interface(fn=generate_correspondences,
150
  inputs=[gr.inputs.Image(shape=(240, 240), type='pil'),
 
143
 
144
  # GRADIO APP
145
  title = "Correspondence Matching with Convolutional Hough Matching Networks "
146
+ description = "Performs keypoint transform from a 7x7 gird from the source image to the target image. Use the sliders to adjust the grid."
147
+ article = "<p style='text-align: center'><a href='https://github.com/juhongm999/chm' target='_blank'>Original Github Repo</a></p>"
148
 
149
  iface = gr.Interface(fn=generate_correspondences,
150
  inputs=[gr.inputs.Image(shape=(240, 240), type='pil'),