-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfacecase.py
60 lines (49 loc) · 1.58 KB
/
facecase.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
import urllib
import cv2
import numpy as np
import os
def store_raw_images():
neg_images_link="http://image-net.org/api/text/imagenet.synset.geturls?wnid=n00523513"
#neg_images_link="http://image-net.org/api/text/imagenet.synset.geturls?wnid=n07942152"
neg_image_urls= urllib.urlopen(neg_images_link).read().decode()
if not os.path.exists('neg'):
os.makedirs('neg')
pic_num = 1419
for i in neg_image_urls.split('\n'):
try:
print(i)
urllib.urlretrieve(i,"neg/"+str(pic_num)+'.jpg')
img = cv2.imread("neg/"+str(pic_num)+'.jpg',cv2.IMREAD_GRAYSCALE)
resized_image = cv2.resize(img,(100,100))
cv2.imwrite("neg/"+str(pic_num)+'.jpg',resized_image)
pic_num += 1
except Exception as e:
print(str(e))
#store_raw_images()
def find_uglies():
for file_type in ['neg']:
for img in os.listdir(file_type):
for ugly in os.listdir('uglies'):
try:
current_image_path = str(file_type)+'/'+str(img)
ugly = cv2.imread('uglies/'+str(ugly))
question = cv2.imread(current_image_path)
if ugly.shape == question.shape and not(np.bitwise_xor(ugly,question).any()):
print('hottee girl')
print(current_image_path)
os.remove(current_image_path)
except Exception as e:
print(str(e))
#find_uglies()
def create_pos_n_neg():
for file_type in ['neg']:
for img in os.listdir(file_type):
if file_type == 'neg':
line = file_type+'/'+img+'\n'
with open('bg.txt','a') as f:
f.write(line)
elif file_type == 'pos':
line = file_type+'/'+img+'1 0 0 50 50\n'
with open('info.dat','a') as f:
f.write(line)
create_pos_n_neg()