如何将 WhiteThresholdImage 与 magick++ 一起使用?
我搜索它并找到了解决方案,所以我尝试:
#include <Magick++.h>
using namespace Magick;
int main()
{
Magick::InitializeMagick("");
Image image;
image.read("logo.jpg");
char* threshold = 20;
MagickLib::WhiteThresholdImage(image, threshold);
}
错误:无法将 'Magick::Image' 转换为 'MagickLib::Image* {aka MagickLib::_Image*}' 以将参数 '1' 转换为 'unsigned int MagickLib::WhiteThresholdImage(MagickLib::Image*, const char*) '</p>
#include
using namespace Magick;
int main()
{
Magick::InitializeMagick("");
Image image;
image.read("logo.jpg");
char* threshold = 20;
WhiteThresholdImage(image, threshold);
}
错误:未在此范围内声明“WhiteThresholdImage”