| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- // Copyright (c) 2020 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.
- #include <glog/logging.h>
- #include <omp.h>
- #include <algorithm>
- #include <chrono> // NOLINT
- #include <fstream>
- #include <iostream>
- #include <string>
- #include <vector>
- #include <utility>
- #include <ctime>
- #include "include/paddlex/paddlex.h"
- #include "include/paddlex/visualize.h"
- #if defined(__arm__) || defined(__aarch64__)
- #include <opencv2/videoio/legacy/constants_c.h>
- #endif
- using namespace std::chrono; // NOLINT
- DEFINE_string(model_dir, "", "Path of inference model");
- DEFINE_bool(use_gpu, false, "Infering with GPU or CPU");
- DEFINE_bool(use_trt, false, "Infering with TensorRT");
- DEFINE_bool(use_mkl, true, "Infering with MKL");
- DEFINE_int32(gpu_id, 0, "GPU card id");
- DEFINE_string(key, "", "key of encryption");
- DEFINE_int32(mkl_thread_num,
- omp_get_num_procs(),
- "Number of mkl threads");
- DEFINE_bool(use_camera, false, "Infering with Camera");
- DEFINE_int32(camera_id, 0, "Camera id");
- DEFINE_string(video_path, "", "Path of input video");
- DEFINE_bool(show_result, false, "show the result of each frame with a window");
- DEFINE_bool(save_result, true, "save the result of each frame to a video");
- DEFINE_string(save_dir, "output", "Path to save visualized image");
- int main(int argc, char** argv) {
- // Parsing command-line
- google::ParseCommandLineFlags(&argc, &argv, true);
- if (FLAGS_model_dir == "") {
- std::cerr << "--model_dir need to be defined" << std::endl;
- return -1;
- }
- if (FLAGS_video_path == "" & FLAGS_use_camera == false) {
- std::cerr << "--video_path or --use_camera need to be defined" << std::endl;
- return -1;
- }
- // Load model
- PaddleX::Model model;
- model.Init(FLAGS_model_dir,
- FLAGS_use_gpu,
- FLAGS_use_trt,
- FLAGS_use_mkl,
- FLAGS_mkl_thread_num,
- FLAGS_gpu_id,
- FLAGS_key);
- // Open video
- cv::VideoCapture capture;
- if (FLAGS_use_camera) {
- capture.open(FLAGS_camera_id);
- if (!capture.isOpened()) {
- std::cout << "Can not open the camera "
- << FLAGS_camera_id << "."
- << std::endl;
- return -1;
- }
- } else {
- capture.open(FLAGS_video_path);
- if (!capture.isOpened()) {
- std::cout << "Can not open the video "
- << FLAGS_video_path << "."
- << std::endl;
- return -1;
- }
- }
- // Create a VideoWriter
- cv::VideoWriter video_out;
- std::string video_out_path;
- if (FLAGS_save_result) {
- // Get video information: resolution, fps
- int video_width = static_cast<int>(capture.get(CV_CAP_PROP_FRAME_WIDTH));
- int video_height = static_cast<int>(capture.get(CV_CAP_PROP_FRAME_HEIGHT));
- int video_fps = static_cast<int>(capture.get(CV_CAP_PROP_FPS));
- int video_fourcc;
- if (FLAGS_use_camera) {
- video_fourcc = 828601953;
- } else {
- video_fourcc = CV_FOURCC('M', 'J', 'P', 'G');
- }
- if (FLAGS_use_camera) {
- time_t now = time(0);
- video_out_path =
- PaddleX::generate_save_path(FLAGS_save_dir,
- std::to_string(now) + ".mp4");
- } else {
- video_out_path =
- PaddleX::generate_save_path(FLAGS_save_dir, FLAGS_video_path);
- }
- video_out.open(video_out_path.c_str(),
- video_fourcc,
- video_fps,
- cv::Size(video_width, video_height),
- true);
- if (!video_out.isOpened()) {
- std::cout << "Create video writer failed!" << std::endl;
- return -1;
- }
- }
- PaddleX::SegResult result;
- cv::Mat frame;
- int key;
- while (capture.read(frame)) {
- if (FLAGS_show_result || FLAGS_use_camera) {
- key = cv::waitKey(1);
- // When pressing `ESC`, then exit program and result video is saved
- if (key == 27) {
- break;
- }
- } else if (frame.empty()) {
- break;
- }
- // Begin to predict
- model.predict(frame, &result);
- // Visualize results
- cv::Mat vis_img = PaddleX::Visualize(frame, result, model.labels);
- if (FLAGS_show_result || FLAGS_use_camera) {
- cv::imshow("video_segmenter", vis_img);
- }
- if (FLAGS_save_result) {
- video_out.write(vis_img);
- }
- result.clear();
- }
- capture.release();
- if (FLAGS_save_result) {
- video_out.release();
- std::cout << "Visualized output saved as " << video_out_path << std::endl;
- }
- if (FLAGS_show_result || FLAGS_use_camera) {
- cv::destroyAllWindows();
- }
- return 0;
- }
|