YOLO,即You Only Look Once的縮寫,是一個基於卷積神經網絡(CNN)的物體檢測算法。而YOLO v3是YOLO的第3個版本,即YOLO、YOLO 9000、YOLO v3,檢測效果,更準更強。python
YOLO v3的更多細節,能夠參考YOLO的官網。git
YOLO是一句美國的俗語,You Only Live Once,你只能活一次,即人生苦短,及時行樂。github
本文主要分享,如何實現YOLO v3的算法細節,Keras框架。這是第6篇,檢測圖片中的物體,使用訓練完成的模型,經過框置信度與類別置信度的乘積,篩選最優的檢測框。本系列一共6篇,已完結,這是一個完整版 :)redis
本文的GitHub源碼:github.com/SpikeKing/k…算法
已更新:bash
歡迎關注,微信公衆號 深度算法 (ID: DeepAlgorithm) ,瞭解更多深度技術!微信
使用已經訓練完成的YOLO v3模型,檢測圖片中的物體,其中:網絡
實現:session
def detect_img_for_test():
yolo = YOLO()
img_path = './dataset/img.jpg'
image = Image.open(img_path)
r_image = yolo.detect_image(image)
yolo.close_session()
r_image.show()
複製代碼
輸出:app
YOLO類的初始化參數:
實現:
self.anchors_path = 'configs/yolo_anchors.txt' # Anchors
self.model_path = 'model_data/yolo_weights.h5' # 模型文件
self.classes_path = 'configs/coco_classes.txt' # 類別文件
self.score = 0.20
self.iou = 0.20
self.class_names = self._get_class() # 獲取類別
self.anchors = self._get_anchors() # 獲取anchor
self.sess = K.get_session()
self.model_image_size = (416, 416) # fixed size or (None, None), hw
self.colors = self.__get_colors(self.class_names)
self.boxes, self.scores, self.classes = self.generate()
複製代碼
在__get_colors()中:
實現:
@staticmethod def __get_colors(names):
# 不一樣的框,不一樣的顏色
hsv_tuples = [(float(x) / len(names), 1., 1.)
for x in range(len(names))] # 不一樣顏色
colors = list(map(lambda x: colorsys.hsv_to_rgb(*x), hsv_tuples))
colors = list(map(lambda x: (int(x[0] * 255), int(x[1] * 255), int(x[2] * 255)), colors)) # RGB
np.random.seed(10101)
np.random.shuffle(colors)
np.random.seed(None)
return colors
複製代碼
選擇HSV劃分,而不是RGB的緣由是,HSV的顏色值偏移更好,畫出的框,顏色更容易區分。
boxes、scores、classes是在模型的基礎上,繼續封裝,由函數generate()所生成,其中:
在函數generate()中,設置參數:
實現:
num_anchors = len(self.anchors) # anchors的數量
num_classes = len(self.class_names) # 類別數
self.yolo_model = yolo_body(Input(shape=(416, 416, 3)), 3, num_classes)
self.yolo_model.load_weights(model_path) # 加載模型參數
複製代碼
接着,設置input_image_shape爲placeholder,即TF中的參數變量。在yolo_eval中:
實現:
self.input_image_shape = K.placeholder(shape=(2,))
boxes, scores, classes = yolo_eval(
self.yolo_model.output, self.anchors, len(self.class_names),
self.input_image_shape, score_threshold=self.score, iou_threshold=self.iou)
return boxes, scores, classes
複製代碼
輸出的scores值,都會大於score_threshold,小於的在yolo_eval()中已被刪除。
在函數yolo_eval()中,完成預測邏輯的封裝,其中輸入:
其中,yolo_outputs格式,以下:
[(?, 13, 13, 255), (?, 26, 26, 255), (?, 52, 52, 255)]
複製代碼
其中,anchors列表,以下:
[(10,13), (16,30), (33,23), (30,61), (62,45), (59,119), (116,90), (156,198), (373,326)]
複製代碼
實現:
boxes, scores, classes = yolo_eval(
self.yolo_model.output, self.anchors, len(self.class_names),
self.input_image_shape, score_threshold=self.score, iou_threshold=self.iou)
def yolo_eval(yolo_outputs, anchors, num_classes, image_shape, max_boxes=20, score_threshold=.6, iou_threshold=.5):
複製代碼
接着,處理參數:
num_layers = len(yolo_outputs)
anchor_mask = [[6, 7, 8], [3, 4, 5], [0, 1, 2]] if num_layers == 3 else [[3, 4, 5], [1, 2, 3]] # default setting
input_shape = K.shape(yolo_outputs[0])[1:3] * 32
複製代碼
特徵圖越大,13->52,檢測的物體越小,須要的anchors越小,因此anchors列表以倒序賦值。
接着,在YOLO的第l層輸出yolo_outputs中,調用yolo_boxes_and_scores(),提取框_boxes和置信度_box_scores,將3個層的框數據放入列表boxes和box_scores,再拼接concatenate展平,輸出的數據就是全部的框和置信度。
其中,輸出的boxes和box_scores的格式,以下:
boxes: (?, 4) # ?是框數
box_scores: (?, 80)
複製代碼
實現:
boxes = []
box_scores = []
for l in range(num_layers):
_boxes, _box_scores = yolo_boxes_and_scores(
yolo_outputs[l], anchors[anchor_mask[l]], num_classes, input_shape, image_shape)
boxes.append(_boxes)
box_scores.append(_box_scores)
boxes = K.concatenate(boxes, axis=0)
box_scores = K.concatenate(box_scores, axis=0)
複製代碼
concatenate的做用是:將多個層的數據展平,由於框已經還原爲真實座標,不一樣尺度沒有差別。
在函數yolo_boxes_and_scores()中:
實現:
def yolo_boxes_and_scores(feats, anchors, num_classes, input_shape, image_shape):
'''Process Conv layer output'''
box_xy, box_wh, box_confidence, box_class_probs = yolo_head(
feats, anchors, num_classes, input_shape)
boxes = yolo_correct_boxes(box_xy, box_wh, input_shape, image_shape)
boxes = K.reshape(boxes, [-1, 4])
box_scores = box_confidence * box_class_probs
box_scores = K.reshape(box_scores, [-1, num_classes])
return boxes, box_scores
複製代碼
接着:
實現:
mask = box_scores >= score_threshold
max_boxes_tensor = K.constant(max_boxes, dtype='int32')
複製代碼
接着:
實現:
boxes_ = []
scores_ = []
classes_ = []
for c in range(num_classes):
class_boxes = tf.boolean_mask(boxes, mask[:, c])
class_box_scores = tf.boolean_mask(box_scores[:, c], mask[:, c])
nms_index = tf.image.non_max_suppression(
class_boxes, class_box_scores, max_boxes_tensor, iou_threshold=iou_threshold)
class_boxes = K.gather(class_boxes, nms_index)
class_box_scores = K.gather(class_box_scores, nms_index)
classes = K.ones_like(class_box_scores, 'int32') * c
boxes_.append(class_boxes)
scores_.append(class_box_scores)
classes_.append(classes)
boxes_ = K.concatenate(boxes_, axis=0)
scores_ = K.concatenate(scores_, axis=0)
classes_ = K.concatenate(classes_, axis=0)
複製代碼
輸出格式:
boxes_: (?, 4)
scores_: (?,)
classes_: (?,)
複製代碼
第1步,圖像處理:
if self.model_image_size != (None, None): # 416x416, 416=32*13,必須爲32的倍數,最小尺度是除以32
assert self.model_image_size[0] % 32 == 0, 'Multiples of 32 required'
assert self.model_image_size[1] % 32 == 0, 'Multiples of 32 required'
boxed_image = letterbox_image(image, tuple(reversed(self.model_image_size))) # 填充圖像
else:
new_image_size = (image.width - (image.width % 32), image.height - (image.height % 32))
boxed_image = letterbox_image(image, new_image_size)
image_data = np.array(boxed_image, dtype='float32')
print('detector size {}'.format(image_data.shape))
image_data /= 255. # 轉換0~1
image_data = np.expand_dims(image_data, 0) # 添加批次維度,將圖片增長1維
複製代碼
第2步,feed數據,圖像,圖像尺寸;
out_boxes, out_scores, out_classes = self.sess.run(
[self.boxes, self.scores, self.classes],
feed_dict={
self.yolo_model.input: image_data,
self.input_image_shape: [image.size[1], image.size[0]],
K.learning_phase(): 0
})
複製代碼
第3步,繪製邊框,自動設置邊框寬度,繪製邊框和類別文字,使用Pillow繪圖庫。
font = ImageFont.truetype(font='font/FiraMono-Medium.otf',
size=np.floor(3e-2 * image.size[1] + 0.5).astype('int32')) # 字體
thickness = (image.size[0] + image.size[1]) // 512 # 厚度
for i, c in reversed(list(enumerate(out_classes))):
predicted_class = self.class_names[c] # 類別
box = out_boxes[i] # 框
score = out_scores[i] # 執行度
label = '{} {:.2f}'.format(predicted_class, score) # 標籤
draw = ImageDraw.Draw(image) # 畫圖
label_size = draw.textsize(label, font) # 標籤文字
top, left, bottom, right = box
top = max(0, np.floor(top + 0.5).astype('int32'))
left = max(0, np.floor(left + 0.5).astype('int32'))
bottom = min(image.size[1], np.floor(bottom + 0.5).astype('int32'))
right = min(image.size[0], np.floor(right + 0.5).astype('int32'))
print(label, (left, top), (right, bottom)) # 邊框
if top - label_size[1] >= 0: # 標籤文字
text_origin = np.array([left, top - label_size[1]])
else:
text_origin = np.array([left, top + 1])
# My kingdom for a good redistributable image drawing library.
for i in range(thickness): # 畫框
draw.rectangle(
[left + i, top + i, right - i, bottom - i],
outline=self.colors[c])
draw.rectangle( # 文字背景
[tuple(text_origin), tuple(text_origin + label_size)],
fill=self.colors[c])
draw.text(text_origin, label, fill=(0, 0, 0), font=font) # 文案
del draw
複製代碼
concatenate將相同維度的數據元素鏈接到一塊兒。
實現:
from keras import backend as K
sess = K.get_session()
a = K.constant([[2, 4], [1, 2]])
b = K.constant([[3, 2], [5, 6]])
c = [a, b]
c = K.concatenate(c, axis=0)
print(sess.run(c))
""" [[2. 4.] [1. 2.] [3. 2.] [5. 6.]] """
複製代碼
gather以索引選擇列表元素。
實現:
from keras import backend as K
sess = K.get_session()
a = K.constant([[2, 4], [1, 2], [5, 6]])
b = K.gather(a, [1, 2])
print(sess.run(b))
""" [[1. 2.] [5. 6.]] """
複製代碼
OK, that's all! Enjoy it!
歡迎關注,微信公衆號 深度算法 (ID: DeepAlgorithm) ,瞭解更多深度技術!