私は医用画像のセグメンテーションアルゴリズムに取り組んでおり、その過程で元の画像に進化する輪郭を表示する必要があります。
グレースケールJPEGを使用しています。輪郭を表示するためにdrawContours関数を使用しますが、カラー輪郭を描画することができません。グレースケール画像に赤い輪郭を描きたいのですが、黒か白しか見えません。
コードのセクションは次のとおりです。
Mat_<uchar> matrix = imread(path,0);
int row = matrix.rows;
int col = matrix.cols;
Mat_<uchar> maskInter(row,col);
for (int i=0; i<row; i++)
for (int j=0; j<col; j++)
{
if ((double)matrix(i,j) <0)
{maskInter(i,j)=255;}
else
{maskInter(i,j)=0;}
};
vector<vector<Point> > contours;
vector<Vec4i> hierarchy;
Mat mat_out = maskInter.clone();
findContours( mat_out, contours, hierarchy, CV_RETR_TREE , CHAIN_APPROX_SIMPLE);
drawContours( img, contours, -1, RGB(255,0,0),1.5,8,hierarchy,2,Point());
namedWindow(title);
moveWindow(title, 100, 100);
imshow(title, img);
waitKey(0);
グレースケール画像にカラーコンターを表示することはできますか?
ありがとう