This commit is contained in:
Young Kim 2018-08-23 14:37:04 -07:00
Родитель f037177be8
Коммит 95ec2ba84e
5 изменённых файлов: 15 добавлений и 15 удалений

Просмотреть файл

@ -125,7 +125,7 @@ void mnist_cppcx::MainPage::clearButton_Click(Platform::Object^ sender, Windows:
cropBounds.Width = w;
cropBounds.Height = h;
VideoFrame^ cropped_vf = ref new VideoFrame(BitmapPixelFormat::Bgra8, 28, 28, BitmapAlphaMode::Ignore);
VideoFrame^ cropped_vf = ref new VideoFrame(BitmapPixelFormat::Bgra8, w, h, BitmapAlphaMode::Ignore);
inputVideoFrame->CopyToAsync(cropped_vf, cropBounds, nullptr);
return cropped_vf;

Просмотреть файл

@ -7,8 +7,8 @@
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
<AppContainerApplication>true</AppContainerApplication>
<ApplicationType>Windows Store</ApplicationType>
<WindowsTargetPlatformVersion Condition=" '$(WindowsTargetPlatformVersion)' == '' ">10.0.17723.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformMinVersion>10.0.17723.0</WindowsTargetPlatformMinVersion>
<WindowsTargetPlatformVersion Condition=" '$(WindowsTargetPlatformVersion)' == '' ">10.0.17738.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformMinVersion>10.0.17738.0</WindowsTargetPlatformMinVersion>
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />

Просмотреть файл

@ -11,8 +11,8 @@
<AssemblyName>MNIST_Demo</AssemblyName>
<DefaultLanguage>en-US</DefaultLanguage>
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.17723.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.17723.0</TargetPlatformMinVersion>
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.17738.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.17738.0</TargetPlatformMinVersion>
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>

Просмотреть файл

@ -8,8 +8,8 @@
<ProjectGuid>{2bf804d4-daa2-42be-9f21-0e94f021ef53}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>SqueezeNetObjectDetection</RootNamespace>
<WindowsTargetPlatformVersion Condition=" '$(WindowsTargetPlatformVersion)' == '' ">10.0.17713.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformMinVersion>10.0.17134.0</WindowsTargetPlatformMinVersion>
<WindowsTargetPlatformVersion Condition=" '$(WindowsTargetPlatformVersion)' == '' ">10.0.17738.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformMinVersion>10.0.17738.0</WindowsTargetPlatformMinVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<ItemGroup Label="ProjectConfigurations">

Просмотреть файл

@ -11,8 +11,8 @@
<AssemblyName>SimplestTestApp</AssemblyName>
<DefaultLanguage>en-US</DefaultLanguage>
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.17701.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.17701.0</TargetPlatformMinVersion>
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.17738.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.17738.0</TargetPlatformMinVersion>
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
@ -152,11 +152,11 @@
<VisualStudioVersion>14.0</VisualStudioVersion>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>