Conversation with Merlin [email protected] · Wed Dec 27 2023

将下面的代码修改,加入展示图片和检测视频 // Copyright (c) 2023 by Rockchip Electronics Co., Ltd. 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.

/------------------------------------------- Includes -------------------------------------------/ #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include<time.h> #include "yolov8_seg.h" #include "image_utils.h" #include "file_utils.h" #include "image_drawing.h" #include <opencv2/opencv.hpp> #include <opencv2/highgui/highgui.hpp>

/------------------------------------------- Main Function -------------------------------------------/ int main(int argc, char **argv) { if (argc != 3) { printf("%s <model_path> <image_path>\n", argv[0]); return -1; }

clock_t start_time, end_time; double cpu_time_used; const char *model_path = argv[1]; const char *image_path = argv[2]; unsigned char class_colors[][3] = { {255, 56, 56} }; int ret; rknn_app_context_t rknn_app_ctx; memset(&rknn_app_ctx, 0, sizeof(rknn_app_context_t)); init_post_process(); start_time = clock(); // 记录开始时间 ret = init_yolov8_seg_model(model_path, &rknn_app_ctx); if (ret != 0) { printf("init_yolov8_seg_model fail! ret=%d model_path=%s\n", ret, model_path); goto out; } image_buffer_t src_image; memset(&src_image, 0, sizeof(image_buffer_t)); ret = read_image(image_path, &src_image); if (ret != 0) { printf("read image fail! ret=%d image_path=%s\n", ret, image_path); goto out; } object_detect_result_list od_results; ret = inference_yolov8_seg_model(&rknn_app_ctx, &src_image, &od_results); if (ret != 0) { printf("init_yolov8_seg_model fail! ret=%d\n", ret); goto out; } // draw mask if (od_results.count >= 1) { int width = src_image.width; int height = src_image.height; char *ori_img = (char *)src_image.virt_addr; int cls_id = od_results.results[0].cls_id; uint8_t *seg_mask = od_results.results_seg[0].seg_mask; float alpha = 0.5f; // opacity for (int j = 0; j < height; j++) { for (int k = 0; k < width; k++) { int pixel_offset = 3 * (j * width + k); if (seg_mask[j * width + k] != 0) { ori_img[pixel_offset + 0] = (unsigned char)clamp(class_colors[seg_mask[j * width + k] % N_CLASS_COLORS][0] * (1 - alpha) + ori_img[pixel_offset + 0] * alpha, 0, 255); // r ori_img[pixel_offset + 1] = (unsigned char)clamp(class_colors[seg_mask[j * width + k] % N_CLASS_COLORS][1] * (1 - alpha) + ori_img[pixel_offset + 1] * alpha, 0, 255); // g ori_img[pixel_offset + 2] = (unsigned char)clamp(class_colors[seg_mask[j * width + k] % N_CLASS_COLORS][2] * (1 - alpha) + ori_img[pixel_offset + 2] * alpha, 0, 255); // b } } } free(seg_mask); } end_time = clock(); cpu_time_used = ((double)(end_time-start_time)) / CLOCKS_PER_SEC; printf("Toral time: %f seconds\n",cpu_time_used); // draw boxes char text[256]; for (int i = 0; i < od_results.count; i++) { object_detect_result *det_result = &(od_results.results[i]); printf("%s @ (%d %d %d %d) %.3f\n", coco_cls_to_name(det_result->cls_id), det_result->box.left, det_result->box.top, det_result->box.right, det_result->box.bottom, det_result->prop); int x1 = det_result->box.left; int y1 = det_result->box.top; int x2 = det_result->box.right; int y2 = det_result->box.bottom; draw_rectangle(&src_image, x1, y1, x2 - x1, y2 - y1, COLOR_RED, 3); sprintf(text, "%s %.1f%%", coco_cls_to_name(det_result->cls_id), det_result->prop * 100); draw_text(&src_image, text, x1, y1 - 16, COLOR_BLUE, 10); }

out: deinit_post_process();

ret = release_yolov8_seg_model(&rknn_app_ctx); if (ret != 0) { printf("release_yolov8_seg_model fail! ret=%d\n", ret); } if (src_image.virt_addr != NULL) { free(src_image.virt_addr); } return 0;

}

In order to modify the code with functionalities for displaying an image using OpenCV and video input for detection, you would need to incorporate the OpenCV functions for reading images and videos, displaying them, and processing each video frame similarly to how individual images are processed.

Here's an example of how you can modify the main function to enable these features. Please note that handling exceptions and errors is essential for robust code, but for the sake of brevity and clarity, I have included extensive error handling.

/* ... [Previous includes and definitions] ... */ #include <opencv2/highgui/highgui.hpp> #include <opencv/imgproc/imgproc.hpp> /* ... [Other definitions and global variables] ... */ void display_image(cv::Mat &img) { cv::imshow("", img); cv::waitKey(0); // indefinitely until a key is pressed } void process_video(const char* video_path, rknn_app_context_t* rknn_app_ctx) { // Open the file or stream cv::VideoCapture cap(video_path); if (!cap.isOpened())

Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of

apache.org