Aircraft Detection 1.0
Loading...
Searching...
No Matches
hog_features_extraction.h
Go to the documentation of this file.
1#pragma once
2
3#include <opencv2/opencv.hpp>
4#include <string>
5#include <vector>
6
7
8std::vector<std::vector<float>> hog_features_extraction(const std::vector<cv::Rect>& rois, const cv::Mat& image);
9
10void writeHogFeaturesToCsv(const std::vector<std::vector<float>>& hog_features, const std::string& filename);
std::vector< std::vector< float > > hog_features_extraction(const std::vector< cv::Rect > &rois, const cv::Mat &image)
Extracts HOG features from specified regions of interest (ROIs) in an image.
Definition hog_features_extraction.cpp:23
void writeHogFeaturesToCsv(const std::vector< std::vector< float > > &hog_features, const std::string &filename)
Writes HOG features to a CSV file.
Definition hog_features_extraction.cpp:70