Aircraft Detection
1.0
Loading...
Searching...
No Matches
src
aircraft_detection_project
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
8
std::vector<std::vector<float>>
hog_features_extraction
(
const
std::vector<cv::Rect>& rois,
const
cv::Mat& image);
9
10
void
writeHogFeaturesToCsv
(
const
std::vector<std::vector<float>>& hog_features,
const
std::string& filename);
hog_features_extraction
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
writeHogFeaturesToCsv
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
Generated by
1.11.0