Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/samples/winrt/ImageManipulations/Constants.cpp
16337 views
1
//*********************************************************
2
//
3
// Copyright (c) Microsoft. All rights reserved.
4
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
5
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
6
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
7
// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
8
//
9
//*********************************************************
10
11
#include "pch.h"
12
#include "MainPage.xaml.h"
13
#include "Constants.h"
14
15
using namespace SDKSample;
16
17
Platform::Array<Scenario>^ MainPage::scenariosInner = ref new Platform::Array<Scenario>
18
{
19
// The format here is the following:
20
// { "Description for the sample", "Fully quaified name for the class that implements the scenario" }
21
{ "Enumerate cameras and add a video effect", "SDKSample.MediaCapture.AdvancedCapture" },
22
};
23
24