当前位置: 首页>>代码示例>>C++>>正文


C++ Segmentation::retrieveMask_asBinaryChannel方法代码示例

本文整理汇总了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;
}
开发者ID:Scimitar83,项目名称:lime,代码行数:44,代码来源:test.cpp


注:本文中的Segmentation::retrieveMask_asBinaryChannel方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。