# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import fastdeploy as fd import cv2 import time import os def parse_arguments(): import argparse import ast parser = argparse.ArgumentParser() parser.add_argument( "--model", required=True, help="Path of PaddleSeg model.") parser.add_argument( "--video", type=str, required=True, help="Path of test video file.") parser.add_argument( "--device", type=str, default='cpu', help="Type of inference device, support 'cpu' or 'gpu'.") parser.add_argument( "--use_trt", type=ast.literal_eval, default=False, help="Wether to use tensorrt.") return parser.parse_args() def build_option(args): option = fd.RuntimeOption() if args.device.lower() == "gpu": option.use_gpu() if args.use_trt: option.use_trt_backend() return option args = parse_arguments() # 配置runtime,加载模型 runtime_option = build_option(args) model_file = os.path.join(args.model, "model.pdmodel") params_file = os.path.join(args.model, "model.pdiparams") config_file = os.path.join(args.model, "infer_cfg.yml") model = fd.vision.tracking.PPTracking( model_file, params_file, config_file, runtime_option=runtime_option) # 预测图片分割结果 cap = cv2.VideoCapture(args.video) frame_id = 0 while True: start_time = time.time() frame_id = frame_id+1 _, frame = cap.read() if frame is None: break result = model.predict(frame) end_time = time.time() fps = 1.0/(end_time-start_time) img = fd.vision.vis_mot(frame, result, fps, frame_id) cv2.imshow("video", img) cv2.waitKey(30) cap.release() cv2.destroyAllWindows()