本文整理汇总了C++中Segmentation::retrieveMask_asBinaryChannel方法的典型用法代码示例。如果您正苦于以下问题:C++ Segmentation::retrieveMask_asBinaryChannel方法的具体用法?C++ Segmentation::retrieveMask_asBinaryChannel怎么用?C++ Segmentation::retrieveMask_asBinaryChannel使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Segmentation
的用法示例。
在下文中一共展示了Segmentation::retrieveMask_asBinaryChannel方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main(int argc, char** argv)
{
const std::string sourcePath = "IMG_0267.jpg";
const std::string destPath = "test.bmp";
// Basic procedure to use the library
ColorimetricYCbCrAlgorithm1<NumType> algo = ColorimetricYCbCrAlgorithm1<NumType>();
// Algorithm configuration
algo.ApplyMedian(true);
algo.MedianSize(3);
algo.ApplyGrow(true);
algo.GrowCount(20);
algo.GrowSize(3);
algo.ApplyShrink(true);
algo.ShrinkCount(22);
algo.ShrinkSize(3);
algo.ApplyFixedGrowShrink(false);
algo.FixedGrowShrinkCount(10);
algo.FixedGrowShrinkSize(5);
algo.ApplyRegionClearing(true);
Segmentation<NumType> segm = Segmentation<NumType>(&algo);
CImg<bool> *mask = segm.retrieveMask_asBinaryChannel(sourcePath);
CImg<int> *distMap = segm.retrieveDistanceMapOfMask(*mask);
CImg<unsigned char> *resImg = distanceMapToRGB(distMap);
//CImg<int> *resImg = changeBinaryMaskToRGBImage(*mask);
/*std::vector<BinarySeed> *skinSeeds = segm.retrieveSkinSeedsOfMask(*testImg, true, true, 30, 5);
std::vector<BinarySeed> *nonSkinSeeds = segm.retrieveNonSkinSeedsOfMask(*testImg, true, true, 30, 5);
addSeedsToRGBImage(resImg,skinSeeds,nonSkinSeeds);*/
resImg->save(destPath.c_str());
delete mask;
delete resImg;
delete distMap;
return 0;
}