日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

RCAR会议:我的RTFA算法里面的generate_detections.py文件

發(fā)布時間:2024/1/1 编程问答 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 RCAR会议:我的RTFA算法里面的generate_detections.py文件 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

地址: nk_DeepSortYolo/deep_sort_yolov3-master/tools/generate_detections.py

# vim: expandtab:ts=4:sw=4 import os import errno import argparse import numpy as np import cv2 import tensorflow as tf from PIL import Image # from PIL import Image 配合  # TODO 放縮def _run_in_batches(f, data_dict, out, batch_size): # TODO 4data_len = len(out)# print(data_len)為人的個數(shù)num_batches = int(data_len / batch_size)s, e = 0, 0for i in range(num_batches):s, e = i * batch_size, (i + 1) * batch_sizebatch_data_dict = {k: v[s:e] for k, v in data_dict.items()}out[s:e] = f(batch_data_dict)if e < len(out):batch_data_dict = {k: v[e:] for k, v in data_dict.items()}out[e:] = f(batch_data_dict)# 我們引用了新的放縮方法(此處) def scaling_extract_image_patch: 來讓動物的全身特征都加入特征內(nèi)放縮為(64,128) # 而不是(下面)的 def extract_image_patch: 提取圖片切片是不包含放縮小的直接切成(64,128)寬高的人性切片, # 但是放縮方法并不好用在行人reid # TODO 5 一:放縮法 x方向 def scaling_x_extract_image_patch(image, bbox, patch_shape): # patch_shape = image_shape: [128, 64, 3]# patch_shape = image_shape[:2]=[128, 64]"""Extract image patch from bounding box.Parameters----------image : ndarrayThe full image.bbox : array_likeThe bounding box in format (x, y, width, height).這里的xy指的是左上角點的坐標(biāo)patch_shape : Optional[array_like]This parameter can be used to enforce a desired patch shape(height, width). First, the `bbox` is adapted to the aspect ratioof the patch shape, then it is clipped at the image boundaries.If None, the shape is computed from :arg:`bbox`.Returns-------ndarray | NoneTypeAn image patch showing the :arg:`bbox`, optionally reshaped to:arg:`patch_shape`.Returns None if the bounding box is empty or fully outside of the imageboundaries.如果bbox空的或者完全離開圖像邊界,就返回none"""# print('bbox:', bbox) # 列表bbox = np.array(bbox) # 現(xiàn)在是數(shù)組# print('bbox:', bbox)# bbox1 = bbox# bbox1[2:] += bbox1[:2]# bbox1 = bbox1.astype(np.int)# sx1, sy1, ex1, ey1 = bbox1# print('bbox:', bbox) # 數(shù)組# 只改變寬度來適應(yīng)縱橫比'''省略了這里面的剪裁步驟,轉(zhuǎn)而進(jìn)行下面的放縮過程 # TODO 放縮if patch_shape is not None: # patch_shape為image_shape[:2]=[128, 64] 高寬# correct aspect ratio to patch shapetarget_aspect = float(patch_shape[1]) / patch_shape[0] # 寬/高 height bbox[3]高在這里沒有改變,只改變寬度new_width = target_aspect * bbox[3] # bbox[3] height# 新的寬度 = 寬/高  ×bbox[高]bbox[0] -= (new_width - bbox[2]) / 2 # 中心點x,這里的新的寬度一般是小于原來寬度,所以--為+最后是加# bbox(x, y, width, height)# bbox[2]是原來的寬,  x - (新寬 - 原來寬)/2bbox[2] = new_width# bbox 新的xywh'''# convert (x,y,width,height) to ( left,top,right, bottom ) ltrbbbox[2:] += bbox[:2]bbox = bbox.astype(np.int)# clip at image boundariesbbox[:2] = np.maximum(0, bbox[:2]) # top,left 取非負(fù)bbox[2:] = np.minimum(np.asarray(image.shape[:2][::-1]) - 1, bbox[2:]) # right,bottom不要過原圖像右下界限if np.any(bbox[:2] >= bbox[2:]): # 圖像top left 不能大于 right bottomreturn Nonesx, sy, ex, ey = bbox # x左 y上 x右 y下# print('class:', type(image)) # <class 'numpy.ndarray'># print('shape:', image.shape) # (480, 640, 3)image = image[sy:ey, sx:ex] # y方向,x方向 <class 'numpy.ndarray'># image1 = image[sy1:ey1, sx1:ex1]# TODO 放縮\# print('class:', type(image)) # <class 'numpy.ndarray'># image = np.rot90(image)# TODO 放縮0 numpy 截取出來的最初結(jié)果cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-scale-x1' + ".jpg", image)# print('patch_shape', patch_shape)image = cv2.resize(image, (patch_shape[1], patch_shape[0])) # TODO 此步驟可以取代后面 放縮1,2,3,4步驟# patch_shape = [128, 64]cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-scale-x2-zoom' + ".jpg", image)'''# 注釋:因為我沒有發(fā)現(xiàn)cv2針對<class 'numpy.ndarray'>格式圖片有放縮函數(shù) cv2.resize(image, (64, 128)),# 因而采取了下面轉(zhuǎn)換為Image格式在用 Image里面的image.resize((64, 128))函數(shù),再轉(zhuǎn)換為<class 'numpy.ndarray'>格式的笨方法.# 并且此方法還會導(dǎo)致色彩錯亂,下面地址可見案例/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/色彩錯亂案例# TODO 放縮1 image 格式轉(zhuǎn)換為Imageimage = Image.fromarray(cv2.cvtColor(image, cv2.COLOR_BGR2RGB)) # 從cv格式轉(zhuǎn)換為Image格式 image.save('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-1' + ".jpg")# print('class', type(image)) # <class 'PIL.Image.Image'># image = image.rotate(-90) # -90是順時針旋轉(zhuǎn)90度# TODO 放縮2 image 放縮為 寬高1:2image = image.resize((64, 128)) # 調(diào)整圖片大小# 此時image <class 'PIL.Image.Image'>image.save('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-2' + ".jpg")# TODO 放縮3 numpy 再從image格式轉(zhuǎn)換為numpy格式image = np.reshape(image, (128, 64, 3)) # 如果是灰度圖片 把3改為-1# print('1', type(image)) <class 'numpy.ndarray'>cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-3' + ".jpg", image)# cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-2' + ".jpg", image1)# TODO 放縮4 (此步驟貌似可以省略)image = cv2.resize(image, tuple(patch_shape[::-1])) # resize需要(寬,高)格式 patch_shape 是[高,寬]# print('2', type(image)) # <class 'numpy.ndarray'>cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-4' + ".jpg", image)# resize需要(寬,高)格式 image_shape高寬為[128, 64, 3] # image_shape[:2]= patch_shape 是[高,寬]'''# TODO 放縮/return image# 我們引用了新的放縮方法(此處) def scaling_extract_image_patch: 來讓動物的全身特征都加入特征內(nèi)放縮為(64,128) # 而不是(下面)的 def extract_image_patch: 提取圖片切片是不包含放縮小的直接切成(64,128)寬高的人性切片, # 但是放縮方法并不好用在行人reid# TODO 5 二(90):放縮法 y方向 def scaling_y_extract_image_patch(image, bbox, patch_shape):# patch_shape = image_shape[:2]=[128, 64]"""Extract image patch from bounding box.Parameters----------image : ndarrayThe full image.bbox : array_likeThe bounding box in format (x, y, width, height).這里的xy指的是左上角點的坐標(biāo)patch_shape : Optional[array_like]This parameter can be used to enforce a desired patch shape(height, width). First, the `bbox` is adapted to the aspect ratioof the patch shape, then it is clipped at the image boundaries.If None, the shape is computed from :arg:`bbox`.Returns-------ndarray | NoneTypeAn image patch showing the :arg:`bbox`, optionally reshaped to:arg:`patch_shape`.Returns None if the bounding box is empty or fully outside of the imageboundaries.如果bbox空的或者完全離開圖像邊界,就返回none"""# print('bbox:', bbox) # 列表bbox = np.array(bbox) # 現(xiàn)在是數(shù)組# print('bbox:', bbox)# bbox1 = bbox# bbox1[2:] += bbox1[:2]# bbox1 = bbox1.astype(np.int)# sx1, sy1, ex1, ey1 = bbox1# print('bbox:', bbox) # 數(shù)組# 只改變寬度來適應(yīng)縱橫比'''省略了這里面的剪裁步驟,轉(zhuǎn)而進(jìn)行下面的放縮過程 # TODO 放縮if patch_shape is not None: # patch_shape為image_shape[:2]=[128, 64] 高寬# correct aspect ratio to patch shapetarget_aspect = float(patch_shape[1]) / patch_shape[0] # 寬/高 height bbox[3]高在這里沒有改變,只改變寬度new_width = target_aspect * bbox[3] # bbox[3] height# 新的寬度 = 寬/高  ×bbox[高]bbox[0] -= (new_width - bbox[2]) / 2 # 中心點x,這里的新的寬度一般是小于原來寬度,所以--為+最后是加# bbox(x, y, width, height)# bbox[2]是原來的寬,  x - (新寬 - 原來寬)/2bbox[2] = new_width# bbox 新的xywh'''# convert (x,y,width,height) to ( left,top,right, bottom ) ltrbbbox[2:] += bbox[:2]bbox = bbox.astype(np.int)# clip at image boundariesbbox[:2] = np.maximum(0, bbox[:2]) # top,left 取非負(fù)bbox[2:] = np.minimum(np.asarray(image.shape[:2][::-1]) - 1, bbox[2:]) # right,bottom不要過原圖像右下界限if np.any(bbox[:2] >= bbox[2:]): # 圖像top left 不能大于 right bottomreturn Nonesx, sy, ex, ey = bbox # x左 y上 x右 y下# print('class:', type(image)) # <class 'numpy.ndarray'># print('shape:', image.shape) # (480, 640, 3)image = image[sy:ey, sx:ex] # y方向,x方向 <class 'numpy.ndarray'># image1 = image[sy1:ey1, sx1:ex1]# TODO 放縮\# print('class:', type(image)) # <class 'numpy.ndarray'># image = np.rot90(image)# TODO 放縮0 numpy 截取出來的最初結(jié)果cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-scale90-y1' + ".jpg", image)image = cv2.resize(image, (patch_shape[0], patch_shape[1])) # TODO 此步驟可以取代后面 放縮1,2,3,4步驟# patch_shape = [128, 64]cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-scale90-y2-zoom' + ".jpg", image)image = np.rot90(image)# print('y90', image.shape)cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-scale90-y3-rot90' + ".jpg", image)'''旋轉(zhuǎn) 不好用, 報錯參數(shù)是浮點形應(yīng)該是整形# rows, cols, channel = image.shape# rows = int(rows)# cols = int(cols)# print('rows, cols, channel:', rows, ' ', cols, ' ', channel)# change = cv2.getRotationMatrix2D((rows//2, cols//2), 90, 1)# image = cv2.warpAffine(image, change, (rows, cols))'''# cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-2' + ".jpg", image)'''# 注釋:因為我沒有發(fā)現(xiàn)cv2針對<class 'numpy.ndarray'>格式圖片有放縮函數(shù) cv2.resize(image, (64, 128)),# 因而采取了下面轉(zhuǎn)換為Image格式在用 Image里面的image.resize((64, 128))函數(shù),再轉(zhuǎn)換為<class 'numpy.ndarray'>格式的笨方法.# 并且此方法還會導(dǎo)致色彩錯亂,下面地址可見案例/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/色彩錯亂案例# TODO 放縮1 image 格式轉(zhuǎn)換為Imageimage = Image.fromarray(cv2.cvtColor(image, cv2.COLOR_BGR2RGB)) # 從cv格式轉(zhuǎn)換為Image格式 image.save('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-1' + ".jpg")# print('class', type(image)) # <class 'PIL.Image.Image'># image = image.rotate(-90) # -90是順時針旋轉(zhuǎn)90度# TODO 放縮2 image 放縮為 寬高1:2image = image.resize((64, 128)) # 調(diào)整圖片大小# 此時image <class 'PIL.Image.Image'>image.save('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-2' + ".jpg")# TODO 放縮3 numpy 再從image格式轉(zhuǎn)換為numpy格式image = np.reshape(image, (128, 64, 3)) # 如果是灰度圖片 把3改為-1# print('1', type(image)) <class 'numpy.ndarray'>cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-3' + ".jpg", image)# cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-2' + ".jpg", image1)# TODO 放縮4 (此步驟貌似可以省略)image = cv2.resize(image, tuple(patch_shape[::-1])) # resize需要(寬,高)格式 patch_shape 是[高,寬]# print('2', type(image)) # <class 'numpy.ndarray'>cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-4' + ".jpg", image)# resize需要(寬,高)格式 image_shape高寬為[128, 64, 3] # image_shape[:2]= patch_shape 是[高,寬]'''# TODO 放縮/return image# TODO 5 二(270):放縮法 y方向 def scaling_y_270_extract_image_patch(image, bbox, patch_shape):# patch_shape = image_shape[:2]=[128, 64]"""Extract image patch from bounding box.Parameters----------image : ndarrayThe full image.bbox : array_likeThe bounding box in format (x, y, width, height).這里的xy指的是左上角點的坐標(biāo)patch_shape : Optional[array_like]This parameter can be used to enforce a desired patch shape(height, width). First, the `bbox` is adapted to the aspect ratioof the patch shape, then it is clipped at the image boundaries.If None, the shape is computed from :arg:`bbox`.Returns-------ndarray | NoneTypeAn image patch showing the :arg:`bbox`, optionally reshaped to:arg:`patch_shape`.Returns None if the bounding box is empty or fully outside of the imageboundaries.如果bbox空的或者完全離開圖像邊界,就返回none"""# print('bbox:', bbox) # 列表bbox = np.array(bbox) # 現(xiàn)在是數(shù)組# print('bbox:', bbox)# bbox1 = bbox# bbox1[2:] += bbox1[:2]# bbox1 = bbox1.astype(np.int)# sx1, sy1, ex1, ey1 = bbox1# print('bbox:', bbox) # 數(shù)組# 只改變寬度來適應(yīng)縱橫比'''省略了這里面的剪裁步驟,轉(zhuǎn)而進(jìn)行下面的放縮過程 # TODO 放縮if patch_shape is not None: # patch_shape為image_shape[:2]=[128, 64] 高寬# correct aspect ratio to patch shapetarget_aspect = float(patch_shape[1]) / patch_shape[0] # 寬/高 height bbox[3]高在這里沒有改變,只改變寬度new_width = target_aspect * bbox[3] # bbox[3] height# 新的寬度 = 寬/高  ×bbox[高]bbox[0] -= (new_width - bbox[2]) / 2 # 中心點x,這里的新的寬度一般是小于原來寬度,所以--為+最后是加# bbox(x, y, width, height)# bbox[2]是原來的寬,  x - (新寬 - 原來寬)/2bbox[2] = new_width# bbox 新的xywh'''# convert (x,y,width,height) to ( left,top,right, bottom ) ltrbbbox[2:] += bbox[:2]bbox = bbox.astype(np.int)# clip at image boundariesbbox[:2] = np.maximum(0, bbox[:2]) # top,left 取非負(fù)bbox[2:] = np.minimum(np.asarray(image.shape[:2][::-1]) - 1, bbox[2:]) # right,bottom不要過原圖像右下界限if np.any(bbox[:2] >= bbox[2:]): # 圖像top left 不能大于 right bottomreturn Nonesx, sy, ex, ey = bbox # x左 y上 x右 y下# print('class:', type(image)) # <class 'numpy.ndarray'># print('shape:', image.shape) # (480, 640, 3)image = image[sy:ey, sx:ex] # y方向,x方向 <class 'numpy.ndarray'># image1 = image[sy1:ey1, sx1:ex1]# TODO 放縮\# print('class:', type(image)) # <class 'numpy.ndarray'># image = np.rot90(image)# TODO 放縮0 numpy 截取出來的最初結(jié)果cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-scale270-y1' + ".jpg", image)image = cv2.resize(image, (patch_shape[0], patch_shape[1])) # TODO 此步驟可以取代后面 放縮1,2,3,4步驟cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-scale270-y2-zoom' + ".jpg", image)image = cv2.flip(image, 0, dst=None) # 水平鏡像cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-scale270-y2-flip' + ".jpg", image)image = np.rot90(image)# print('y270', image.shape)cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-scale270-y2-rot90' + ".jpg", image)'''旋轉(zhuǎn) 不好用, 報錯參數(shù)是浮點形應(yīng)該是整形# rows, cols, channel = image.shape# rows = int(rows)# cols = int(cols)# print('rows, cols, channel:', rows, ' ', cols, ' ', channel)# change = cv2.getRotationMatrix2D((rows//2, cols//2), 90, 1)# image = cv2.warpAffine(image, change, (rows, cols))'''# cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-2' + ".jpg", image)'''# 注釋:因為我沒有發(fā)現(xiàn)cv2針對<class 'numpy.ndarray'>格式圖片有放縮函數(shù) cv2.resize(image, (64, 128)),# 因而采取了下面轉(zhuǎn)換為Image格式在用 Image里面的image.resize((64, 128))函數(shù),再轉(zhuǎn)換為<class 'numpy.ndarray'>格式的笨方法.# 并且此方法還會導(dǎo)致色彩錯亂,下面地址可見案例/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/色彩錯亂案例# TODO 放縮1 image 格式轉(zhuǎn)換為Imageimage = Image.fromarray(cv2.cvtColor(image, cv2.COLOR_BGR2RGB)) # 從cv格式轉(zhuǎn)換為Image格式 image.save('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-1' + ".jpg")# print('class', type(image)) # <class 'PIL.Image.Image'># image = image.rotate(-90) # -90是順時針旋轉(zhuǎn)90度# TODO 放縮2 image 放縮為 寬高1:2image = image.resize((64, 128)) # 調(diào)整圖片大小# 此時image <class 'PIL.Image.Image'>image.save('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-2' + ".jpg")# TODO 放縮3 numpy 再從image格式轉(zhuǎn)換為numpy格式image = np.reshape(image, (128, 64, 3)) # 如果是灰度圖片 把3改為-1# print('1', type(image)) <class 'numpy.ndarray'>cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-3' + ".jpg", image)# cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-2' + ".jpg", image1)# TODO 放縮4 (此步驟貌似可以省略)image = cv2.resize(image, tuple(patch_shape[::-1])) # resize需要(寬,高)格式 patch_shape 是[高,寬]# print('2', type(image)) # <class 'numpy.ndarray'>cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-4' + ".jpg", image)# resize需要(寬,高)格式 image_shape高寬為[128, 64, 3] # image_shape[:2]= patch_shape 是[高,寬]'''# TODO 放縮/return image# 此處的提取圖片切片是不包含放縮小的直接切成(64,128)寬高的人性切片, # 因為我們引用了新的放縮方法(在上面) def scaling_extract_image_patch: 來讓動物的全身特征都加入特征內(nèi)放縮為(64,128) # TODO 5 三:切割法 x方向 def extract_image_patch(image, bbox, patch_shape):# patch_shape = image_shape[:2]=[128, 64]"""Extract image patch from bounding box.Parameters----------image : ndarrayThe full image.bbox : array_likeThe bounding box in format (x, y, width, height).這里的xy指的是左上角點的坐標(biāo)patch_shape : Optional[array_like]This parameter can be used to enforce a desired patch shape(height, width). First, the `bbox` is adapted to the aspect ratioof the patch shape, then it is clipped at the image boundaries.If None, the shape is computed from :arg:`bbox`.Returns-------ndarray | NoneTypeAn image patch showing the :arg:`bbox`, optionally reshaped to:arg:`patch_shape`.Returns None if the bounding box is empty or fully outside of the imageboundaries.如果bbox空的或者完全離開圖像邊界,就返回none"""# print('bbox:', bbox) # 列表bbox = np.array(bbox)# bbox1 = bbox# bbox1[2:] += bbox1[:2]# bbox1 = bbox1.astype(np.int)# sx1, sy1, ex1, ey1 = bbox1# print('bbox:', bbox) # 數(shù)組# 只改變寬度來適應(yīng)縱橫比if patch_shape is not None: # patch_shape為image_shape[:2]=[128, 64] 高寬# correct aspect ratio to patch shapetarget_aspect = float(patch_shape[1]) / patch_shape[0] # 寬/高 height bbox[3]高在這里沒有改變,只改變寬度new_width = target_aspect * bbox[3] # bbox[3] height# 新的寬度 = 寬/高  ×bbox[高]bbox[0] -= (new_width - bbox[2]) / 2 # 中心點x,這里的新的寬度一般是小雨原來寬度,所以--為+最后是加# bbox(x, y, width, height)# bbox[2]是原來的寬,  x - (新寬 - 原來寬)/2bbox[2] = new_width# bbox 新的xywh# convert (x,y,width,height) to ( left,top,right, bottom ) ltrbbbox[2:] += bbox[:2]bbox = bbox.astype(np.int)# clip at image boundariesbbox[:2] = np.maximum(0, bbox[:2]) # top,left 取非負(fù)bbox[2:] = np.minimum(np.asarray(image.shape[:2][::-1]) - 1, bbox[2:]) # right,bottom不要過原圖像右下界限if np.any(bbox[:2] >= bbox[2:]): # 圖像top left 不能大于 right bottomreturn Nonesx, sy, ex, ey = bbox # x左 y上 x右 y下image = image[sy:ey, sx:ex] # y方向,x方向# image1 = image[sy1:ey1, sx1:ex1]cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-cut-x1' + ".jpg", image)# cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-2' + ".jpg", image1)image = cv2.resize(image, tuple(patch_shape[::-1])) # <class 'numpy.ndarray'>cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-cut-x2-zoom' + ".jpg", image)# resize需要(寬,高)格式 image_shape高寬為[128, 64, 3] # image_shape[:2]= patch_shape 是[高,寬]return image# 此處的提取圖片切片是不包含放縮小的直接切成(64,128)寬高的人性切片, # 因為我們引用了新的放縮方法(在上面) def scaling_extract_image_patch: 來讓動物的全身特征都加入特征內(nèi)放縮為(64,128)# TODO 5 四(90):切割法 y方向 def y_extract_image_patch(image, bbox, patch_shape):# patch_shape = image_shape[:2]=[128, 64]"""Extract image patch from bounding box.Parameters----------image : ndarrayThe full image.bbox : array_likeThe bounding box in format (x, y, width, height).這里的xy指的是左上角點的坐標(biāo)patch_shape : Optional[array_like]This parameter can be used to enforce a desired patch shape(height, width). First, the `bbox` is adapted to the aspect ratioof the patch shape, then it is clipped at the image boundaries.If None, the shape is computed from :arg:`bbox`.Returns-------ndarray | NoneTypeAn image patch showing the :arg:`bbox`, optionally reshaped to:arg:`patch_shape`.Returns None if the bounding box is empty or fully outside of the imageboundaries.如果bbox空的或者完全離開圖像邊界,就返回none"""# print('bbox:', bbox) # 列表bbox = np.array(bbox)# bbox1 = bbox# bbox1[2:] += bbox1[:2]# bbox1 = bbox1.astype(np.int)# sx1, sy1, ex1, ey1 = bbox1# print('bbox:', bbox) # 數(shù)組# 只改變寬度來適應(yīng)縱橫比if patch_shape is not None: # patch_shape為image_shape[:2]=[128, 64] 高寬# correct aspect ratio to patch shape# patch_shape[1] = 64'''錯誤示范target_aspect = float(patch_shape[0]) / patch_shape[1] # 128/64 height bbox[3]高在這里沒有改變,只改變寬度new_width = target_aspect * bbox[3] # bbox[3] height# 新的寬度 = 寬/高(1/2)  ×bbox[高]bbox[0] -= (new_width - bbox[2]) / 2 # 中心點x,這里的新的寬度一般是小雨原來寬度,所以--為+最后是加# bbox(x, y, width, height)# bbox[2]是原來的寬,  x - (新寬 - 原來寬)/2bbox[2] = new_width# bbox 新的xywh'''###target_aspect = float(patch_shape[1]) / patch_shape[0] # 64/128 height bbox[3]高在這里沒有改變,只改變寬度new_height = target_aspect * bbox[2] # bbox[2] width# 新的高 = 寬/高(1/2)  ×bbox[寬]bbox[1] -= (new_height - bbox[3]) / 2 # 中心點x,這里的新的寬度一般是小雨原來寬度,所以--為+最后是加# bbox(x, y, width, height)# bbox[2]是原來的寬,  x - (新寬 - 原來寬)/2bbox[3] = new_height# bbox 新的xywh#### convert (x,y,width,height) to ( left,top,right, bottom ) ltrbbbox[2:] += bbox[:2]bbox = bbox.astype(np.int)# clip at image boundariesbbox[:2] = np.maximum(0, bbox[:2]) # top,left 取非負(fù)bbox[2:] = np.minimum(np.asarray(image.shape[:2][::-1]) - 1, bbox[2:]) # right,bottom不要過原圖像右下界限if np.any(bbox[:2] >= bbox[2:]): # 圖像top left 不能大于 right bottomreturn Nonesx, sy, ex, ey = bbox # x左 y上 x右 y下image = image[sy:ey, sx:ex] # y方向,x方向# image1 = image[sy1:ey1, sx1:ex1]cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-cut90-y1' + ".jpg", image)# cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-2' + ".jpg", image1)image = cv2.resize(image, tuple(patch_shape)) # <class 'numpy.ndarray'>cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-cut90-y2-zoom' + ".jpg", image)image = np.rot90(image, 1) # 地面朝向右邊cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-cut90-y3-rot90' + ".jpg", image)# resize需要(寬,高)格式 image_shape高寬為[128, 64, 3] # image_shape[:2]= patch_shape 是[高,寬]return image# TODO 5 四(270):切割法 y方向 def y_270_extract_image_patch(image, bbox, patch_shape):# patch_shape = image_shape[:2]=[128, 64]"""Extract image patch from bounding box.Parameters----------image : ndarrayThe full image.bbox : array_likeThe bounding box in format (x, y, width, height).這里的xy指的是左上角點的坐標(biāo)patch_shape : Optional[array_like]This parameter can be used to enforce a desired patch shape(height, width). First, the `bbox` is adapted to the aspect ratioof the patch shape, then it is clipped at the image boundaries.If None, the shape is computed from :arg:`bbox`.Returns-------ndarray | NoneTypeAn image patch showing the :arg:`bbox`, optionally reshaped to:arg:`patch_shape`.Returns None if the bounding box is empty or fully outside of the imageboundaries.如果bbox空的或者完全離開圖像邊界,就返回none"""# print('bbox:', bbox) # 列表bbox = np.array(bbox)# bbox1 = bbox# bbox1[2:] += bbox1[:2]# bbox1 = bbox1.astype(np.int)# sx1, sy1, ex1, ey1 = bbox1# print('bbox:', bbox) # 數(shù)組# 只改變寬度來適應(yīng)縱橫比if patch_shape is not None: # patch_shape為image_shape[:2]=[128, 64] 高寬# correct aspect ratio to patch shape# patch_shape[1] = 64target_aspect = float(patch_shape[1]) / patch_shape[0] # 64/128 height bbox[3]高在這里沒有改變,只改變寬度new_height = target_aspect * bbox[2] # bbox[2] width# 新的高 = 寬/高(1/2)  ×bbox[寬]bbox[1] -= (new_height - bbox[3]) / 2 # 中心點x,這里的新的寬度一般是小雨原來寬度,所以--為+最后是加# bbox(x, y, width, height)# bbox[2]是原來的寬,  x - (新寬 - 原來寬)/2bbox[3] = new_height# bbox 新的xywh# convert (x,y,width,height) to ( left,top,right, bottom ) ltrbbbox[2:] += bbox[:2]bbox = bbox.astype(np.int)# clip at image boundariesbbox[:2] = np.maximum(0, bbox[:2]) # top,left 取非負(fù)bbox[2:] = np.minimum(np.asarray(image.shape[:2][::-1]) - 1, bbox[2:]) # right,bottom不要過原圖像右下界限if np.any(bbox[:2] >= bbox[2:]): # 圖像top left 不能大于 right bottomreturn Nonesx, sy, ex, ey = bbox # x左 y上 x右 y下image = image[sy:ey, sx:ex] # y方向,x方向# image1 = image[sy1:ey1, sx1:ex1]cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-cut270-y1' + ".jpg", image)# cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-2' + ".jpg", image1)image = cv2.resize(image, tuple(patch_shape)) # <class 'numpy.ndarray'>cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-cut270-y2-zoom' + ".jpg", image)image = cv2.flip(image, 1, dst=None) # 水平鏡像cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-cut270-y2-mirror' + ".jpg", image)image = np.rot90(image, 1) # 地面朝向右邊cv2.imwrite('/home/hp/zjc/nk_PyCharm/PyCharm_project/nk_DeepSortYolo/train/' + '-cut270-y3_rot90' + ".jpg", image)# resize需要(寬,高)格式 image_shape高寬為[128, 64, 3] # image_shape[:2]= patch_shape 是[高,寬]return image''' # TODO 5 一:放縮法 x方向 def scaling_x_extract_image_patch(image, bbox, patch_shape): # patch_shape = image_shape: [128, 64, 3] # TODO 5 二(90):放縮法 y方向 def scaling_y_extract_image_patch(image, bbox, patch_shape): # TODO 5 二(270):放縮法 y方向 def scaling_y_270_extract_image_patch(image, bbox, patch_shape): # TODO 5 三:切割法 x方向 def extract_image_patch(image, bbox, patch_shape): # TODO 5 四:切割法(90) y方向 def y_extract_image_patch(image, bbox, patch_shape): # TODO 5 四:切割法(270) y方向 def y_270_extract_image_patch(image, bbox, patch_shape): '''# TODO 被特征1,2調(diào)用: 被下面 def create_box_encoder_xy() 與 def create_box_encoder() 調(diào)用 class ImageEncoder(object): # TODO ImageEncoderdef __init__(self, checkpoint_filename, input_name="images",output_name="features"):self.session = tf.Session()with tf.gfile.GFile(checkpoint_filename, "rb") as file_handle: # TODO 2 學(xué)習(xí)tf這部分graph_def = tf.GraphDef()# tf.gfile.GFile(filename, mode)# 獲取文本操作句柄,類似于python提供的文本操作open()函數(shù),filename是要打開的文件名,# mode是以何種方式去讀寫,將會返回一個文本操作句柄。graph_def.ParseFromString(file_handle.read())tf.import_graph_def(graph_def, name="net")# 將圖從graph_def導(dǎo)入到當(dāng)前默認(rèn)圖中.# graph_def: 包含要導(dǎo)入到默認(rèn)圖中的操作的GraphDef proto。self.input_var = tf.get_default_graph().get_tensor_by_name("net/%s:0" % input_name)print('self.input_var:', self.input_var)# input_var: Tensor("net/images:0", shape=(?, 128, 64, 3), dtype=uint8)self.output_var = tf.get_default_graph().get_tensor_by_name("net/%s:0" % output_name)print('self.output_name:', self.output_var)# output_name: Tensor("net/features:0", shape=(?, 128), dtype=float32)# print('self.input_var', self.input_var) Tensor("net/images:0", shape=(?, 128, 64, 3), dtype=uint8)# print('self.output_var', self.output_var) Tensor("net/features:0", shape=(?, 128), dtype=float32)assert len(self.output_var.get_shape()) == 2assert len(self.input_var.get_shape()) == 4self.feature_dim = self.output_var.get_shape().as_list()[-1]self.image_shape = self.input_var.get_shape().as_list()[1:]# print('self.feature_dim', self.feature_dim) 128# print('第一個shape:', self.image_shape) 高寬為[128, 64, 3]def __call__(self, data_x, batch_size=32):out = np.zeros((len(data_x), self.feature_dim), np.float32)# print(data_x) # 為(1, 128, 64, 3)的四維數(shù)組多層嵌套,兩個人就1變2# print(data_x.shape)# print(len(data_x)) # 為1# print('zeros:', out.shape) # 為(1,128)一個人,128特征 [[0.17.., ... ,0.066..]]數(shù)組_run_in_batches(lambda x: self.session.run(self.output_var, feed_dict=x),{self.input_var: data_x}, out, batch_size)# def _run_in_batches(f, data_dict, out, batch_size):# f# data_dict {self.input_var: data_x}# out.shape為(1,128)一個人,128特征 數(shù)組形式# batch_size為1# TODO 3 print('ImageEncoder結(jié)果輸出out為:', '\n', out, '\n', out.shape)return out# TODO 特征1: x方向, y90方向, y270方向, 三特征綜合考慮 def create_box_encoder_xy(model_filename, input_name="images",output_name="features", batch_size=32): # TODO 1 encoder(model_filename, batch_size=1)image_encoder = ImageEncoder(model_filename, input_name, output_name) # TODO ImageEncoder# image_encoder= out [[0.17.., ... ,0.066..][..., ..., ...]] (2,128) 數(shù)組含義,兩個人,128特征# print('image_encoder:', image_encoder)# image_encoder: <tools.generate_detections.ImageEncoder object at 0x7efc20031f98>image_shape = image_encoder.image_shape# print('image_shape:', image_shape)# image_shape: [128, 64, 3]# print('image_shape:', image_shape) # self.image_shape高寬為[128, 64, 3]def encoder(image, boxes):print('-->三特征create_box_encoder_xy')image_patches = []image_patches_y = [] # todo yimage_patches_y_270 = [] # todo y270for box in boxes: # 此處循環(huán), 針對每個目標(biāo)進(jìn)行處理patch = scaling_x_extract_image_patch(image, box, image_shape[:2]) # TODO 5patch_y = scaling_y_extract_image_patch(image, box, image_shape[:2]) # todo ypatch_y_270 = scaling_y_270_extract_image_patch(image, box, image_shape[:2]) # todo y270'''# TODO 5 一:放縮法 x方向def scaling_x_extract_image_patch(image, bbox, patch_shape): # patch_shape = image_shape: [128, 64, 3]# TODO 5 二(90):放縮法 y方向def scaling_y_extract_image_patch(image, bbox, patch_shape):# TODO 5 二(270):放縮法 y方向def scaling_y_270_extract_image_patch(image, bbox, patch_shape):# TODO 5 三:切割法 x方向def extract_image_patch(image, bbox, patch_shape):# TODO 5 四:切割法(90) y方向def y_extract_image_patch(image, bbox, patch_shape):# TODO 5 四:切割法(270) y方向'''# patch = extract_image_patch(image, box, image_shape[:2]) # TODO 5# patch_y = y_extract_image_patch(image, box, image_shape[:2]) # todo y# patch_y_270 = y_270_extract_image_patch(image, box, image_shape[:2]) # todo y270print('pathce.shape:', patch.shape) # features.shape (1, 128)print('pathce_y.shape:', patch_y.shape) # features_y.shape (2, 128)print('pathce_y_270.shape:', patch_y_270.shape) # features__270.shape (0, 128)s# TODO 5 extract_image_patch & scaling_x_extract_image_patch# print('格式:', type(patch)) # <class 'numpy.ndarray'># image_shape[:2]=[128, 64]# type(patch)是numpy.ndarray數(shù)組# TODO patch是正常的縱向reid,patch2,patch3是橫向if patch is None:print("WARNING: Failed to extract image patch: %s." % str(box))patch = np.random.uniform(0., 255., image_shape).astype(np.uint8) # 在0到255范圍內(nèi)隨機(jī)取,矩陣是[128,64]的隨機(jī)數(shù)if patch_y is None: # todo yprint("WARNING: Failed to extract image patch: %s." % str(box))patch_y = np.random.uniform(0., 255., image_shape).astype(np.uint8) # 在0到255范圍內(nèi)隨機(jī)取,矩陣是[128,64]的隨機(jī)數(shù)if patch_y_270 is None: # todo yprint("WARNING: Failed to extract image patch: %s." % str(box))patch_y_270 = np.random.uniform(0., 255., image_shape).astype(np.uint8) # 在0到255范圍內(nèi)隨機(jī)取,矩陣是[128,64]的隨機(jī)數(shù)image_patches.append(patch) # 出現(xiàn)了幾個人,就有幾個box,就有幾個patch <class 'list'>image_patches_y.append(patch_y) # 出現(xiàn)了幾個人,就有幾個box,就有幾個patch # todo yimage_patches_y_270.append(patch_y_270) # 出現(xiàn)了幾個人,就有幾個box,就有幾個patch # todo y270# type(image_patches) 是列表image_patches = np.asarray(image_patches) # image_patches --> <class 'numpy.ndarray'>image_patches_y = np.asarray(image_patches_y) # todo yimage_patches_y_270 = np.asarray(image_patches_y_270) # todo y270# type(image_patches)是numpy.ndarray數(shù)組# print('batch_size', batch_size) # 永遠(yuǎn)都是1# print('image_patches', image_patches)return image_encoder(image_patches, batch_size), \image_encoder(image_patches_y, batch_size),\image_encoder(image_patches_y_270, batch_size)return encoder# TODO 特征2: 原始的x方向單一特征 def create_box_encoder(model_filename, input_name="images",output_name="features", batch_size=32): # TODO 1 encoder(model_filename, batch_size=1)image_encoder = ImageEncoder(model_filename, input_name, output_name) # TODO ImageEncoder# image_encoder= out [[0.17.., ... ,0.066..][..., ..., ...]] (2,128) 數(shù)組含義,兩個人,128特征# print('image_encoder:', image_encoder)# image_encoder: <tools.generate_detections.ImageEncoder object at 0x7efc20031f98>image_shape = image_encoder.image_shape# print('image_shape:', image_shape)# image_shape: [128, 64, 3]# print('image_shape:', image_shape) # self.image_shape高寬為[128, 64, 3]def encoder(image, boxes):print('-->單特征create_box_encoder')image_patches = []# image_patches_y = [] # todo y# image_patches_y_270 = [] # todo y270for box in boxes: # 此處循環(huán), 針對每個目標(biāo)進(jìn)行處理patch = extract_image_patch(image, box, image_shape[:2]) # TODO 5 x 縮放法# patch_y = scaling_y_extract_image_patch(image, box, image_shape[:2]) # todo y# patch_y_270 = scaling_y_270_extract_image_patch(image, box, image_shape[:2]) # todo y270# TODO 5 extract_image_patch & scaling_x_extract_image_patch# print('格式:', type(patch)) # <class 'numpy.ndarray'># image_shape[:2]=[128, 64]# type(patch)是numpy.ndarray數(shù)組# TODO patch是正常的縱向reid,patch2,patch3是橫向if patch is None:print("WARNING: Failed to extract image patch: %s." % str(box))patch = np.random.uniform(0., 255., image_shape).astype(np.uint8) # 在0到255范圍內(nèi)隨機(jī)取,矩陣是[128,64]的隨機(jī)數(shù)'''if patch_y is None: # todo yprint("WARNING: Failed to extract image patch: %s." % str(box))patch_y = np.random.uniform(0., 255., image_shape).astype(np.uint8) # 在0到255范圍內(nèi)隨機(jī)取,矩陣是[128,64]的隨機(jī)數(shù)if patch_y_270 is None: # todo yprint("WARNING: Failed to extract image patch: %s." % str(box))patch_y_270 = np.random.uniform(0., 255., image_shape).astype(np.uint8) # 在0到255范圍內(nèi)隨機(jī)取,矩陣是[128,64]的隨機(jī)數(shù)'''image_patches.append(patch) # 出現(xiàn)了幾個人,就有幾個box,就有幾個patch <class 'list'># image_patches_y.append(patch_y) # 出現(xiàn)了幾個人,就有幾個box,就有幾個patch # todo y# image_patches_y.append(patch_y_270) # 出現(xiàn)了幾個人,就有幾個box,就有幾個patch # todo y270# type(image_patches) 是列表image_patches = np.asarray(image_patches) # image_patches --> <class 'numpy.ndarray'># image_patches_y = np.asarray(image_patches_y) # todo y# image_patches_y_270 = np.asarray(image_patches_y_270) # todo y270# type(image_patches)是numpy.ndarray數(shù)組# print('batch_size', batch_size) # 永遠(yuǎn)都是1# print('image_patches', image_patches)return image_encoder(image_patches, batch_size)# image_encoder(image_patches_y, batch_size), image_encoder(image_patches_y_270, batch_size)return encoderdef generate_detections(encoder, mot_dir, output_dir, detection_dir=None):"""Generate detections with features.Parameters----------encoder : Callable[image, ndarray] -> ndarrayThe encoder function takes as input a BGR color image and a matrix ofbounding boxes in format `(x, y, w, h)` and returns a matrix ofcorresponding feature vectors.mot_dir : strPath to the MOTChallenge directory (can be either train or test).output_dirPath to the output directory. Will be created if it does not exist.detection_dirPath to custom detections. The directory structure should be the defaultMOTChallenge structure: `[sequence]/det/det.txt`. If None, uses thestandard MOTChallenge detections."""if detection_dir is None:detection_dir = mot_dirtry:os.makedirs(output_dir)except OSError as exception:if exception.errno == errno.EEXIST and os.path.isdir(output_dir):passelse:raise ValueError("Failed to created output directory '%s'" % output_dir)for sequence in os.listdir(mot_dir):print("Processing %s" % sequence)sequence_dir = os.path.join(mot_dir, sequence)image_dir = os.path.join(sequence_dir, "img1")image_filenames = {int(os.path.splitext(f)[0]): os.path.join(image_dir, f)for f in os.listdir(image_dir)}detection_file = os.path.join(detection_dir, sequence, "det/det.txt")detections_in = np.loadtxt(detection_file, delimiter=',')detections_out = []frame_indices = detections_in[:, 0].astype(np.int)min_frame_idx = frame_indices.astype(np.int).min()max_frame_idx = frame_indices.astype(np.int).max()for frame_idx in range(min_frame_idx, max_frame_idx + 1):print("Frame %05d/%05d" % (frame_idx, max_frame_idx))mask = frame_indices == frame_idxrows = detections_in[mask]if frame_idx not in image_filenames:print("WARNING could not find image for frame %d" % frame_idx)continuebgr_image = cv2.imread(image_filenames[frame_idx], cv2.IMREAD_COLOR)features = encoder(bgr_image, rows[:, 2:6].copy())detections_out += [np.r_[(row, feature)] for row, featurein zip(rows, features)]output_filename = os.path.join(output_dir, "%s.npy" % sequence)np.save(output_filename, np.asarray(detections_out), allow_pickle=False)def parse_args():"""Parse command line arguments."""parser = argparse.ArgumentParser(description="Re-ID feature extractor")parser.add_argument("--model",default="resources/networks/mars-small128.pb",help="Path to freezed inference graph protobuf.")parser.add_argument("--mot_dir", help="Path to MOTChallenge directory (train or test)",required=True)parser.add_argument("--detection_dir", help="Path to custom detections. Defaults to ""standard MOT detections Directory structure should be the default ""MOTChallenge structure: [sequence]/det/det.txt", default=None)parser.add_argument("--output_dir", help="Output directory. Will be created if it does not"" exist.", default="detections")return parser.parse_args()def main():args = parse_args()encoder = create_box_encoder(args.model, batch_size=32)generate_detections(encoder, args.mot_dir, args.output_dir,args.detection_dir)if __name__ == "__main__":main()

