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

名前空間

namespace  cv
 
namespace  cv::hal
 

マクロ定義

#define BIN_A_OP(OP, FUN)
 
#define BIN_OP(OP, FUN)
 
#define UN_OP(OP, FUN)
 

関数

template<typename R >
cv::hal::operator!= (const R &lhs, const R &rhs)
 
template<typename R >
cv::hal::operator& (const R &lhs, const R &rhs)
 
template<typename R >
R & cv::hal::operator&= (R &res, const R &val)
 
template<typename R >
cv::hal::operator* (const R &lhs, const R &rhs)
 
template<typename R >
R & cv::hal::operator*= (R &res, const R &val)
 
template<typename R >
cv::hal::operator+ (const R &lhs, const R &rhs)
 
template<typename R >
R & cv::hal::operator+= (R &res, const R &val)
 
template<typename R >
cv::hal::operator- (const R &lhs, const R &rhs)
 
template<typename R >
R & cv::hal::operator-= (R &res, const R &val)
 
template<typename R >
cv::hal::operator/ (const R &lhs, const R &rhs)
 
template<typename R >
R & cv::hal::operator/= (R &res, const R &val)
 
template<typename R >
cv::hal::operator< (const R &lhs, const R &rhs)
 
template<typename R >
cv::hal::operator<= (const R &lhs, const R &rhs)
 
template<typename R >
cv::hal::operator== (const R &lhs, const R &rhs)
 
template<typename R >
cv::hal::operator> (const R &lhs, const R &rhs)
 
template<typename R >
cv::hal::operator>= (const R &lhs, const R &rhs)
 
template<typename R >
cv::hal::operator^ (const R &lhs, const R &rhs)
 
template<typename R >
R & cv::hal::operator^= (R &res, const R &val)
 
template<typename R >
cv::hal::operator| (const R &lhs, const R &rhs)
 
template<typename R >
R & cv::hal::operator|= (R &res, const R &val)
 
template<typename R >
cv::hal::operator~ (const R &val)
 

マクロ定義詳解

◆ BIN_A_OP

#define BIN_A_OP ( OP,
FUN )
Value:
template <typename R> R & operator OP (R & res, const R & val) { res = FUN(res, val); return res; }

◆ BIN_OP

#define BIN_OP ( OP,
FUN )
Value:
template <typename R> R operator OP (const R & lhs, const R & rhs) { return FUN(lhs, rhs); }

◆ UN_OP

#define UN_OP ( OP,
FUN )
Value:
template <typename R> R operator OP (const R & val) { return FUN(val); }