forked from codeproject/CodeProject.AI-BackgroundRemover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBackgroundRemover.pyproj
84 lines (84 loc) · 3.43 KB
/
BackgroundRemover.pyproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{470d3417-36a4-49a4-b719-496466fa92fc}</ProjectGuid>
<ProjectHome />
<StartupFile>rembg_adapter.py</StartupFile>
<SearchPath>..\SDK\Python</SearchPath>
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<ProjectTypeGuids>{888888a0-9f3d-457c-b088-3a5042f75d52}</ProjectTypeGuids>
<LaunchProvider>Standard Python launcher</LaunchProvider>
<InterpreterId>MSBuild|venv|$(MSBuildProjectFullPath)</InterpreterId>
<EnableNativeCodeDebugging>False</EnableNativeCodeDebugging>
<Name>BackgroundRemover</Name>
<IsWindowsApplication>False</IsWindowsApplication>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'" />
<PropertyGroup Condition="'$(Configuration)' == 'Release'" />
<PropertyGroup>
<VisualStudioVersion Condition=" '$(VisualStudioVersion)' == '' ">10.0</VisualStudioVersion>
</PropertyGroup>
<ItemGroup>
<Content Include="install.bat" />
<Content Include="install.sh" />
<Content Include="LICENSE.txt" />
<Content Include="models\u2net.onnx" />
<Content Include="modulesettings.json">
</Content>
<Content Include="package.bat" />
<Content Include="package.sh" />
<Content Include="explore.html" />
<Content Include="test\chris-hemsworth-2.jpg" />
</ItemGroup>
<ItemGroup>
<Content Include="requirements.txt" />
<Content Include="requirements.linux.arm64.txt">
<DependentUpon>requirements.txt</DependentUpon>
</Content>
<Content Include="requirements.linux.txt">
<DependentUpon>requirements.txt</DependentUpon>
</Content>
<Content Include="requirements.macos.txt">
<DependentUpon>requirements.txt</DependentUpon>
</Content>
<Content Include="requirements.macos.arm64.txt">
<DependentUpon>requirements.txt</DependentUpon>
</Content>
<Content Include="requirements.windows.gpu.txt">
<DependentUpon>requirements.txt</DependentUpon>
</Content>
</ItemGroup>
<ItemGroup>
<Compile Include="rembg.py" />
<Compile Include="rembg\bg.py" />
<Compile Include="rembg\cli.py" />
<Compile Include="rembg\session_base.py" />
<Compile Include="rembg\session_cloth.py" />
<Compile Include="rembg\session_factory.py" />
<Compile Include="rembg\session_simple.py" />
<Compile Include="rembg\_version.py" />
<Compile Include="rembg\__init__.py" />
<Compile Include="rembg_adapter.py" />
<Compile Include="__init__.py" />
</ItemGroup>
<ItemGroup>
<Folder Include="models\" />
<Folder Include="rembg\" />
<Folder Include="test\" />
</ItemGroup>
<ItemGroup>
<Interpreter Include=".\bin\windows\python39\venv\">
<Id>venv</Id>
<Version>3.9</Version>
<Description>venv (Python 3.9 (64-bit))</Description>
<InterpreterPath>Scripts\python.exe</InterpreterPath>
<WindowsInterpreterPath>Scripts\pythonw.exe</WindowsInterpreterPath>
<PathEnvironmentVariable>PYTHONPATH</PathEnvironmentVariable>
<Architecture>X64</Architecture>
</Interpreter>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
</Project>