?

?

?

?

?

?

?

?

?

?

?

?

總結(jié)

以上是生活随笔為你收集整理的RCAR会议:我的RTFA算法里面的generate_detections.py文件的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。

国产亚洲人| 国产日产精品久久久久快鸭 | 亚洲欧洲成人精品av97 | 五月婷婷.com | 久久深夜福利免费观看 | 精品视频区 | 91天天操| 一区二区三区免费网站 | 久久99国产精品久久99 | 国产女人18毛片水真多18精品 | 国产这里只有精品 | 色综合在 | 国内精品视频在线 | 91豆花在线 | 四虎国产精品永久在线国在线 | 97福利视频 | 日韩中字在线观看 | 99视频| 久久狠狠干 | 日韩二区精品 | 成人一级黄色片 | 精品国产乱码一区二区三区在线 | 奇米影视777影音先锋 | 一区二区精品视频 | 中文字幕在线乱 | 91精品国产高清自在线观看 | 免费观看国产精品视频 | 国产亚洲精品久久久久久无几年桃 | 日日夜夜骑 | 国产成人在线免费观看 | 日本黄色免费大片 | 中文国产在线观看 | 国产高清日韩欧美 | 国产精品密入口果冻 | 婷婷av网站| 国产 一区二区三区 在线 | 婷婷丁香五 | 丁香婷婷综合五月 | 黄色成年网站 | 日韩欧三级 | 亚洲成人精品 | 亚洲一区二区三区91 | 国产一区免费观看 | 99久久日韩精品免费热麻豆美女 | 在线国产能看的 | 狠狠狠色丁香婷婷综合激情 | 黄色av三级在线 | 欧美日韩另类在线 | 色偷偷中文字幕 | 国产精品18久久久久久久 | a在线免费观看视频 | 91在线免费看片 | .国产精品成人自产拍在线观看6 | 黄色高清视频在线观看 | 97国产大学生情侣白嫩酒店 | 日本黄色大片免费 | 亚洲精品欧洲精品 | 久久久国产在线视频 | 国产成人福利 | 免费看的黄色网 | 久久综合狠狠综合久久激情 | 久久视频这里有精品 | 日韩在线视频一区 | 美女黄久久 | av丝袜制服 | 五月天婷亚洲天综合网鲁鲁鲁 | 亚洲综合在线五月天 | 色妞色视频一区二区三区四区 | 欧美日韩视频免费看 | 96在线 | 久久国产精品免费看 | 成年人国产精品 | 中文字幕在线免费 | 国产精品欧美久久久久无广告 | 久久久精品日本 | 日av免费 | 狠狠躁日日躁狂躁夜夜躁 | 日韩欧美一区二区三区视频 | 精品在线观 | 在线免费观看欧美日韩 | 中文视频在线看 | 日韩三级av | 激情网五月婷婷 | 国产在线污 | 黄色免费在线视频 | 特级西西444www高清大视频 | 亚洲黄色在线播放 | 久草在线91| 成人a级免费视频 | 99久久精品午夜一区二区小说 | 婷婷综合导航 | 色婷婷福利视频 | 最新日本中文字幕 | 日韩欧美精品一区二区 | 欧美俄罗斯性视频 | 美女久久久久 | 成人免费在线电影 | 亚洲免费在线观看视频 | 亚洲天堂在线观看完整版 | 久久免费av | 日产乱码一二三区别免费 | 国产精品9区 | 亚洲专区在线视频 | 欧美一级视频一区 | 91麻豆免费版 | 九九爱免费视频在线观看 | 国产一区二区在线免费 | 久久亚洲私人国产精品va | 丁香激情综合国产 | 久久99精品久久久久久久久久久久 | 欧美夫妻性生活电影 | 五月婷激情 | 人人插人人费 | 99久久99久久| 成人黄色在线观看视频 | 国产精品成人a免费观看 | 国产精品va在线观看入 | 亚洲一级免费观看 | 日韩免费观看av | 欧美日韩视频一区二区三区 | 日韩免费一区 | 国产精品久久久久久久久久久久午夜片 | 国偷自产视频一区二区久 | 国产色a在线观看 | 婷婷激情久久 | 97在线视频免费播放 | 久久精品网站免费观看 | 国产二区视频在线 | www.成人精品 | 888av| 久久国产精品精品国产色婷婷 | 亚洲成免费 | 狠狠操精品 | a黄色大片 | 国产精品区二区三区日本 | 青青五月天 | 特黄免费av | 日韩在线免费视频 | av观看免费在线 | 在线电影91| 色资源网免费观看视频 | 国产精品综合久久 | 国产成人精品一区二区在线 | 综合色婷婷 | 91在线播| 国产精品21区 | 最近中文字幕第一页 | 色婷婷激情电影 | 国产高清免费观看 | 亚州日韩中文字幕 | 亚洲成人av电影在线 | www国产一区 | 久草在线最新免费 | 99久久婷婷国产精品综合 | 五月婷婷.com | 国产精品欧美久久久久天天影视 | 免费三级网 | 青青久草在线视频 | 青草视频在线播放 | 91免费网址 | 天天爱天天色 | 亚洲精品视频免费 | 中文成人字幕 | 在线色资源 | 欧美不卡在线 | 91av原创| 免费色视频在线 | 精品99999 | 中文欧美字幕免费 | 国产色综合天天综合网 | 久久精品香蕉 | 91尤物国产尤物福利在线播放 | 日韩中文字幕a | 婷婷亚洲五月 | 99精品国产99久久久久久福利 | 国产精品女同一区二区三区久久夜 | 色哟哟国产精品 | 国产vs久久 | 免费看国产一级片 | 中文字幕亚洲不卡 | 五月天网页 | 五月天婷亚洲天综合网精品偷 | 91色一区二区三区 | 日日干日日色 | 欧美精品中文在线免费观看 | 亚洲精品字幕在线观看 | 久久免费精品国产 | 欧美精品中文字幕亚洲专区 | 午夜精品成人一区二区三区 | 在线视频福利 | 成人丝袜| 色婷婷激情五月 | 欧美一级专区免费大片 | 麻豆91小视频 | 日韩av播放在线 | 美女网站在线看 | 国产麻豆精品一区 | 国产精品久久婷婷六月丁香 | 天天综合导航 | 99久久久久免费精品国产 | 亚洲国产资源 | 精品久久久久久国产偷窥 | 成年人在线观看免费视频 | 草久在线观看视频 | 亚洲爱av| 久久精品www人人爽人人 | 偷拍福利视频一区二区三区 | 天天做天天爽 | 色狠狠综合天天综合综合 | 天天天天爱天天躁 | 日韩视频在线观看免费 | 又色又爽又黄高潮的免费视频 | 天天搞夜夜骑 | 欧美日韩在线视频一区 | 韩国视频一区二区三区 | 久久这里只有精品视频99 | 久草免费新视频 | 狠狠躁夜夜躁人人爽超碰97香蕉 | 免费在线观看av网址 | 99视频在线| 日韩理论在线播放 | 亚洲h视频在线 | 中文av字幕在线观看 | 免费在线播放黄色 | 午夜精品一区二区三区可下载 | 三级小视频在线观看 | 美女久久一区 | 国产成人久久av | 日韩v在线 | 九九热免费在线视频 | 波多野结衣视频在线 | 丁香婷婷综合激情 | 久久999精品 | 中文字幕一区二区三区视频 | 免费一级毛毛片 | 亚洲一区二区精品在线 | 国产高清不卡在线 | 99高清视频有精品视频 | 日韩精品久久久久久久电影99爱 | 99精品一级欧美片免费播放 | 亚洲一区精品人人爽人人躁 | 日韩视频一区二区三区在线播放免费观看 | 国产黄色精品在线 | 在线观看一区二区视频 | 天天视频色 | 色综合久久久久网 | 天天草av| 亚洲最新av | 99视频久 | 激情欧美网 | 亚洲成人黄色在线观看 | 国产亚洲aⅴaaaaaa毛片 | www.黄色片网站 | 色亚洲激情 | 久久久久久久久影视 | av免费看在线 | 日韩在线中文字幕 | 久久久久国产精品视频 | 成人动漫一区二区三区 | 亚洲高清精品在线 | 亚洲国产日韩av | 国产午夜精品福利视频 | 中文字幕色综合网 | 蜜桃av综合网 | 国产亚洲永久域名 | 国产电影一区二区三区四区 | 最新色视频| 久久国语露脸国产精品电影 | 国产乱老熟视频网88av | 丁香婷婷激情国产高清秒播 | 特黄特色特刺激视频免费播放 | a天堂免费| 久久久久久久久影视 | 超碰免费av| 美女福利视频网 | 久草热久草视频 | 色视频一区 | 午夜视频免费在线观看 | 色婷婷成人网 | 亚洲高清av | 免费视频黄 | 婷婷av电影| 久草在线在线精品观看 | 国产高清在线 | 日韩影视在线观看 | aaa免费毛片 | 99热这里只有精品久久 | 91免费网址 | 亚洲一区视频免费观看 | 91色亚洲 | 99热在线这里只有精品 | aaawww| 蜜臀av性久久久久av蜜臀妖精 | 亚洲视频一级 | 亚洲第一区精品 | 亚洲国产av精品毛片鲁大师 | 中文字幕久久网 | 国产少妇在线观看 | 中文字幕精品www乱入免费视频 | 国产在线视频在线观看 | 亚洲一区二区三区91 | 欧美巨大荫蒂茸毛毛人妖 | 麻豆传媒在线视频 | 97狠狠操 | 国产1区在线 | 精品亚洲欧美无人区乱码 | 毛片1000部免费看 | 色视频 在线 | av电影av在线 | 2019天天干夜夜操 | 69中文字幕 | 国产视频不卡一区 | 久久av免费观看 | 国产精品麻豆视频 | 久久人人97超碰精品888 | 久久99久久99精品免观看软件 | 日韩区欧美久久久无人区 | 日韩久久精品 | 亚洲精品男人天堂 | 亚洲三级在线免费观看 | 国产91精品久久久久久 | 人人爽久久久噜噜噜电影 | 波多野结衣一区三区 | 一区二区三区影院 | 亚洲视频 视频在线 | 久久一区国产 | 爱射综合 | 欧美一区二区三区免费看 | 免费高清在线观看成人 | 成人久久18免费网站麻豆 | www.成人精品 | 精品国产一区二区三区不卡 | 中文字幕4| 国产精品麻豆果冻传媒在线播放 | 国产精品theporn | 欧美日韩在线观看一区 | 欧美人牲 | 婷婷色在线视频 | 91在线中字 | 日本中文字幕在线免费观看 | 国产精品18久久久久久久久久久久 | a亚洲视频| 91精品国产91久久久久久三级 | 91av资源在线 | 国产高清在线看 | 久久国产精品免费一区二区三区 | 91女子私密保健养生少妇 | 天天射综合网站 | 一区二区三区日韩精品 | 97人人超碰在线 | 狠狠色综合欧美激情 | 美女国内精品自产拍在线播放 | 九九久久在线看 | 久久久久久久久久久电影 | 福利一区在线 | 98久9在线 | 免费 | 麻豆免费在线视频 | 日本久久久久久科技有限公司 | 中文av日韩 | 国产美女精品视频 | 青青草在久久免费久久免费 | 亚洲国产一区在线观看 | 国产69久久精品成人看 | 国产成人av电影在线 | 亚洲精品黄色在线观看 | 96av视频| 国产精品乱码久久 | 黄色片软件网站 | 在线黄av | 99在线视频免费观看 | 日韩一区二区在线免费观看 | 成人在线视频观看 | 日韩精品视频免费看 | 欧美日韩国产二区 | 日韩精品免费在线播放 | 免费在线观看av网址 | 久久精品国产亚洲精品2020 | av大全免费在线观看 | 高清色免费 | 中文在线字幕免费观 | 狠狠色伊人亚洲综合网站野外 | 日韩视频免费在线观看 | 久久久免费看视频 | 色综合夜色一区 | 日韩精品你懂的 | 天天爱av导航 | 婷婷久久综合九色综合 | 天堂网中文在线 | 精品国偷自产国产一区 | 国产91九色视频 | 91在线最新| 97超碰中文 | 国产视频18 | 高清视频一区二区三区 | 人人添人人 | 黄色免费网站 | 韩国视频一区二区三区 | 亚洲成人动漫在线观看 | 玖玖视频 | 精品三级av | 国产拍揄自揄精品视频麻豆 | 91精品久久久久 | 99视频免费看 | av一级片在线观看 | 久草在线中文视频 | 一级片视频免费观看 | 欧美精品九九 | 免费久久久久久久 | 久久久久久久久久久久国产精品 | 日韩电影在线观看一区二区三区 | 一区二区三区www | 成人一区二区在线 | 丝袜美腿在线 | 午夜丰满寂寞少妇精品 | 婷婷色婷婷| 国产精品久久久久久一二三四五 | 天天色影院| 成人9ⅰ免费影视网站 | 91视频传媒 | 亚洲专区欧美专区 | 99热播精品 | 中文字幕在线视频网站 | 国产做aⅴ在线视频播放 | 精品国产乱码久久久久久1区2匹 | 日日碰狠狠添天天爽超碰97久久 | 免费a v网站| 亚洲无人区小视频 | 最近中文字幕在线播放 | 人人澡人人澡人人 | 色狠狠久久av五月综合 | 丝袜美女在线观看 | 日韩影视在线观看 | 91在线看网站 | 国产一级片久久 | 玖玖视频网 | 精品成人久久 | 国产91精品一区二区麻豆网站 | 欧美超碰在线 | 91精品国产综合久久福利不卡 | 大胆欧美gogo免费视频一二区 | 麻豆传媒视频在线免费观看 | 欧美成年黄网站色视频 | 亚洲一区二区三区毛片 | 视频一区二区在线 | 91一区二区在线 | 国产精品高| 成人在线免费视频 | 天天综合网天天 | 狠狠躁夜夜躁人人爽超碰97香蕉 | 欧美在线视频二区 | 日韩美一区二区三区 | 国产网红在线观看 | 国产精品久久久久一区二区三区共 | 色就干| 日韩电影在线观看一区二区三区 | 国产资源网 | 91福利在线观看 | 丁香婷婷激情五月 | 91看片淫黄大片在线播放 | 波多野结衣动态图 | 黄色官网在线观看 | 在线 精品 国产 | 最近最新中文字幕视频 | 成人久久18免费网站 | 天天射天天艹 | 久久九九国产精品 | 久久经典国产 | 手机成人在线电影 | 国产最顶级的黄色片在线免费观看 | 在线超碰av | 成年人天堂com | 免费麻豆视频 | 免费在线观看的av网站 | 草免费视频 | 亚洲japanese制服美女 | 日韩av高潮 | 色综合天天综合在线视频 | 久久桃花网 | 中文字幕丝袜美腿 | 日本精品一区二区在线观看 | 五月婷婷久久丁香 | 国产精品一区二区视频 | 欧美人体xx | 日韩草比| 99av国产精品欲麻豆 | 久久午夜羞羞影院 | 美女免费黄视频网站 | 国产精品久久久久免费观看 | 国产亚洲精品日韩在线tv黄 | 综合网天天射 | 国产69精品久久久久久久久久 | 最新中文字幕视频 | 国产午夜麻豆影院在线观看 | av一级二级| 在线观看韩日电影免费 | 狠狠干狠狠艹 | 亚洲天堂网在线视频观看 | 国产精品女同一区二区三区久久夜 | www久久久久 | 成人在线播放免费观看 | 99精品观看| 中文字幕国产一区 | 久久天天躁 | 久久精品免费观看 | 久久久久久久久久久久久久av | 在线看片91| 免费在线观看午夜视频 | 亚洲国产精品va在线看黑人动漫 | 国产中文自拍 | 91系列在线观看 | 久久综合亚洲鲁鲁五月久久 | 亚洲人成在 | av导航福利 | 欧美尹人 | 亚洲精品国内 | 国产午夜精品免费一区二区三区视频 | 国产高清免费视频 | 天天色宗合 | 黄色大片日本 | 91新人在线观看 | 久草精品资源 | av网站免费在线 | 日韩精品一区二区不卡 | 一本一本久久a久久精品综合 | 中文字幕在线一区观看 | 精品久久久久久国产 | 黄色资源在线观看 | 99c视频高清免费观看 | 亚洲免费专区 | 人人澡超碰碰97碰碰碰软件 | 91精品国产乱码在线观看 | 狠狠网| 亚洲精品成人在线 | 国产视频 亚洲视频 | 超碰在线色 | 中文字幕专区高清在线观看 | 日韩最新中文字幕 | 国内精品一区二区 | 欧美一级片播放 | 日韩极品视频在线观看 | 精品国产一区二区三区蜜臀 | 日韩av高清在线观看 | 黄在线| 亚洲精品乱码久久久久v最新版 | 免费视频久久久久 | 91网站观看 | www麻豆视频 | 久久午夜国产精品 | 国产传媒一区在线 | 狠狠色狠狠色终合网 | 国产精品久久久久四虎 | 国产视频中文字幕在线观看 | 日韩在线观看视频中文字幕 | 欧美一级高清片 | 中文字幕久久亚洲 | 一区二区三区在线电影 | 欧美日韩视频在线 | 成人在线观看资源 | 免费看wwwwwwwwwww的视频 久久久久久99精品 91中文字幕视频 | 国产精品嫩草在线 | 手机av看片 | 成人网444ppp| 久草在线视频精品 | 午夜精品一区二区三区免费 | www.婷婷色 | 欧美黄网站 | 黄色免费视频在线观看 | 在线 影视 一区 | 欧美午夜精品久久久久久孕妇 | 国产成人在线观看免费 | 久久综合久久综合这里只有精品 | 最近能播放的中文字幕 | 久久国产成人午夜av影院宅 | 国产一区高清在线 | 国产69精品久久久久99尤 | 麻豆一二 | 99视频在线观看视频 | 国产在线资源 | 韩国三级一区 | 天天操天天吃 | 少妇bbbb搡bbbb桶| 国产精品 中文在线 | 黄色av电影在线观看 | 美女免费黄视频网站 | 久久成人在线 | 丁香五月网久久综合 | 婷婷色av| 美女国内精品自产拍在线播放 | 久久久久国产精品一区 | 51久久成人国产精品麻豆 | 天天干视频在线 | 国产91免费在线观看 | 国产小视频在线免费观看视频 | 久久性生活片 | 色综合久久久久久久 | 香蕉视频在线免费看 | 日韩在线一二三区 | 中文字幕 在线看 | 久久的色 | 日韩狠狠操 | 五月婷婷综合久久 | 亚洲精品在线观看视频 | 日本福利视频在线 | 九九热中文字幕 | 日韩午夜在线观看 | 成人免费网视频 | 九色porny真实丨国产18 | 亚洲四虎影院 | 日韩免费视频网站 | 亚洲成人av免费 | 中文字幕日韩电影 | 国产成在线观看免费视频 | 久久久久久国产精品亚洲78 | 亚洲精品免费在线观看视频 | 欧美人体xx | 日本免费一二三区 | 国产精品高清免费在线观看 | av福利免费| 在线观看日韩中文字幕 | 日日草天天干 | 成人网色| 日韩电影中文字幕在线观看 | 麻豆播放 | 日韩高清无线码2023 | 国产二区视频在线 | 最新极品jizzhd欧美 | 久久69精品久久久久久久电影好 | 天天干天天干天天色 | 免费在线观看日韩视频 | 国产区精品视频 | 91超碰免费在线 | 成人在线视频免费看 | 久久草网站| 91av在线播放 | 五月天中文字幕mv在线 | 在线观看不卡视频 | 天天色草| 免费高清国产 | 国产精品一区二区白浆 | 久久电影网站中文字幕 | 丁香花在线观看视频在线 | 日韩理论片 | 在线亚洲播放 | 亚洲成av| 中文字幕在线免费观看视频 | 国产精品毛片久久久久久久 | 奇米影视四色8888 | 香蕉精品在线观看 | 午夜国产一区二区 | 免费看黄色大全 | 国产中文自拍 | 综合亚洲视频 | av片中文字幕 | 992tv在线观看 | 在线97| 精品久久99 | 黄色成年片 | 国产精品久久久久久妇 | 丁香婷婷综合五月 | 亚洲欧美国产精品 | 97超碰中文字幕 | av成人在线播放 | 国产一区二区三区视频在线 | 日韩视频欧美视频 | 一级一级一片免费 | 久久久亚洲国产精品麻豆综合天堂 | 日韩一区在线播放 | 欧美日韩国产精品久久 | 婷婷久久精品 | 国产视频一区二区三区在线 | 国产啊v在线 | 亚洲资源片 | 国产在线观看一区 | 国产福利一区二区三区在线观看 | 激情综合五月天 | 欧美一区二区三区免费观看 | av在线免费观看黄 | 欧美一级电影免费观看 | 91精品啪啪 | 激情丁香 | 色婷婷综合久久久久中文字幕1 | 国产一区在线免费观看视频 | 超碰97人 | 国产视频在线观看一区二区 | 亚洲精品国产精品国自产在线 | 又黄又爽又色无遮挡免费 | 国产黄色片在线 | 久久99爱视频 | 国产在线综合视频 | 欧美日韩亚洲第一页 | 午夜精品视频免费在线观看 | 日韩乱理 | 美女网站在线免费观看 | 中文字幕 国产 一区 | 91精品国产九九九久久久亚洲 | 精品理论片 | 日本精品一区二区三区在线观看 | 国产一级淫片免费看 | 精品久久久久久久久久久院品网 | 在线观看黄色免费视频 | 亚洲精品一区中文字幕乱码 | 国产99久久 | 免费看毛片网站 | 久久久综合色 | a极黄色片| 国产精品不卡在线播放 | 久久久精品小视频 | 国外成人在线视频网站 | 国产成人精品综合久久久 | 丝袜美腿在线 | 免费看黄20分钟 | 91高清在线| 黄色免费视频在线观看 | 亚洲日韩中文字幕 | 一区精品在线 | 国产精品久久久毛片 | 久久a免费视频 | 精品一二三四五区 | 精品国产伦一区二区三区免费 | 久久综合免费视频影院 | 国产精品久久在线观看 | 亚洲色图美腿丝袜 | 操天天操 | 国产精品黄色 | 午夜日b视频 | 人人爱人人舔 | 99在线视频播放 | 麻花天美星空视频 | 欧美日韩亚洲精品在线 | 国产一区二区中文字幕 | 亚洲综合网站在线观看 | 色国产精品一区在线观看 | 91麻豆网| 国产成人一区二区精品非洲 | 国产精品久久久久永久免费看 | 国产高清网站 | 又爽又黄又无遮挡网站动态图 | 一本一道久久a久久精品蜜桃 | 久久美女高清视频 | 一区二区三区在线观看 | 丁香婷婷综合色啪 | 色婷婷狠狠五月综合天色拍 | 亚洲高清资源 | 国产色a在线观看 | av成人免费| 天天操天天干天天爽 | 日韩精品久久久久久 | 久久99久久99精品中文字幕 | 久久久男人的天堂 | 国产第一福利网 | 色网站免费在线观看 | 最新高清无码专区 | 成人小视频在线观看免费 | 在线观看成人 | 人人搞人人干 | 午夜精品久久久久久久99水蜜桃 | 日韩美在线| 国产主播大尺度精品福利免费 | 免费在线观看黄 | 午夜精品一二区 | 亚洲国产三级 | 精品久久久免费视频 | 婷婷丁香色综合狠狠色 | 久久国产精品二国产精品中国洋人 | www.一区二区三区 | 97国产精品视频 | 亚洲精品一区二区精华 | 亚洲综合色激情五月 | 久久久久久久久免费 | 色婷婷国产精品一区在线观看 | 91黄色免费看 | 欧美性粗大hdvideo | 国产视频一区在线免费观看 | av免费网| 中文字幕日本在线 | 国产第一页福利影院 | 成人av网站在线 | 精品99999 | 国产极品尤物在线 | 日韩二区三区在线 | 九九精品视频在线看 | 少妇性色午夜淫片aaaze | 国产成人333kkk | 夜夜躁日日躁狠狠久久88av | 色五月激情五月 | 91亚洲精品久久久中文字幕 | av在线免费在线观看 | 人人爽人人爽人人片av免 | 国产专区视频在线观看 | 二区三区在线观看 | 伊香蕉大综综综合久久啪 | 免费av在线网 | 亚洲欧洲在线视频 | av丝袜在线 | 99精品国产福利在线观看免费 | 91免费的视频在线播放 | 亚洲精品国产区 | 亚洲免费永久精品国产 | 久久久国产精品亚洲一区 | 成人99免费视频 | 色综合天天狠天天透天天伊人 | 波多野结衣一区二区三区中文字幕 | 久久国产精品99精国产 | 五月天综合网 | 日韩午夜电影院 | 99精品在线观看视频 | 久久视频中文字幕 | mm1313亚洲精品国产 | 欧美视频日韩视频 | 国产精品a久久 | 麻豆影视网站 | 免费观看www7722午夜电影 | 99精品国产视频 | 国产在线欧美 | 国产精品成人aaaaa网站 | 韩国av三级 | 高清色免费 | 久久成人久久 | 国产精品嫩草影院99网站 | 国产一区二区三精品久久久无广告 | 在线观看亚洲精品 | 亚洲成人中文在线 | 中文字幕在线观看91 | 国产剧情av在线播放 | 久在线| 天天操天天干天天爽 | 91精品视频在线免费观看 | 婷婷色网站 | 91日韩在线 | 亚洲最新在线视频 | 在线观看日本韩国电影 | 久久91久久久久麻豆精品 | 综合婷婷| 久久久久久草 | 久久精品福利视频 | 亚洲精选在线 | 999精品| 99热9| 日韩深夜在线观看 | 欧美日本三级 | 亚洲国产视频直播 | 国内少妇自拍视频一区 | 久久久久久精 | 天天色天天操天天爽 | 日韩精品一区二区在线 | 久久久久久久久久网 | 精品国产一区二区三区在线 | 国产精品久久艹 | 日韩免费网址 | 成年人免费看片 | 精品国产一区二区三区久久久 | 免费看成人av | 欧美激情综合五月色丁香 | av 一区 二区 久久 | 国产精品6| 91丨九色丨丝袜 | 西西4444www大胆无视频 | 国产精品欧美一区二区三区不卡 | 超碰999 | 夜夜夜夜夜夜操 | 久久天堂网站 | 久草精品在线 | 中文字幕日韩免费视频 | 久久国产a | 亚洲天天做 | 国产精品va最新国产精品视频 | 日av免费 | 高清av免费一区中文字幕 | 一区二区三区影院 | 97精品国产97久久久久久春色 | 69久久99精品久久久久婷婷 | 国产精品欧美久久久久天天影视 | 天天干天天拍天天操天天拍 | 日韩视频免费观看高清完整版在线 | 国产自产在线视频 | 免费在线观看av网站 | 一区二区视频在线免费观看 | 欧美日韩在线视频一区二区 | 天天操夜夜爱 | 天天色天 | 看片黄网站 | 亚洲国产精品久久久久 | 亚洲人成人天堂h久久 | 探花视频在线观看 | 99精品国产一区二区 | 99久久久国产精品免费99 | 欧美日韩裸体免费视频 | 国产高清在线视频 | www国产在线 | 黄污视频大全 | 私人av | 午夜黄色大片 | 亚洲国产精品一区二区久久,亚洲午夜 | 69av在线视频| 久久1电影院 | 九九免费精品视频在线观看 | 人人盈棋牌| 在线精品视频在线观看高清 | 精品毛片一区二区免费看 | 一区二区免费不卡在线 | 黄色av电影 | 久久久久成人精品亚洲国产 | 视频国产在线观看18 | 精品国产欧美一区二区三区不卡 | 激情网婷婷 | 尤物97国产精品久久精品国产 | 久久精品美女视频网站 | 日韩欧美区 | 欧美精品黑人性xxxx | 国产99视频在线观看 | 国产精品免费久久久久久 | 国产一级片视频 | 国产91粉嫩白浆在线观看 | 国产精品久久久久久久久久久免费 | 国产在线观看 | 在线观看中文字幕视频 | 久久久久免费精品 | 久草在线费播放视频 | 91麻豆精品 | 韩国av一区二区三区在线观看 | 亚洲精品视频在线看 | 国产亚洲在线 | 日韩av免费观看网站 | 亚洲综合在线观看视频 | 成人观看| 免费观看久久 | 一级黄色大片在线观看 | 99热只有精品在线观看 | 日韩在线免费视频 | 丁香五月缴情综合网 | 久久1区| 99视频精品视频高清免费 | 在线观看黄网 | 色综合婷婷 | 精品久久1 | 天天天色综合a | 国产美女免费看 | 亚洲精品黄网站 | 中文字幕亚洲精品在线观看 | 欧美孕妇与黑人孕交 | 欧美男男激情videos | h久久| 亚洲成aⅴ人片久久青草影院 | 国产91在线免费视频 | av免费看电影 | 久久久久女人精品毛片 | 亚洲国产欧美在线人成大黄瓜 | 日韩xxx视频 | 韩日av在线 | 九九导航 | 探花国产在线 | 精品亚洲午夜久久久久91 | 国产成人精品国内自产拍免费看 | 国产最新在线视频 | 欧美激情综合五月色丁香 | 在线视频观看91 | 欧美一区二区三区特黄 | 免费看的黄色小视频 | 91在线永久 | 国产中文字幕国产 | 国产精品一区电影 | 夜夜干天天操 | 黄色国产高清 | 成人午夜电影久久影院 | 粉嫩一二三区 | 欧美中文字幕久久 | 亚洲国产精品成人精品 | 亚洲人人射 | 啪啪凸凸 | www国产亚洲精品久久网站 | 色偷偷88欧美精品久久久 | 91视频在线观看大全 | 毛片网站观看 | 91看片成人 | 99热精品久久 | 成人a级黄色片 | 日韩中文在线播放 | 久久精品一二区 | 一区二区三区在线观看 | 欧美成人区 | 日韩一级网站 | 91精品国产自产91精品 | 毛片网站观看 | 国产97视频| 日本天天操| 欧美大码xxxx| 亚洲女同ⅹxx女同tv | 日本久久成人 | 激情久久久 | 国产精品久久久久久久久久ktv | 日本护士三级少妇三级999 | 夜夜操狠狠干 | 精品嫩模福利一区二区蜜臀 | 黄污在线观看 | 国产精品免费看久久久8精臀av | 91精品老司机久久一区啪 | 久久精品国产精品 | 国产一级黄大片 |