video_test.py 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. import time
  2. import torch
  3. import torch.nn as nn
  4. from torchvision import transforms
  5. from model.model_zoon import load_model
  6. import numpy as np
  7. from PIL import Image
  8. import os
  9. import argparse
  10. from labelme.utils import draw_grid, draw_predict_grid
  11. import cv2
  12. import matplotlib.pyplot as plt
  13. from dotenv import load_dotenv
  14. load_dotenv()
  15. # os.environ['CUDA_LAUNCH_BLOCKING'] = '0'
  16. patch_w = int(os.getenv('PATCH_WIDTH', 256))
  17. patch_h = int(os.getenv('PATCH_HEIGHT', 256))
  18. confidence_threshold = float(os.getenv('CONFIDENCE_THRESHOLD', 0.80))
  19. scale = 2
  20. class Predictor:
  21. def __init__(self, model_name, weights_path, num_classes):
  22. self.model_name = model_name
  23. self.weights_path = weights_path
  24. self.num_classes = num_classes
  25. # self.use_bias = os.getenv('USE_BIAS', True)
  26. self.device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
  27. print(f"当前设备: {self.device}")
  28. self.model = self.load_model()
  29. def load_model(self):
  30. return load_model(name=self.model_name, num_classes=self.num_classes, weights_path=self.weights_path, device=self.device)
  31. def predict(self, image_tensor):
  32. """
  33. 对单张图像进行预测
  34. Args:
  35. image_tensor: 预处理后的图像张量
  36. Returns:
  37. predicted_class: 预测的类别索引
  38. confidence: 预测置信度
  39. probabilities: 各类别的概率
  40. """
  41. image_tensor = image_tensor.to(self.device)
  42. with torch.no_grad():
  43. outputs = self.model(image_tensor)
  44. probabilities = torch.softmax(outputs, dim=1) # 沿行计算softmax
  45. confidence, predicted_class = torch.max(probabilities, 1)
  46. return confidence.cpu().numpy(), predicted_class.cpu().numpy()
  47. def preprocess_image(img):
  48. """
  49. 预处理图像以匹配训练时的预处理
  50. Args:
  51. img: PIL图像
  52. Returns:
  53. tensor: 预处理后的图像张量
  54. """
  55. # 定义与训练时相同的预处理步骤
  56. transform = transforms.Compose([
  57. transforms.Resize((224, 224)),
  58. transforms.ToTensor(),
  59. transforms.Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225])
  60. ])
  61. # 打开并转换图像
  62. img_w, img_h = img.size
  63. global patch_w, patch_h
  64. imgs_patch = []
  65. imgs_index = []
  66. # fig, axs = plt.subplots(img_h // patch_h + 1, img_w // patch_w + 1)
  67. for i in range(img_h // patch_h + 1):
  68. for j in range(img_w // patch_w + 1):
  69. left = j * patch_w # 裁剪区域左边框距离图像左边的像素值
  70. top = i * patch_h # 裁剪区域上边框距离图像上边的像素值
  71. right = min(j * patch_w + patch_w, img_w) # 裁剪区域右边框距离图像左边的像素值
  72. bottom = min(i * patch_h + patch_h, img_h) # 裁剪区域下边框距离图像上边的像素值
  73. # 检查区域是否有效
  74. if right > left and bottom > top:
  75. patch = img.crop((left, top, right, bottom))
  76. # 长宽比过滤
  77. # rate = patch.height / (patch.width + 1e-6)
  78. # if rate > 1.314 or rate < 0.75:
  79. # # print(f"长宽比过滤: {patch_name}")
  80. # continue
  81. imgs_patch.append(patch)
  82. imgs_index.append((left, top))
  83. # axs[i, j].imshow(patch)
  84. # axs[i, j].set_title(f'Image {i} {j}')
  85. # axs[i, j].axis('off')
  86. # plt.tight_layout()
  87. # plt.show()
  88. imgs_patch = torch.stack([transform(img) for img in imgs_patch])
  89. # 添加批次维度
  90. # image_tensor = image_tensor.unsqueeze(0)
  91. return imgs_index, imgs_patch
  92. def visualize_prediction(image_path, predicted_class, confidence, class_names):
  93. """
  94. 可视化预测结果
  95. Args:
  96. image_path: 图像路径
  97. predicted_class: 预测的类别索引
  98. confidence: 预测置信度
  99. class_names: 类别名称列表
  100. """
  101. image = Image.open(image_path).convert('RGB')
  102. plt.figure(figsize=(8, 6))
  103. plt.imshow(image)
  104. plt.axis('off')
  105. plt.title(f'Predicted: {class_names[predicted_class]}\n'
  106. f'Confidence: {confidence:.4f}', fontsize=14)
  107. plt.show()
  108. def get_33_patch(arr:np.ndarray, center_row:int, center_col:int):
  109. """以(center_row,center_col)为中心,从arr中取出来3*3区域的数据"""
  110. # 边界检查
  111. h,w = arr.shape
  112. safe_row_up_limit = max(0, center_row-1)
  113. safe_row_bottom_limit = min(h, center_row+2)
  114. safe_col_left_limit = max(0, center_col-1)
  115. safe_col_right_limit = min(w, center_col+2)
  116. return arr[safe_row_up_limit:safe_row_bottom_limit, safe_col_left_limit:safe_col_right_limit]
  117. def fileter_prediction(predicted_class, confidence, pre_rows, pre_cols, filter_down_limit=3):
  118. """预测结果矩阵滤波,九宫格内部存在浑浊水体的数量需要大于filter_down_limit,"""
  119. predicted_class_mat = np.resize(predicted_class, (pre_rows, pre_cols))
  120. predicted_conf_mat = np.resize(confidence, (pre_rows, pre_cols))
  121. new_predicted_class_mat = predicted_class_mat.copy()
  122. new_predicted_conf_mat = predicted_conf_mat.copy()
  123. for i in range(pre_rows):
  124. for j in range(pre_cols):
  125. if (1. - predicted_class_mat[i, j]) > 0.1:
  126. continue # 跳过背景类
  127. core_region = get_33_patch(predicted_class_mat, i, j)
  128. if np.sum(core_region) < filter_down_limit:
  129. new_predicted_class_mat[i, j] = 0 # 重置为背景类
  130. new_predicted_conf_mat[i, j] = 1.0
  131. return new_predicted_conf_mat.flatten(), new_predicted_class_mat.flatten()
  132. def discriminate_ratio(water_pre_list:list):
  133. # 方式一:60%以上的帧存在浑浊水体
  134. water_pre_arr = np.array(water_pre_list, dtype=np.float32)
  135. water_pre_arr_sum = np.sum(water_pre_arr, axis=0)
  136. bad_water = np.array(water_pre_arr_sum >= 0.6 * len(water_pre_list), dtype=np.int32)
  137. bad_flag = bool(np.sum(bad_water, dtype=np.int32) > 2) # 大于两个patch符合要求才可以
  138. print(f'浑浊比例判别:该时间段是否存在浑浊水体:{bad_flag}')
  139. return bad_flag
  140. def discriminate_count(pre_class_arr, continuous_count_mat):
  141. """连续帧判别"""
  142. positive_index = np.array(pre_class_arr,dtype=np.int32) > 0
  143. negative_index = np.array(pre_class_arr,dtype=np.int32) == 0
  144. # 给负样本区域置零
  145. continuous_count_mat[negative_index] -= 1
  146. # 给正样本区域加1
  147. continuous_count_mat[positive_index] += 1
  148. # 保证不出现负数
  149. continuous_count_mat[continuous_count_mat<0] = 0
  150. # 判断浑浊
  151. bad_flag = bool(np.sum(continuous_count_mat > 15) > 2)
  152. print(f'连续帧方式:该时间段是否存在浑浊水体:{bad_flag}')
  153. return bad_flag
  154. def main():
  155. # 初始化模型实例
  156. # TODO:修改模型网络名称/模型权重路径/视频路径
  157. predictor = Predictor(model_name='shufflenet',
  158. weights_path=r'./shufflenet.pth',
  159. num_classes=2)
  160. input_path = r'D:\code\water_turbidity_det\frame_data\1video_20251229124533_hunzhuo'
  161. # 预处理图像
  162. all_imgs = os.listdir(input_path)
  163. all_imgs = [os.path.join(input_path, p) for p in all_imgs if p.split('.')[-1] in ['jpg', 'png']]
  164. image = Image.open(all_imgs[0]).convert('RGB')
  165. # 将预测结果reshape为矩阵时的行列数量
  166. pre_rows = image.height // patch_h + 1
  167. pre_cols = image.width // patch_w + 1
  168. # 图像显示时resize的尺寸
  169. resized_img_h = image.height // 2
  170. resized_img_w = image.width // 2
  171. # 预测每张图像
  172. water_pre_list = []
  173. continuous_count_mat = np.zeros(pre_rows*pre_cols, dtype=np.int32)
  174. flag = False
  175. for img_path in all_imgs:
  176. image = Image.open(img_path).convert('RGB')
  177. # 预处理
  178. patches_index, image_tensor = preprocess_image(image) # patches_index:list[tuple, ...]
  179. # 推理
  180. confidence, predicted_class = predictor.predict(image_tensor) # confidence: np.ndarray, shape=(x,), predicted_class: np.ndarray, shape=(x,), raw_outputs: np.ndarray, shape=(x,)
  181. # 第一层虚警抑制,置信度过滤,低于阈值将会被忽略
  182. for i in range(len(confidence)):
  183. if confidence[i] < confidence_threshold and predicted_class[i] == 1:
  184. confidence[i] = 1.0
  185. predicted_class[i] = 0
  186. # 第二层虚警抑制,空间滤波
  187. # 在此处添加过滤逻辑
  188. # print('原始预测结果:', predicted_class)
  189. new_confidence, new_predicted_class = fileter_prediction(predicted_class, confidence, pre_rows, pre_cols, filter_down_limit=3)
  190. # print('过滤后预测结果:', new_predicted_class)
  191. # 可视化预测结果
  192. image = cv2.imread(img_path)
  193. image = draw_grid(image, patch_w, patch_h)
  194. image = draw_predict_grid(image, patches_index, predicted_class, confidence)
  195. new_image = cv2.imread(img_path)
  196. new_image = draw_grid(new_image, patch_w, patch_h)
  197. new_image = draw_predict_grid(new_image, patches_index, new_predicted_class, new_confidence)
  198. image = cv2.resize(image, (resized_img_w, resized_img_h))
  199. new_img = cv2.resize(new_image, (resized_img_w, resized_img_h))
  200. cv2.imshow('image', image)
  201. cv2.imshow('image_filter', new_img)
  202. cv2.waitKey(25)
  203. water_pre_list.append(new_predicted_class)
  204. # 方式2判别
  205. flag = discriminate_count(new_predicted_class, continuous_count_mat)
  206. # 方式1判别
  207. if len(water_pre_list) > 25:
  208. flag = discriminate_ratio(water_pre_list) and flag
  209. print('综合判别结果:', flag)
  210. if __name__ == "__main__":
  211. main()