dariush-bahrami commited on
Commit
e9aef8c
1 Parent(s): e58283e

Add references

Browse files
Files changed (2) hide show
  1. app.py +6 -0
  2. references.md +1 -0
app.py CHANGED
@@ -4,6 +4,12 @@ from colortransfer import transfer_color, convert_bytes_to_pil
4
  import io
5
  from PIL import Image
6
 
 
 
 
 
 
 
7
  with st.container():
8
  col1, col2 = st.columns(2)
9
 
 
4
  import io
5
  from PIL import Image
6
 
7
+ with open("references.md") as file:
8
+ refrences = file.read()
9
+
10
+ with st.container():
11
+ st.write(refrences)
12
+
13
  with st.container():
14
  col1, col2 = st.columns(2)
15
 
references.md ADDED
@@ -0,0 +1 @@
 
 
1
+ This space is an [implementation](https://github.com/dariush-bahrami/reinhard_color_transfer) of ["Color transfer between images" by E. Reinhard et. al.](https://doi.org/10.1109/38.946629)