14 lines
404 B
C++
14 lines
404 B
C++
//
|
|
// Created by fujiayi on 2020/7/2.
|
|
//
|
|
#pragma once
|
|
#include <opencv2/opencv.hpp>
|
|
#include <vector>
|
|
|
|
std::vector<std::vector<std::vector<int>>>
|
|
boxes_from_bitmap(const cv::Mat &pred, const cv::Mat &bitmap);
|
|
|
|
std::vector<std::vector<std::vector<int>>>
|
|
filter_tag_det_res(const std::vector<std::vector<std::vector<int>>> &o_boxes,
|
|
float ratio_h, float ratio_w, const cv::Mat &srcimg);
|