Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はそれがタイトルにかなりあると思います、明らかに私は繰り返して分割することができます。しかし、私は作り付けの方法があると思います。私は見ましcvConvertScaleたが、これはタイプでは機能しませんcv::Mat。
cvConvertScale
cv::Mat
スカラーによる乗算のスケーリング操作を知っています。
cv::Mat M; float alpha; cv::Mat Result = M * alpha;
これを試してみましょう:
cv::Mat Result = M / alpha;
または:
float beta = 1.0f / alpha; cv::Mat Result = M * beta;