commit
4cd447c993
57 changed files with 2011 additions and 0 deletions
Binary file not shown.
@ -0,0 +1,108 @@ |
|||
|
|||
// DIP182002108.cpp: 定义应用程序的类行为。
|
|||
//
|
|||
|
|||
#include "pch.h" |
|||
#include "framework.h" |
|||
#include "DIP182002108.h" |
|||
#include "DIP182002108Dlg.h" |
|||
#include <opencv.hpp> |
|||
|
|||
#ifdef _DEBUG |
|||
#define new DEBUG_NEW |
|||
#endif |
|||
|
|||
|
|||
// CDIP182002108App
|
|||
|
|||
BEGIN_MESSAGE_MAP(CDIP182002108App, CWinApp) |
|||
ON_COMMAND(ID_HELP, &CWinApp::OnHelp) |
|||
END_MESSAGE_MAP() |
|||
|
|||
|
|||
// CDIP182002108App 构造
|
|||
|
|||
CDIP182002108App::CDIP182002108App() |
|||
{ |
|||
// 支持重新启动管理器
|
|||
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART; |
|||
|
|||
// TODO: 在此处添加构造代码,
|
|||
// 将所有重要的初始化放置在 InitInstance 中
|
|||
} |
|||
|
|||
|
|||
// 唯一的 CDIP182002108App 对象
|
|||
|
|||
CDIP182002108App theApp; |
|||
|
|||
|
|||
// CDIP182002108App 初始化
|
|||
|
|||
BOOL CDIP182002108App::InitInstance() |
|||
{ |
|||
// 如果一个运行在 Windows XP 上的应用程序清单指定要
|
|||
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
|
|||
//则需要 InitCommonControlsEx()。 否则,将无法创建窗口。
|
|||
INITCOMMONCONTROLSEX InitCtrls; |
|||
InitCtrls.dwSize = sizeof(InitCtrls); |
|||
// 将它设置为包括所有要在应用程序中使用的
|
|||
// 公共控件类。
|
|||
InitCtrls.dwICC = ICC_WIN95_CLASSES; |
|||
InitCommonControlsEx(&InitCtrls); |
|||
|
|||
CWinApp::InitInstance(); |
|||
|
|||
|
|||
AfxEnableControlContainer(); |
|||
|
|||
// 创建 shell 管理器,以防对话框包含
|
|||
// 任何 shell 树视图控件或 shell 列表视图控件。
|
|||
CShellManager *pShellManager = new CShellManager; |
|||
|
|||
// 激活“Windows Native”视觉管理器,以便在 MFC 控件中启用主题
|
|||
CMFCVisualManager::SetDefaultManager(RUNTIME_CLASS(CMFCVisualManagerWindows)); |
|||
|
|||
// 标准初始化
|
|||
// 如果未使用这些功能并希望减小
|
|||
// 最终可执行文件的大小,则应移除下列
|
|||
// 不需要的特定初始化例程
|
|||
// 更改用于存储设置的注册表项
|
|||
// TODO: 应适当修改该字符串,
|
|||
// 例如修改为公司或组织名
|
|||
SetRegistryKey(_T("应用程序向导生成的本地应用程序")); |
|||
|
|||
CDIP182002108Dlg dlg; |
|||
m_pMainWnd = &dlg; |
|||
INT_PTR nResponse = dlg.DoModal(); |
|||
if (nResponse == IDOK) |
|||
{ |
|||
// TODO: 在此放置处理何时用
|
|||
// “确定”来关闭对话框的代码
|
|||
} |
|||
else if (nResponse == IDCANCEL) |
|||
{ |
|||
// TODO: 在此放置处理何时用
|
|||
// “取消”来关闭对话框的代码
|
|||
} |
|||
else if (nResponse == -1) |
|||
{ |
|||
TRACE(traceAppMsg, 0, "警告: 对话框创建失败,应用程序将意外终止。\n"); |
|||
TRACE(traceAppMsg, 0, "警告: 如果您在对话框上使用 MFC 控件,则无法 #define _AFX_NO_MFC_CONTROLS_IN_DIALOGS。\n"); |
|||
} |
|||
|
|||
// 删除上面创建的 shell 管理器。
|
|||
if (pShellManager != nullptr) |
|||
{ |
|||
delete pShellManager; |
|||
} |
|||
|
|||
#if !defined(_AFXDLL) && !defined(_AFX_NO_MFC_CONTROLS_IN_DIALOGS) |
|||
ControlBarCleanUp(); |
|||
#endif |
|||
|
|||
// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
|
|||
// 而不是启动应用程序的消息泵。
|
|||
return FALSE; |
|||
} |
|||
|
@ -0,0 +1,32 @@ |
|||
|
|||
// DIP182002108.h: PROJECT_NAME 应用程序的主头文件
|
|||
//
|
|||
|
|||
#pragma once |
|||
|
|||
#ifndef __AFXWIN_H__ |
|||
#error "在包含此文件之前包含 'pch.h' 以生成 PCH" |
|||
#endif |
|||
|
|||
#include "resource.h" // 主符号 |
|||
|
|||
|
|||
// CDIP182002108App:
|
|||
// 有关此类的实现,请参阅 DIP182002108.cpp
|
|||
//
|
|||
|
|||
class CDIP182002108App : public CWinApp |
|||
{ |
|||
public: |
|||
CDIP182002108App(); |
|||
|
|||
// 重写
|
|||
public: |
|||
virtual BOOL InitInstance(); |
|||
|
|||
// 实现
|
|||
|
|||
DECLARE_MESSAGE_MAP() |
|||
}; |
|||
|
|||
extern CDIP182002108App theApp; |
Binary file not shown.
@ -0,0 +1,218 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|||
<ItemGroup Label="ProjectConfigurations"> |
|||
<ProjectConfiguration Include="Debug|Win32"> |
|||
<Configuration>Debug</Configuration> |
|||
<Platform>Win32</Platform> |
|||
</ProjectConfiguration> |
|||
<ProjectConfiguration Include="Release|Win32"> |
|||
<Configuration>Release</Configuration> |
|||
<Platform>Win32</Platform> |
|||
</ProjectConfiguration> |
|||
<ProjectConfiguration Include="Debug|x64"> |
|||
<Configuration>Debug</Configuration> |
|||
<Platform>x64</Platform> |
|||
</ProjectConfiguration> |
|||
<ProjectConfiguration Include="Release|x64"> |
|||
<Configuration>Release</Configuration> |
|||
<Platform>x64</Platform> |
|||
</ProjectConfiguration> |
|||
</ItemGroup> |
|||
<PropertyGroup Label="Globals"> |
|||
<VCProjectVersion>16.0</VCProjectVersion> |
|||
<ProjectGuid>{E084212D-1AA9-4DA5-A701-611037AEFA26}</ProjectGuid> |
|||
<Keyword>MFCProj</Keyword> |
|||
<RootNamespace>DIP182002108</RootNamespace> |
|||
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion> |
|||
</PropertyGroup> |
|||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
|||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |
|||
<ConfigurationType>Application</ConfigurationType> |
|||
<UseDebugLibraries>true</UseDebugLibraries> |
|||
<PlatformToolset>v142</PlatformToolset> |
|||
<CharacterSet>Unicode</CharacterSet> |
|||
<UseOfMfc>Dynamic</UseOfMfc> |
|||
</PropertyGroup> |
|||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |
|||
<ConfigurationType>Application</ConfigurationType> |
|||
<UseDebugLibraries>false</UseDebugLibraries> |
|||
<PlatformToolset>v142</PlatformToolset> |
|||
<WholeProgramOptimization>true</WholeProgramOptimization> |
|||
<CharacterSet>Unicode</CharacterSet> |
|||
<UseOfMfc>Dynamic</UseOfMfc> |
|||
</PropertyGroup> |
|||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> |
|||
<ConfigurationType>Application</ConfigurationType> |
|||
<UseDebugLibraries>true</UseDebugLibraries> |
|||
<PlatformToolset>v142</PlatformToolset> |
|||
<CharacterSet>Unicode</CharacterSet> |
|||
<UseOfMfc>Dynamic</UseOfMfc> |
|||
</PropertyGroup> |
|||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> |
|||
<ConfigurationType>Application</ConfigurationType> |
|||
<UseDebugLibraries>false</UseDebugLibraries> |
|||
<PlatformToolset>v142</PlatformToolset> |
|||
<WholeProgramOptimization>true</WholeProgramOptimization> |
|||
<CharacterSet>Unicode</CharacterSet> |
|||
<UseOfMfc>Dynamic</UseOfMfc> |
|||
</PropertyGroup> |
|||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
|||
<ImportGroup Label="ExtensionSettings"> |
|||
</ImportGroup> |
|||
<ImportGroup Label="Shared"> |
|||
</ImportGroup> |
|||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
|||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
|||
</ImportGroup> |
|||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
|||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
|||
</ImportGroup> |
|||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
|||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
|||
<Import Project="..\..\..\OpenCVr.props" /> |
|||
<Import Project="..\..\..\OpenCVd.props" /> |
|||
</ImportGroup> |
|||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
|||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
|||
<Import Project="..\..\..\OpenCVr.props" /> |
|||
</ImportGroup> |
|||
<PropertyGroup Label="UserMacros" /> |
|||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
|||
<LinkIncremental>true</LinkIncremental> |
|||
</PropertyGroup> |
|||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
|||
<LinkIncremental>true</LinkIncremental> |
|||
</PropertyGroup> |
|||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
|||
<LinkIncremental>false</LinkIncremental> |
|||
</PropertyGroup> |
|||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
|||
<LinkIncremental>false</LinkIncremental> |
|||
</PropertyGroup> |
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
|||
<ClCompile> |
|||
<PrecompiledHeader>Use</PrecompiledHeader> |
|||
<WarningLevel>Level3</WarningLevel> |
|||
<SDLCheck>true</SDLCheck> |
|||
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|||
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile> |
|||
</ClCompile> |
|||
<Link> |
|||
<SubSystem>Windows</SubSystem> |
|||
</Link> |
|||
<Midl> |
|||
<MkTypLibCompatible>false</MkTypLibCompatible> |
|||
<ValidateAllParameters>true</ValidateAllParameters> |
|||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|||
</Midl> |
|||
<ResourceCompile> |
|||
<Culture>0x0804</Culture> |
|||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|||
<AdditionalIncludeDirectories>$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
|||
</ResourceCompile> |
|||
</ItemDefinitionGroup> |
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
|||
<ClCompile> |
|||
<PrecompiledHeader>Use</PrecompiledHeader> |
|||
<WarningLevel>Level3</WarningLevel> |
|||
<SDLCheck>true</SDLCheck> |
|||
<PreprocessorDefinitions>_WINDOWS;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|||
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile> |
|||
</ClCompile> |
|||
<Link> |
|||
<SubSystem>Windows</SubSystem> |
|||
</Link> |
|||
<Midl> |
|||
<MkTypLibCompatible>false</MkTypLibCompatible> |
|||
<ValidateAllParameters>true</ValidateAllParameters> |
|||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|||
</Midl> |
|||
<ResourceCompile> |
|||
<Culture>0x0804</Culture> |
|||
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|||
<AdditionalIncludeDirectories>$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
|||
</ResourceCompile> |
|||
</ItemDefinitionGroup> |
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
|||
<ClCompile> |
|||
<PrecompiledHeader>Use</PrecompiledHeader> |
|||
<WarningLevel>Level3</WarningLevel> |
|||
<FunctionLevelLinking>true</FunctionLevelLinking> |
|||
<IntrinsicFunctions>true</IntrinsicFunctions> |
|||
<SDLCheck>true</SDLCheck> |
|||
<PreprocessorDefinitions>WIN32;_WINDOWS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|||
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile> |
|||
</ClCompile> |
|||
<Link> |
|||
<SubSystem>Windows</SubSystem> |
|||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
|||
<OptimizeReferences>true</OptimizeReferences> |
|||
</Link> |
|||
<Midl> |
|||
<MkTypLibCompatible>false</MkTypLibCompatible> |
|||
<ValidateAllParameters>true</ValidateAllParameters> |
|||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|||
</Midl> |
|||
<ResourceCompile> |
|||
<Culture>0x0804</Culture> |
|||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|||
<AdditionalIncludeDirectories>$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
|||
</ResourceCompile> |
|||
</ItemDefinitionGroup> |
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
|||
<ClCompile> |
|||
<PrecompiledHeader>Use</PrecompiledHeader> |
|||
<WarningLevel>Level3</WarningLevel> |
|||
<FunctionLevelLinking>true</FunctionLevelLinking> |
|||
<IntrinsicFunctions>true</IntrinsicFunctions> |
|||
<SDLCheck>true</SDLCheck> |
|||
<PreprocessorDefinitions>_WINDOWS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|||
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile> |
|||
</ClCompile> |
|||
<Link> |
|||
<SubSystem>Windows</SubSystem> |
|||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
|||
<OptimizeReferences>true</OptimizeReferences> |
|||
</Link> |
|||
<Midl> |
|||
<MkTypLibCompatible>false</MkTypLibCompatible> |
|||
<ValidateAllParameters>true</ValidateAllParameters> |
|||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|||
</Midl> |
|||
<ResourceCompile> |
|||
<Culture>0x0804</Culture> |
|||
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|||
<AdditionalIncludeDirectories>$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
|||
</ResourceCompile> |
|||
</ItemDefinitionGroup> |
|||
<ItemGroup> |
|||
<ClInclude Include="DIP182002108.h" /> |
|||
<ClInclude Include="DIP182002108Dlg.h" /> |
|||
<ClInclude Include="framework.h" /> |
|||
<ClInclude Include="pch.h" /> |
|||
<ClInclude Include="Resource.h" /> |
|||
<ClInclude Include="targetver.h" /> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<ClCompile Include="DIP182002108.cpp" /> |
|||
<ClCompile Include="DIP182002108Dlg.cpp" /> |
|||
<ClCompile Include="pch.cpp"> |
|||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader> |
|||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader> |
|||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader> |
|||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader> |
|||
</ClCompile> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<ResourceCompile Include="DIP182002108.rc" /> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<None Include="res\DIP182002108.rc2" /> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<Image Include="res\DIP182002108.ico" /> |
|||
</ItemGroup> |
|||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
|||
<ImportGroup Label="ExtensionTargets"> |
|||
</ImportGroup> |
|||
</Project> |
@ -0,0 +1,63 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|||
<ItemGroup> |
|||
<Filter Include="源文件"> |
|||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> |
|||
<Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions> |
|||
</Filter> |
|||
<Filter Include="头文件"> |
|||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> |
|||
<Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions> |
|||
</Filter> |
|||
<Filter Include="资源文件"> |
|||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier> |
|||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions> |
|||
</Filter> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<ClInclude Include="DIP182002108.h"> |
|||
<Filter>头文件</Filter> |
|||
</ClInclude> |
|||
<ClInclude Include="DIP182002108Dlg.h"> |
|||
<Filter>头文件</Filter> |
|||
</ClInclude> |
|||
<ClInclude Include="framework.h"> |
|||
<Filter>头文件</Filter> |
|||
</ClInclude> |
|||
<ClInclude Include="targetver.h"> |
|||
<Filter>头文件</Filter> |
|||
</ClInclude> |
|||
<ClInclude Include="Resource.h"> |
|||
<Filter>头文件</Filter> |
|||
</ClInclude> |
|||
<ClInclude Include="pch.h"> |
|||
<Filter>头文件</Filter> |
|||
</ClInclude> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<ClCompile Include="DIP182002108.cpp"> |
|||
<Filter>源文件</Filter> |
|||
</ClCompile> |
|||
<ClCompile Include="DIP182002108Dlg.cpp"> |
|||
<Filter>源文件</Filter> |
|||
</ClCompile> |
|||
<ClCompile Include="pch.cpp"> |
|||
<Filter>源文件</Filter> |
|||
</ClCompile> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<ResourceCompile Include="DIP182002108.rc"> |
|||
<Filter>资源文件</Filter> |
|||
</ResourceCompile> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<None Include="res\DIP182002108.rc2"> |
|||
<Filter>资源文件</Filter> |
|||
</None> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<Image Include="res\DIP182002108.ico"> |
|||
<Filter>资源文件</Filter> |
|||
</Image> |
|||
</ItemGroup> |
|||
</Project> |
@ -0,0 +1,6 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|||
<PropertyGroup> |
|||
<RESOURCE_FILE>DIP182002108.rc</RESOURCE_FILE> |
|||
</PropertyGroup> |
|||
</Project> |
File diff suppressed because it is too large
@ -0,0 +1,84 @@ |
|||
|
|||
// DIP182002108Dlg.h: 头文件
|
|||
//
|
|||
|
|||
#pragma once |
|||
#include <opencv.hpp> |
|||
|
|||
|
|||
// CDIP182002108Dlg 对话框
|
|||
class CDIP182002108Dlg : public CDialogEx |
|||
{ |
|||
// 构造
|
|||
public: |
|||
CDIP182002108Dlg(CWnd* pParent = nullptr); // 标准构造函数
|
|||
|
|||
// 对话框数据
|
|||
#ifdef AFX_DESIGN_TIME |
|||
enum { IDD = IDD_DIP182002108_DIALOG }; |
|||
#endif |
|||
|
|||
protected: |
|||
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
|||
|
|||
|
|||
// 实现
|
|||
protected: |
|||
HICON m_hIcon; |
|||
|
|||
// 生成的消息映射函数
|
|||
virtual BOOL OnInitDialog(); |
|||
afx_msg void OnSysCommand(UINT nID, LPARAM lParam); |
|||
afx_msg void OnPaint(); |
|||
afx_msg HCURSOR OnQueryDragIcon(); |
|||
DECLARE_MESSAGE_MAP() |
|||
public: |
|||
afx_msg void OnBnClickedButton1(); |
|||
|
|||
cv::Mat src; |
|||
afx_msg void OnBnClickedOpenvideo(); |
|||
int m_width; |
|||
int m_height; |
|||
afx_msg void OnBnClickedButton2(); |
|||
double m_angle; |
|||
afx_msg void OnBnClickedRotate(); |
|||
double m_shearRatio; |
|||
afx_msg void OnBnClickedHshear(); |
|||
afx_msg void OnBnClickedVshear(); |
|||
int m_a; |
|||
int m_b; |
|||
int m_ga; |
|||
int m_gb; |
|||
afx_msg void OnBnClickedLinear(); |
|||
afx_msg void OnBnClickedNonlinear(); |
|||
afx_msg void OnBnClickedHisteq(); |
|||
int m_pseudoMode; |
|||
afx_msg void OnBnClickedPseudo(); |
|||
int m_kemalSize; |
|||
int m_filterType; |
|||
afx_msg void OnBnClickedSmooth(); |
|||
int m_sharpType; |
|||
afx_msg void OnBnClickedSharp(); |
|||
int m_th; |
|||
afx_msg void OnBnClickedThre(); |
|||
int m_kernalSize; |
|||
int m_bias; |
|||
afx_msg void OnBnClickedAdthre(); |
|||
int m_seedX; |
|||
int m_seedY; |
|||
int m_regionTh; |
|||
afx_msg void OnBnClickedRegoingrow(); |
|||
int m_fSeedX; |
|||
int m_fSeedY; |
|||
int m_fTh; |
|||
afx_msg void OnBnClickedButton3(); |
|||
afx_msg void OnBnClickedErode(); |
|||
int m_morphType; |
|||
int m_morphSize; |
|||
afx_msg void OnBnClickedDilate(); |
|||
afx_msg void OnBnClickedMorphopen(); |
|||
afx_msg void OnBnClickedMorphclose(); |
|||
int m_colorType; |
|||
afx_msg void OnBnClickedColor(); |
|||
afx_msg void OnBnClickedButton9(); |
|||
}; |
@ -0,0 +1,49 @@ |
|||
#pragma once |
|||
|
|||
#ifndef VC_EXTRALEAN |
|||
#define VC_EXTRALEAN // 从 Windows 头中排除极少使用的资料
|
|||
#endif |
|||
|
|||
#include "targetver.h" |
|||
|
|||
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // 某些 CString 构造函数将是显式的
|
|||
|
|||
// 关闭 MFC 的一些常见且经常可放心忽略的隐藏警告消息
|
|||
#define _AFX_ALL_WARNINGS |
|||
|
|||
#include <afxwin.h> // MFC 核心组件和标准组件 |
|||
#include <afxext.h> // MFC 扩展 |
|||
|
|||
|
|||
#include <afxdisp.h> // MFC 自动化类 |
|||
|
|||
|
|||
|
|||
#ifndef _AFX_NO_OLE_SUPPORT |
|||
#include <afxdtctl.h> // MFC 对 Internet Explorer 4 公共控件的支持 |
|||
#endif |
|||
#ifndef _AFX_NO_AFXCMN_SUPPORT |
|||
#include <afxcmn.h> // MFC 对 Windows 公共控件的支持 |
|||
#endif // _AFX_NO_AFXCMN_SUPPORT
|
|||
|
|||
#include <afxcontrolbars.h> // MFC 支持功能区和控制条 |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
#ifdef _UNICODE |
|||
#if defined _M_IX86 |
|||
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"") |
|||
#elif defined _M_X64 |
|||
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"") |
|||
#else |
|||
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"") |
|||
#endif |
|||
#endif |
|||
|
|||
|
@ -0,0 +1,5 @@ |
|||
// pch.cpp: 与预编译标头对应的源文件
|
|||
|
|||
#include "pch.h" |
|||
|
|||
// 当使用预编译的头时,需要使用此源文件,编译才能成功。
|
@ -0,0 +1,13 @@ |
|||
// pch.h: 这是预编译标头文件。
|
|||
// 下方列出的文件仅编译一次,提高了将来生成的生成性能。
|
|||
// 这还将影响 IntelliSense 性能,包括代码完成和许多代码浏览功能。
|
|||
// 但是,如果此处列出的文件中的任何一个在生成之间有更新,它们全部都将被重新编译。
|
|||
// 请勿在此处添加要频繁更新的文件,这将使得性能优势无效。
|
|||
|
|||
#ifndef PCH_H |
|||
#define PCH_H |
|||
|
|||
// 添加要在此处预编译的标头
|
|||
#include "framework.h" |
|||
|
|||
#endif //PCH_H
|
After Width: | Height: | Size: 66 KiB |
Binary file not shown.
@ -0,0 +1,79 @@ |
|||
//{{NO_DEPENDENCIES}}
|
|||
// Microsoft Visual C++ 生成的包含文件。
|
|||
// 供 DIP182002108.rc 使用
|
|||
//
|
|||
#define IDM_ABOUTBOX 0x0010 |
|||
#define IDD_ABOUTBOX 100 |
|||
#define IDS_ABOUTBOX 101 |
|||
#define IDD_DIP182002108_DIALOG 102 |
|||
#define IDR_MAINFRAME 128 |
|||
#define IDC_BUTTON1 1000 |
|||
#define IDC_OPENIMG 1000 |
|||
#define IDC_PIC 1001 |
|||
#define IDC_OPENVIDEO 1002 |
|||
#define IDC_WIDTH 1004 |
|||
#define IDC_HEIGHT 1005 |
|||
#define IDC_BUTTON2 1006 |
|||
#define IDC_ANGLE 1007 |
|||
#define IDC_ROTATE 1008 |
|||
#define IDC_EDIT1 1009 |
|||
#define IDC_HSHEAR 1010 |
|||
#define IDC_VSHEAR 1011 |
|||
#define IDC_EDIT2 1012 |
|||
#define IDC_EDIT3 1013 |
|||
#define IDC_EDIT4 1014 |
|||
#define IDC_EDIT5 1015 |
|||
#define IDC_LINEAR 1016 |
|||
#define IDC_NONLINEAR 1017 |
|||
#define IDC_HISTEQ 1018 |
|||
#define IDC_RADIO1 1019 |
|||
#define IDC_RADIO2 1020 |
|||
#define IDC_PSEUDO 1021 |
|||
#define IDC_EDIT6 1022 |
|||
#define IDC_RADIO3 1023 |
|||
#define IDC_RADIO4 1024 |
|||
#define IDC_RADIO5 1025 |
|||
#define IDC_SMOOTH 1026 |
|||
#define IDC_RADIO6 1027 |
|||
#define IDC_RADIO7 1028 |
|||
#define IDC_RADIO8 1029 |
|||
#define IDC_SHARP 1030 |
|||
#define IDC_THRE 1031 |
|||
#define IDC_EDIT7 1032 |
|||
#define IDC_EDIT8 1033 |
|||
#define IDC_EDIT9 1034 |
|||
#define IDC_ADTHRE 1035 |
|||
#define IDC_EDIT10 1036 |
|||
#define IDC_EDIT11 1037 |
|||
#define IDC_EDIT12 1038 |
|||
#define IDC_REGOINGROW 1039 |
|||
#define IDC_BUTTON3 1040 |
|||
#define IDC_EDIT13 1041 |
|||
#define IDC_EDIT14 1042 |
|||
#define IDC_EDIT15 1043 |
|||
#define IDC_ERODE 1045 |
|||
#define IDC_DILATE 1046 |
|||
#define IDC_BUTTON6 1047 |
|||
#define IDC_MORPHOPEN 1047 |
|||
#define IDC_BUTTON7 1048 |
|||
#define IDC_MORPHCLOSE 1048 |
|||
#define IDC_RADIO9 1050 |
|||
#define IDC_RADIO10 1051 |
|||
#define IDC_RADIO11 1052 |
|||
#define IDC_EDIT18 1054 |
|||
#define IDC_COLOR 1055 |
|||
#define IDC_RADIO12 1058 |
|||
#define IDC_RADIO13 1059 |
|||
#define IDC_RADIO14 1060 |
|||
#define IDC_BUTTON9 1061 |
|||
|
|||
// Next default values for new objects
|
|||
//
|
|||
#ifdef APSTUDIO_INVOKED |
|||
#ifndef APSTUDIO_READONLY_SYMBOLS |
|||
#define _APS_NEXT_RESOURCE_VALUE 130 |
|||
#define _APS_NEXT_COMMAND_VALUE 32771 |
|||
#define _APS_NEXT_CONTROL_VALUE 1062 |
|||
#define _APS_NEXT_SYMED_VALUE 101 |
|||
#endif |
|||
#endif |
@ -0,0 +1,8 @@ |
|||
#pragma once |
|||
|
|||
// 包括 SDKDDKVer.h 将定义可用的最高版本的 Windows 平台。
|
|||
|
|||
// 如果要为以前的 Windows 平台生成应用程序,请包括 WinSDKVer.h,并将
|
|||
// 将 _WIN32_WINNT 宏设置为要支持的平台,然后再包括 SDKDDKVer.h。
|
|||
|
|||
#include <SDKDDKVer.h> |
@ -0,0 +1,7 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<Project> |
|||
<ProjectOutputs>D:\学业资源\VS2019\C or C++\DIP182002108\x64\Debug\DIP182002108.exe</ProjectOutputs> |
|||
<ContentFiles></ContentFiles> |
|||
<SatelliteDlls></SatelliteDlls> |
|||
<NonRecipeFileRefs></NonRecipeFileRefs> |
|||
</Project> |
@ -0,0 +1,89 @@ |
|||
DIP182002108Dlg.cpp |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(396,32): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(397,29): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(400,36): warning C4244: “参数”: 从“double”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(401,33): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(402,36): warning C4244: “参数”: 从“double”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(406,56): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(406,35): warning C4244: “参数”: 从“double”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(407,30): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(413,17): warning C4244: “初始化”: 从“double”转换到“int”,可能丢失数据 |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(441,32): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(442,29): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(446,33): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(447,46): warning C4244: “参数”: 从“double”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(447,30): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(450,39): warning C4244: “参数”: 从“double”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(451,39): warning C4244: “参数”: 从“double”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(452,30): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(458,18): warning C4244: “初始化”: 从“double”转换到“int”,可能丢失数据 |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(529,30): warning C4244: “=”: 从“float”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=uchar |
|||
] |
|||
DIP182002108.vcxproj -> D:\学业资源\VS2019\C or C++\DIP182002108\x64\Debug\DIP182002108.exe |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,2 @@ |
|||
PlatformToolSet=v142:VCToolArchitecture=Native32Bit:VCToolsVersion=14.27.29110:TargetPlatformVersion=10.0.18362.0: |
|||
Debug|x64|D:\学业资源\VS2019\C or C++\DIP182002108\| |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,20 @@ |
|||
d:\学业资源\vs2019\c or c++\dip182002108\dip182002108\x64\release\dip182002108.pch |
|||
d:\学业资源\vs2019\c or c++\dip182002108\dip182002108\x64\release\vc142.pdb |
|||
d:\学业资源\vs2019\c or c++\dip182002108\dip182002108\x64\release\pch.obj |
|||
d:\学业资源\vs2019\c or c++\dip182002108\dip182002108\x64\release\dip182002108dlg.obj |
|||
d:\学业资源\vs2019\c or c++\dip182002108\dip182002108\x64\release\dip182002108.obj |
|||
d:\学业资源\vs2019\c or c++\dip182002108\x64\release\dip182002108.ipdb |
|||
d:\学业资源\vs2019\c or c++\dip182002108\x64\release\dip182002108.iobj |
|||
d:\学业资源\vs2019\c or c++\dip182002108\x64\release\dip182002108.exe |
|||
d:\学业资源\vs2019\c or c++\dip182002108\x64\release\dip182002108.pdb |
|||
d:\学业资源\vs2019\c or c++\dip182002108\dip182002108\x64\release\dip182002108.res |
|||
d:\学业资源\vs2019\c or c++\dip182002108\dip182002108\x64\release\dip182002108.tlog\cl.command.1.tlog |
|||
d:\学业资源\vs2019\c or c++\dip182002108\dip182002108\x64\release\dip182002108.tlog\cl.read.1.tlog |
|||
d:\学业资源\vs2019\c or c++\dip182002108\dip182002108\x64\release\dip182002108.tlog\cl.write.1.tlog |
|||
d:\学业资源\vs2019\c or c++\dip182002108\dip182002108\x64\release\dip182002108.tlog\dip182002108.write.1u.tlog |
|||
d:\学业资源\vs2019\c or c++\dip182002108\dip182002108\x64\release\dip182002108.tlog\link.command.1.tlog |
|||
d:\学业资源\vs2019\c or c++\dip182002108\dip182002108\x64\release\dip182002108.tlog\link.read.1.tlog |
|||
d:\学业资源\vs2019\c or c++\dip182002108\dip182002108\x64\release\dip182002108.tlog\link.write.1.tlog |
|||
d:\学业资源\vs2019\c or c++\dip182002108\dip182002108\x64\release\dip182002108.tlog\rc.command.1.tlog |
|||
d:\学业资源\vs2019\c or c++\dip182002108\dip182002108\x64\release\dip182002108.tlog\rc.read.1.tlog |
|||
d:\学业资源\vs2019\c or c++\dip182002108\dip182002108\x64\release\dip182002108.tlog\rc.write.1.tlog |
@ -0,0 +1,7 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<Project> |
|||
<ProjectOutputs>D:\学业资源\VS2019\C or C++\DIP182002108\x64\Release\DIP182002108.exe</ProjectOutputs> |
|||
<ContentFiles></ContentFiles> |
|||
<SatelliteDlls></SatelliteDlls> |
|||
<NonRecipeFileRefs></NonRecipeFileRefs> |
|||
</Project> |
@ -0,0 +1,95 @@ |
|||
pch.cpp |
|||
DIP182002108.cpp |
|||
DIP182002108Dlg.cpp |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(396,32): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(397,29): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(400,36): warning C4244: “参数”: 从“double”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(401,33): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(402,36): warning C4244: “参数”: 从“double”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(406,56): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(406,35): warning C4244: “参数”: 从“double”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(407,30): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(413,17): warning C4244: “初始化”: 从“double”转换到“int”,可能丢失数据 |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(441,32): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(442,29): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(446,33): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(447,46): warning C4244: “参数”: 从“double”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(447,30): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(450,39): warning C4244: “参数”: 从“double”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(451,39): warning C4244: “参数”: 从“double”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(452,30): warning C4244: “参数”: 从“int”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=float |
|||
] |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(458,18): warning C4244: “初始化”: 从“double”转换到“int”,可能丢失数据 |
|||
D:\学业资源\VS2019\C or C++\DIP182002108\DIP182002108\DIP182002108Dlg.cpp(529,30): warning C4244: “=”: 从“float”转换到“_Tp”,可能丢失数据 |
|||
with |
|||
[ |
|||
_Tp=uchar |
|||
] |
|||
正在生成代码 |
|||
Previous IPDB not found, fall back to full compilation. |
|||
All 554 functions were compiled because no usable IPDB/IOBJ from previous compilation was found. |
|||
已完成代码的生成 |
|||
DIP182002108.vcxproj -> D:\学业资源\VS2019\C or C++\DIP182002108\x64\Release\DIP182002108.exe |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,2 @@ |
|||
PlatformToolSet=v142:VCToolArchitecture=Native32Bit:VCToolsVersion=14.27.29110:TargetPlatformVersion=10.0.18362.0: |
|||
Release|x64|D:\学业资源\VS2019\C or C++\DIP182002108\| |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue