OpenCV 5.0.0
Open Source Computer Vision
読み込み中...
検索中...
見つかりません
🤖 AIによる機械翻訳(非公式) — これは OpenCV 5.0.0 公式リファレンス(英語)を AI (Claude) で自動翻訳したものです。訳に誤りを含む場合があります。正確な情報は 公式英語版(原文) を参照してください。
hal_replacement.hpp ファイル
#include "opencv2/core/hal/interface.h"
#include "custom_hal.hpp"
Include dependency graph for hal_replacement.hpp:

関数

int hal_ni_FAST (const uchar *src_data, size_t src_step, int width, int height, uchar *keypoints_data, size_t *keypoints_count, int threshold, bool nonmax_suppression, int type)
 FASTアルゴリズムを用いてコーナーを検出する。
 
int hal_ni_FAST_dense (const uchar *src_data, size_t src_step, uchar *dst_data, size_t dst_step, int width, int height, cv::FastFeatureDetector::DetectorType type)
 FAST アルゴリズムを使ってコーナーを検出し、マスクを返す。
 
int hal_ni_FAST_NMS (const uchar *src_data, size_t src_step, uchar *dst_data, size_t dst_step, int width, int height)
 FAST_9_16 に対する非極大値抑制。
 
int hal_ni_FASTv2 (const uchar *src_data, size_t src_step, int width, int height, void **keypoints_data, size_t *keypoints_count, int threshold, bool nonmax_suppression, int type, void *(*realloc_func)(void *, size_t))
 FASTアルゴリズムを用いてコーナーを検出する。