-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.py
353 lines (303 loc) · 13.8 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
# encoding=utf-8
from flask import Flask, request,jsonify,session
from flask_uploads import UploadSet, configure_uploads
from flask import render_template
import os
import base64
from PIL import Image
from flask_sqlalchemy import SQLAlchemy
from gycMysqlUtils.model import User,Img,UserImg
from io import BytesIO
from wljsearch.SearachImage import searchimage
from gycImgProcess.Basicprocess import Basicprocess
from gycImgProcess.Filtering import Filtering
from gycImgProcess.Seamcarving import Seamcarving
from gycImgProcess.Colorized import Colorized
from gycImgProcess.Dehaze import Dehaze
from gycOsUtils.osUtils import osutils
from gycQiniuUtils.QiniuUtils import qiniuutils
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI']='mysql+pymysql://root:[email protected]:3306/imgprocess'#设置这一项是每次请求结束后都会自动提交数据库中的变动
app.config['SQLALCHEMY_COMMIT_ON_TEARDOWN']=True #实例化
app.config['SQLALCHEMY_TRACK_MODIFICATIONS']=True
db = SQLAlchemy(app)
app.config['SECRET_KEY']="lovewlj"
app.config['ALLOWED_EXTENSIONS'] = set(['png', 'jpg', 'jpeg', 'gif'])
app.config['UPLOAD_PATH'] = os.path.join(os.path.dirname(os.path.abspath(__file__)),"files")
app.config['UPLOADS_DEFAULT_DEST'] = os.path.dirname(os.path.abspath(__file__))
uploaded_photos = UploadSet()
configure_uploads(app, uploaded_photos)
'''
img_path = os.path.join(app.config['UPLOAD_PATH'], session.get('handlingfile_search'))
imgpathlist=searchimage().GetImageFeature(img_path)
img_url = {"code": 200, "len": 7}
for idx,path in enumerate(imgpathlist):
img_url['img'+str(idx)]=Basicprocess().img2base64(Image.open(path))
return jsonify(img_url)
'''
@app.route('/')
def index():
if session.get('username') is None:
return render_template('login.html')
else:
return render_template('foundation.html')
@app.route('/login',methods=['POST'])
def login():
if request.method=='POST':
username = request.form['form-username']
password = request.form['form-password']
user = User.query.filter_by(username=username).first()
if user is not None and user.password==password:
session['username']=username
session['userid']=user.userid
return render_template("foundation.html")
else:
return render_template("register.html")
@app.route('/register',methods=['POST','GET'])
def register():
if request.method=='POST':
username=request.form['form-username']
password=request.form['form-password']
user=User(username,password)
db.session.add(user)
#db.session.commit()
return render_template("login.html")
else:
return render_template("register.html")
@app.route('/workplace',methods=['GET'])
def workplace():
return render_template("thumbnail.html")
@app.route('/search',methods=['GET'])
def search():
return render_template("search.html")
@app.route('/thumbnail',methods=['GET'])
def thumbnail():
#get userid
userid=session.get('userid')
#userid=2
file_url=qiniuutils().fileurl
userimgli = UserImg.query.filter_by(userid=userid).all()
img_url={"code":200,"len":len(userimgli)}
for idx,userimg in enumerate(userimgli):
img_url['img'+str(idx)]=file_url+userimg.filename+'-imgthumbnail'
print(img_url)
return jsonify(img_url)
@app.route('/searchimg',methods=['GET'])
def searchimg():
'''
#img_path = os.path.join(app.config['UPLOAD_PATH'], session.get('handlingfile_search'))
#imgpathlist=.GetImageFeature('../205.jpg')
img_url = {"code": 200, "len": 7}
for i in range(7):
imgpath='files/wanglijuan/searchpath/'+str(i)+'.jpg'
img_url['img'+str(i)]=Basicprocess().img2base64(Image.open(imgpath))
return jsonify(img_url)
'''
if session.get('handlingfile_search') is not None:
img_path = os.path.join(app.config['UPLOAD_PATH'], session.get('handlingfile_search'))
imgpathlist = searchimage().GetImageFeature(img_path)
img_url = {"code": 200, "len": 7}
for idx, path in enumerate(imgpathlist):
img_url['img' + str(idx)] = Basicprocess().img2base64(Image.open(path))
return jsonify(img_url)
else:
return jsonify({'code': 404})
@app.route('/dehazepage')
def dehazepage():
return render_template("dehaze.html")
@app.route('/filter')
def filter():
return render_template('filter.html')
@app.route('/seamcarving')
def seamcarving():
return render_template('objectremove.html')
@app.route('/colorize')
def colorize():
return render_template('colorizer.html')
@app.route('/dehaze',methods=['POST'])
def dehaze():
if session.get('handlingfile_dehaze') is not None:
img_path = os.path.join(app.config['UPLOAD_PATH'], session.get('handlingfile_dehaze'))
img = Dehaze().deHaze(img_path)
#buffered = BytesIO()
#img.save(buffered, format="PNG")
#img_str = base64.b64encode(buffered.getvalue()).decode('utf-8')
session['handlingfile_dehaze_tmp'] = osutils().add_tmp_in_filename(session.get('handlingfile_dehaze'))
img.save(os.path.join(app.config['UPLOAD_PATH'], session['handlingfile_dehaze_tmp']), format="PNG")
img_str = Basicprocess().img2base64(img)
return jsonify({'code': 200, 'img64': img_str})
else:
return jsonify({'code': 404})
se=Seamcarving()
@app.route('/seamcarving/seamcarver', methods=['POST','GET'])
def seamcarver():
if request.method=='POST':
if session.get('handlingfile_objectremove') is not None:
imgbase64 =request.values.get('image').split(",")[1]
#basicprocess=Basicprocess()
mask=Basicprocess().base64_to_rgb(imgbase64)
img_path = os.path.join(app.config['UPLOAD_PATH'], session.get('handlingfile_objectremove'))
img=se.object_remove(img_path,mask)
#buffered = BytesIO()
#mg.save(buffered, format="PNG")
#img_str = base64.b64encode(buffered.getvalue()).decode('utf-8')
session['handlingfile_objectremove_tmp'] = osutils().add_tmp_in_filename(session.get('handlingfile_objectremove'))
img.save(os.path.join(app.config['UPLOAD_PATH'], session['handlingfile_objectremove_tmp']), format="PNG")
img_str = Basicprocess().img2base64(img)
return jsonify({'code': 200, 'img64': img_str})
else:
return jsonify({'code': 404})
if request.method=='GET':
return jsonify({'code': 0, 'progress': se.get_progress()})
cl=Colorized()
@app.route('/colorize/colorizer', methods=['POST','GET'])
def colorizer():
if request.method=='POST':
if session.get('handlingfile_colorizer') is not None:
imgbase64 =request.values.get('image').split(",")[1]
#basicprocess=Basicprocess()
mark=Basicprocess().base64_to_rgb(imgbase64)
img_path = os.path.join(app.config['UPLOAD_PATH'], session.get('handlingfile_colorizer'))
img=cl.colorize(img_path,mark)
#buffered=BytesIO()
#img.save(buffered, format="PNG")
#img_str = base64.b64encode(buffered.getvalue()).decode('utf-8')
session['handlingfile_colorizer_tmp'] = osutils().add_tmp_in_filename(session.get('handlingfile_colorizer'))
img.save(os.path.join(app.config['UPLOAD_PATH'], session['handlingfile_colorizer_tmp']), format="PNG")
img_str = Basicprocess().img2base64(img)
return jsonify({'code': 200, 'img64': img_str})
else:
return jsonify({'code': 404})
if request.method=='GET':
return jsonify({'code': 0, 'progress': cl.get_progress()})
@app.route('/upload/<string:method>', methods=['POST'])
def flask_upload(method):
'''
:param method:basicprocess filter colorizer objectremove
:return:
'''
if request.method == 'POST':
# check if the post request has the file part
if 'file' not in request.files:
return jsonify({'code': -1, 'filename': '', 'msg': 'No file part'})
file = request.files['file']
# if user does not select file, browser also submit a empty part without filename
if file.filename == '':
return jsonify({'code': -1, 'filename': '', 'msg': 'No selected file'})
else:
try:
filename = uploaded_photos.save(file,folder=session.get('username'))
str="handlingfile_"+method
session[str]=filename
#print(str)
return jsonify({'code': 0, 'filename': filename, 'msg': uploaded_photos.url(filename)})
except Exception as e:
return jsonify({'code': -1, 'filename': '', 'msg': 'Error occurred'})
# show photo
@app.route('/files/<string:method>', methods=['GET'])
def show_photo(method):
if request.method == 'GET':
str="handlingfile_"+method
if session.get(str) is not None:
#buffer=BytesIO()
print(os.path.join(app.config['UPLOAD_PATH'],session.get(str)))
img=Image.open(os.path.join(app.config['UPLOAD_PATH'],session.get(str)))
img=img.resize((400,400))
#img.save(buffer,'PNG')
img.save(os.path.join(app.config['UPLOAD_PATH'],session.get(str)),'PNG')
#img_str = base64.b64encode(buffer.getvalue()).decode('utf-8')
img_str = Basicprocess().img2base64(img)
return jsonify({'code': 200, 'img64': img_str})
else:
return jsonify({'code':404})
@app.route('/save/<string:method>',methods=['POST'])
def save(method):
session_item="handlingfile_"+method+"_tmp"
if session.get(session_item) is not None:
filename=session.get(session_item)
img=Img(filename)
db.session.add(img)
db.session.commit()
upload_filename=str(session.get('userid'))+'_'+str(img.imgid)+osutils().get_extension(filename)
upload_path=os.path.join(app.config['UPLOAD_PATH'],session[session_item])
qiniuutils().upload(upload_filename,upload_path)
userimg=UserImg(userid=session.get('userid'),imgid=img.imgid,filename=upload_filename)
db.session.add(userimg)
db.session.commit()
return jsonify({'code': 200})
return jsonify({'code':404})
@app.route('/basicprocess/<string:method>',methods=['POST'])
def basicprocess(method):
if session.get('handlingfile_basicprocess') is not None:
radio = request.form[method]
img_path=os.path.join(app.config['UPLOAD_PATH'], session.get('handlingfile_basicprocess'))
#basic_process =
#buffered = BytesIO()
if method=="contrast":
img=Basicprocess().change_contrast(img_path,float(radio))
elif method=="value":
img = Basicprocess().change_value_quick(img_path,float(radio))
elif method=="saturation":
img = Basicprocess().change_saturation_quick(img_path,float(radio))
elif method == "hue":
img = Basicprocess().change_hue_quick(img_path,float(radio))
session['handlingfile_basicprocess_tmp']=osutils().add_tmp_in_filename(session.get('handlingfile_basicprocess'))
img.save(os.path.join(app.config['UPLOAD_PATH'],session['handlingfile_basicprocess_tmp']),format="PNG")
#img.save(buffered, format="PNG")
#img_str = base64.b64encode(buffered.getvalue()).decode('utf-8')
img_str=Basicprocess().img2base64(img)
return jsonify({'code': 200, 'img64': img_str})
else:
return jsonify({'code': 404})
@app.route('/filtering/<string:method>',methods=['POST'])
def filtering(method):
if session.get('handlingfile_filter') is not None:
img_path=os.path.join(app.config['UPLOAD_PATH'], session.get('handlingfile_filter'))
filtering = Filtering(img_path)
#buffered = BytesIO()
if method=="mean-filter":
img=filtering.mean_filter()
elif method=="median-filter":
img=filtering.median_filter()
elif method=="gaussian-filter":
img=filtering.gaussian_filter()
elif method=="bilateral-filter":
img=filtering.bilateral_filter()
session['handlingfile_filter_tmp']=osutils().add_tmp_in_filename(session.get('handlingfile_filter'))
img.save(os.path.join(app.config['UPLOAD_PATH'],session['handlingfile_filter_tmp']),format="PNG")
img_str = Basicprocess().img2base64(img)
return jsonify({'code': 200, 'img64': img_str})
else:
return jsonify({'code': 404})
@app.route('/clear',methods=['POST'])
def clear():
if session.get('handlingfile') is not None:
img_path = os.path.join(app.config['UPLOAD_PATH'], 'files/%s' % session.get('handlingfile'))
img_str = base64.b64encode(open(img_path, "rb").read()).decode('utf-8')
return jsonify({'code': 200, 'img64': img_str})
else:
return jsonify({'code': 404})
@app.route('/noise/<string:method>',methods=['POST'])
def noise(method):
if session.get('handlingfile') is not None:
img_path = os.path.join(app.config['UPLOAD_PATH'], 'files/%s' % session.get('handlingfile'))
filtering = Filtering(img_path)
buffered = BytesIO()
if method=="salt_noise":
img=filtering.salt_noise()
elif method=="gaussian_noise":
img=filtering.gaussian_noise()
session['handlingfile']=os.path.splitext(session.get('handlingfile'))[0]+method+os.path.splitext(session.get('handlingfile'))[1]
new_img_path = os.path.join(app.config['UPLOAD_PATH'], 'files/%s' % session.get('handlingfile'))
img.save(new_img_path)
img.save(buffered, format="PNG")
img_str = base64.b64encode(open(img_path, "rb").read()).decode('utf-8')
return jsonify({'code': 200, 'img64': img_str})
else:
return jsonify({'code': 404})
@app.route('/logout')
def logout():
session.clear()
return render_template("login.html")
if __name__ == '__main__':
app.run(host="0.0.0.0", port=4400, threaded=True)