Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,53 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{01E65A1A-8C95-4E79-90E6-E40EFCCAF332}</ProjectGuid>
<TargetFramework>net4</TargetFramework>
<OutputType>Exe</OutputType>
<RootNamespace>Contrastbasedadaptivedeadzone</RootNamespace>
<AssemblyName>Contrast-based-adaptive-deadzone</AssemblyName>
<ReleaseVersion>0.2</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<RootNamespace>TurbowaveletsSamples</RootNamespace>

<Copyright>benutzer</Copyright>
</PropertyGroup>

<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Drawing" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ImageArrayConverter.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<ProjectReference Include="..\..\..\TurboWavelets\TurboWavelets.csproj">
<Project>{1E7A9FFF-4D2D-4608-98CF-051E3F883266}</Project>
<Name>TurboWavelets</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\TurboWavelets\TurboWavelets.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="sample.png" />
</ItemGroup>
</Project>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ private static void applyAdaptiveDeadzone (float[,] array, int numCoeffs)

public static void Main (string[] args)
{
Bitmap bmp = new Bitmap ("../../sample.png");
Bitmap bmp = new Bitmap ("../../../sample.png");
float[,] yArray = new float[bmp.Width, bmp.Height];
float[,] cbArray = new float[bmp.Width, bmp.Height];
float[,] crArray = new float[bmp.Width, bmp.Height];
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,50 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{08BA1610-AC76-4528-9902-0CE354A42083}</ProjectGuid>
<TargetFramework>net4</TargetFramework>
<OutputType>Exe</OutputType>
<RootNamespace>Contrastbasedadaptivesharpening</RootNamespace>
<AssemblyName>Contrast-based-adaptive-sharpening</AssemblyName>
<ReleaseVersion>0.2</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<RootNamespace>TurbowaveletsSamples</RootNamespace>

<Copyright>benutzer</Copyright>
</PropertyGroup>

<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Drawing" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ImageArrayConverter.cs" />
<ProjectReference Include="..\..\..\TurboWavelets\TurboWavelets.csproj" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<ProjectReference Include="..\..\..\TurboWavelets\TurboWavelets.csproj">
<Project>{1E7A9FFF-4D2D-4608-98CF-051E3F883266}</Project>
<Name>TurboWavelets</Name>
</ProjectReference>
<None Include="sample.png" />
</ItemGroup>
</Project>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ private static void applyAdaptiveShapening (float[,] array, float position)

public static void Main (string[] args)
{
Bitmap bmp = new Bitmap ("../../sample.png");
Bitmap bmp = new Bitmap ("../../../sample.png");
float[,] yArray = new float[bmp.Width, bmp.Height];
float[,] cbArray = new float[bmp.Width, bmp.Height];
float[,] crArray = new float[bmp.Width, bmp.Height];
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class WaveletImageUpscalingClass

public static void Main (string[] args)
{
Bitmap bmp = new Bitmap ("../../sample.png");
Bitmap bmp = new Bitmap ("../../../sample.png");

Bitmap bmp2 = new Bitmap (2 * bmp.Width, 2 * bmp.Height, PixelFormat.Format32bppArgb);
float[,] yArray2 = new float[bmp2.Width, bmp2.Height];
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,53 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{824F0C83-9719-4068-9B64-8CD79C56E28A}</ProjectGuid>
<TargetFramework>net4</TargetFramework>
<OutputType>Exe</OutputType>
<RootNamespace>Waveletimageupscaling</RootNamespace>
<AssemblyName>Wavelet-image-upscaling</AssemblyName>
<ReleaseVersion>0.2</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<RootNamespace>TurbowaveletsSamples</RootNamespace>

<Copyright>benutzer</Copyright>
</PropertyGroup>

<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Drawing" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ImageArrayConverter.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<ProjectReference Include="..\..\..\TurboWavelets\TurboWavelets.csproj">
<Project>{1E7A9FFF-4D2D-4608-98CF-051E3F883266}</Project>
<Name>TurboWavelets</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\TurboWavelets\TurboWavelets.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="sample.png" />
</ItemGroup>
</Project>

</Project>
22 changes: 0 additions & 22 deletions TurboWavelets-Test/Properties/AssemblyInfo.cs

This file was deleted.

72 changes: 15 additions & 57 deletions TurboWavelets-Test/TurboWavelets-Test.csproj
Original file line number Diff line number Diff line change
@@ -1,63 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{5C7CD59F-8311-41F2-93D4-058913CEEA91}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>TurboWavelets</RootNamespace>
<AssemblyName>TurboWaveletsTests</AssemblyName>
<ReleaseVersion>0.2</ReleaseVersion>
<TargetFramework>net4</TargetFramework>
<RootNamespace>TurboWaveletsTests</RootNamespace>

<Copyright>Stefan Moebius</Copyright>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="nunit.framework">
<HintPath>..\packages\NUnit.3.2.0\lib\net40\nunit.framework.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TurboWaveletsTest.cs" />
<Compile Include="..\TurboWavelets\Biorthogonal53Wavelet1DStatic.cs">
<Link>TurboWavelets\Biorthogonal53Wavelet1DStatic.cs</Link>
</Compile>
<Compile Include="..\TurboWavelets\Biorthogonal53Wavelet2D.cs">
<Link>TurboWavelets\Biorthogonal53Wavelet2D.cs</Link>
</Compile>
<Compile Include="..\TurboWavelets\OrderWavelet2D.cs">
<Link>TurboWavelets\OrderWavelet2D.cs</Link>
</Compile>
<Compile Include="..\TurboWavelets\Wavelet2D.cs">
<Link>TurboWavelets\Wavelet2D.cs</Link>
</Compile>
<Compile Include="..\TurboWavelets\HaarWavelet2D.cs">
<Link>TurboWavelets\HaarWavelet2D.cs</Link>
</Compile>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />

<ItemGroup>
<None Include="packages.config" />
<PackageReference Include="nunit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
</ItemGroup>

<ItemGroup>
<Folder Include="TurboWavelets\" />
<ProjectReference Include="..\TurboWavelets\TurboWavelets.csproj" />
</ItemGroup>
</Project>

</Project>
4 changes: 0 additions & 4 deletions TurboWavelets-Test/packages.config

This file was deleted.

Loading