gpt4 book ai didi

winapi - 错误 D8016 : '/ZI' and '/clr' command-line options are incompatible

转载 作者:太空宇宙 更新时间:2023-11-03 20:38:33 28 4
gpt4 key购买 nike

我的程序出现以下错误:

  error D8016: '/ZI' and '/clr' command-line options are incompatible

当我放置以下行并在配置->常规中启用公共(public)运行时时会发生这种情况(如果我不启用它,那么错误将出现在使用系统和 System::Drawing 时)

#using <system.drawing.dll>
using namespace System;
using namespace System::Drawing;

实际上,我将在需要上述 dll 的代码中使用一些 Windows 库。

如何解决这个问题?

#include "opencv2/highgui/highgui.hpp"
#include <opencv2/imgproc/imgproc_c.h>
#include "opencv2/highgui/highgui.hpp"
#include <iostream>
#include <ctype.h>
#using <system.drawing.dll>
using namespace System;
using namespace System::Drawing;
using namespace std;

int main( int argc, char** argv )
{
IplImage *source = cvLoadImage( "Image.bmp");
// Here we retrieve a percentage value to a integer
int percent =20;
// declare a destination IplImage object with correct size, depth and channels
IplImage *destination = cvCreateImage
( cvSize((int)((source->width*percent)/100) , (int)((source->height*percent)/100) ),
source->depth, source->nChannels );
//use cvResize to resize source to a destination image
cvResize(source, destination);
// save image with a name supplied with a second argument
cvShowImage("new:",destination);
cvWaitKey(0);
return 0;
}

最佳答案

在visual studio中关闭/ZI:

  1. 打开项目的属性页对话框。
  2. 单击 C/C++ 文件夹。
  3. 单击常规属性页。
  4. 修改调试信息格式属性 - 将其设置为“无”

关于winapi - 错误 D8016 : '/ZI' and '/clr' command-line options are incompatible,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13331318/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com