1.项目后端整体迁移至PaddleOCR-NCNN算法,已通过基本的兼容性测试 2.工程改为使用CMake组织,后续为了更好地兼容第三方库,不再提供QMake工程 3.重整权利声明文件,重整代码工程,确保最小化侵权风险 Log: 切换后端至PaddleOCR-NCNN,切换工程为CMake Change-Id: I4d5d2c5d37505a4a24b389b1a4c5d12f17bfa38c
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest">
 | 
						|
  <Identity Name="Microsoft.SDKSamples.MediaCapture.CPP" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" Version="1.1.0.6" />
 | 
						|
  <Properties>
 | 
						|
    <DisplayName>MediaCapture CPP sample</DisplayName>
 | 
						|
    <PublisherDisplayName>Microsoft Corporation</PublisherDisplayName>
 | 
						|
    <Logo>Assets\windows-sdk.png</Logo>
 | 
						|
  </Properties>
 | 
						|
  <Prerequisites>
 | 
						|
    <OSMinVersion>6.3</OSMinVersion>
 | 
						|
    <OSMaxVersionTested>6.3</OSMaxVersionTested>
 | 
						|
  </Prerequisites>
 | 
						|
  <Resources>
 | 
						|
    <Resource Language="x-generate" />
 | 
						|
  </Resources>
 | 
						|
  <Applications>
 | 
						|
    <Application Id="MediaCapture.App" Executable="$targetnametoken$.exe" EntryPoint="MediaCapture.App">
 | 
						|
      <m2:VisualElements DisplayName="OCV Image Manipulations" Description="OpenCV Image Manipulations sample" BackgroundColor="#00b2f0" ForegroundText="light" Square150x150Logo="Assets\opencv-logo-150.png" Square30x30Logo="Assets\opencv-logo-30.png">
 | 
						|
        <m2:DefaultTile ShortName="Ocv ImageManipulations">
 | 
						|
          <m2:ShowNameOnTiles>
 | 
						|
            <m2:ShowOn Tile="square150x150Logo" />
 | 
						|
          </m2:ShowNameOnTiles>
 | 
						|
        </m2:DefaultTile>
 | 
						|
        <m2:SplashScreen BackgroundColor="#00b2f0" Image="Assets\splash-sdk.png" />
 | 
						|
      </m2:VisualElements>
 | 
						|
    </Application>
 | 
						|
  </Applications>
 | 
						|
  <Capabilities>
 | 
						|
    <DeviceCapability Name="webcam" />
 | 
						|
    <DeviceCapability Name="microphone" />
 | 
						|
  </Capabilities>
 | 
						|
  <Extensions>
 | 
						|
    <Extension Category="windows.activatableClass.inProcessServer">
 | 
						|
      <InProcessServer>
 | 
						|
        <Path>OcvTransform.dll</Path>
 | 
						|
        <ActivatableClass ActivatableClassId="OcvTransform.OcvImageManipulations" ThreadingModel="both" />
 | 
						|
      </InProcessServer>
 | 
						|
    </Extension>
 | 
						|
  </Extensions>
 | 
						|
</Package> |