-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
121 lines (86 loc) · 3.38 KB
/
app.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
import os
import requests
from flask import Flask, render_template, request, redirect, url_for, g, flash, session
import shutil
import time
from flask_uploads import UploadSet, configure_uploads, IMAGES
import test_network
import imghdr
STATIC_FOLDER = 'static'
app = Flask(__name__, static_folder=STATIC_FOLDER)
app.secret_key = 'secret_key'
photos = UploadSet('photos', IMAGES)
app.config['UPLOADED_PHOTOS_DEST'] = 'static/'
configure_uploads(app, photos)
@app.route('/upload', methods=['GET', 'POST'])
def upload():
if request.method == 'POST' and 'photo' in request.files:
filename = photos.save(request.files['photo'])
cwd = os.getcwd()
session['filepath'] = cwd + "/static/" + filename
return redirect(url_for('result'))
# return render_template('upload.html', filename=filename, results=results)
return render_template('upload.html')
@app.route('/result', methods=['GET', 'POST'])
def result():
path = '256_ObjectCategories'
categories = {}
for root, dirs, files in os.walk(path, topdown=False):
for name in dirs:
categories[name.split('.')[0]] = name.split('.')[-1]
print(categories)
output = test_network.test_network_classifier(str(session['filepath']), 'example_model')
# print(str(output).zfill(3))
result = categories[str(output).zfill(3)]
# print(categories[str(output)])
return render_template('result.html', result=result)
@app.route('/')
def index():
flash('Please enter a word!')
return render_template('index.html')
@app.route('/', methods=['POST'])
def index_post():
if request.form['name'] is not None:
begin = time.time()
user_word = request.form['name']
user_word = user_word.replace(" ", "-")
print("Creating Directory")
directory = '256_ObjectCategories/258.{0}/'.format(user_word)
os.makedirs(
'256_ObjectCategories/258.{0}/'.format(user_word), exist_ok=True)
# grab urls
#chromedriver is for mac, chromedriver2 is for linux
cwd = os.getcwd()
command = "python google_images_download.py --keywords " + user_word + \
" --limit 200 --chromedriver '{0}/chromedriver'".format(cwd)
os.system(command)
# download images
command = "python imagedownload.py " + user_word
os.system(command)
#check that the images are good
for file in os.listdir(directory):
filename = os.fsdecode(file)
filetype = str(imghdr.what(directory + filename))
if(filetype != 'png' or filetype != 'jpeg'):
print(filetype)
os.remove(directory + filename)
for file in os.listdir(directory):
filename = os.fsdecode(file)
filetype = imghdr.what(directory + filename)
print(filetype)
# train network
command = "python train_network.py"
os.system(command)
# reset the stuff
# print("Deleting Directory...")
# shutil.rmtree('256_ObjectCategories/258.{0}/'.format(user_word))
# os.remove("output.csv")
# timing
end = time.time()
print('Total time: ', end - begin)
return redirect(url_for('upload'))
elif request.form['name'] is None:
flash('Please enter a word!')
return redirect(url_for('index'))
if __name__ == '__main__':
app.run(debug=True)