エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Momma's Wiki: OpenCV/floodFillでラベリング - floodFill関数を用いてラベリング処理 任意の色で塗り潰しが可能なf...
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Momma's Wiki: OpenCV/floodFillでラベリング - floodFill関数を用いてラベリング処理 任意の色で塗り潰しが可能なf...
/* * CfloodFillLabeling.cpp * * Created on: 2011/02/11 * Author: Eiichiro Momma */ #include <open... /* * CfloodFillLabeling.cpp * * Created on: 2011/02/11 * Author: Eiichiro Momma */ #include <opencv2/core/core_c.h> #include <opencv2/imgproc/imgproc_c.h> #include <opencv2/highgui/highgui_c.h> #include <stdio.h> //compat.hppから拝借 #define cvGetHistValue_1D( hist, idx0 ) \ ((float*)cvPtr1D( (hist)->bins, (idx0), 0)) enum{ nNeighbors = 8, isVisible = 1, vDelay = 10 }; int main(void) { IplImage *fsrc;