├── .gitattributes ├── 9781484242360.jpg ├── Code ├── PulseNoiseWF │ ├── Example_images │ │ ├── JesusMPfrag.jpg │ │ ├── JesusMPfragG.jpg │ │ └── Koenig.BMP │ ├── PulseNoiseWF.sln │ ├── PulseNoiseWF.suo │ └── PulseNoiseWF │ │ ├── CImage.cs │ │ ├── CPnoise.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── PulseNoiseWF.csproj │ │ ├── PulseNoiseWF.csproj.user │ │ ├── Queue.cs │ │ ├── bin │ │ ├── Debug │ │ │ ├── PulseNoiseWF.exe │ │ │ ├── PulseNoiseWF.pdb │ │ │ ├── PulseNoiseWF.vshost.exe │ │ │ └── PulseNoiseWF.vshost.exe.manifest │ │ └── Release │ │ │ ├── PulseNoiseWF.exe │ │ │ └── PulseNoiseWF.pdb │ │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── PulseNoiseWF.Form1.resources │ │ ├── PulseNoiseWF.Properties.Resources.resources │ │ ├── PulseNoiseWF.csproj.FileListAbsolute.txt │ │ ├── PulseNoiseWF.csproj.GenerateResource.Cache │ │ ├── PulseNoiseWF.exe │ │ └── PulseNoiseWF.pdb │ │ └── Release │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── PulseNoiseWF.Form1.resources │ │ ├── PulseNoiseWF.Properties.Resources.resources │ │ ├── PulseNoiseWF.csproj.FileListAbsolute.txt │ │ ├── PulseNoiseWF.csproj.GenerateResource.Cache │ │ ├── PulseNoiseWF.csprojResolveAssemblyReference.cache │ │ ├── PulseNoiseWF.exe │ │ └── PulseNoiseWF.pdb ├── Recommendations │ ├── Recommendations for the Users of the Projects.docx │ └── Sicherungskopie von Recommendations for the Users of the Projects.wbk ├── Sicherungskopie von Recomendations.wbk ├── WFcellDivision │ ├── WFcellDivision.sln │ ├── WFcellDivision.suo │ └── WFcellDivision │ │ ├── DNA.bmp │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── WFcellDivision.csproj │ │ ├── WFcellDivision.csproj.user │ │ ├── bin │ │ ├── Debug │ │ │ ├── WFcellDivision.exe │ │ │ ├── WFcellDivision.pdb │ │ │ ├── WFcellDivision.vshost.exe │ │ │ └── WFcellDivision.vshost.exe.manifest │ │ └── Release │ │ │ ├── WFcellDivision.exe │ │ │ └── WFcellDivision.pdb │ │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFcellDivision.Form1.resources │ │ ├── WFcellDivision.Properties.Resources.resources │ │ ├── WFcellDivision.csproj.FileListAbsolute.txt │ │ ├── WFcellDivision.csproj.GenerateResource.Cache │ │ ├── WFcellDivision.exe │ │ └── WFcellDivision.pdb │ │ └── Release │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFcellDivision.Form1.resources │ │ ├── WFcellDivision.Properties.Resources.resources │ │ ├── WFcellDivision.csproj.FileListAbsolute.txt │ │ ├── WFcellDivision.csproj.GenerateResource.Cache │ │ ├── WFcellDivision.csprojResolveAssemblyReference.cache │ │ ├── WFcellDivision.exe │ │ └── WFcellDivision.pdb ├── WFcircleReco │ ├── Example_images │ │ ├── ApFrag.bmp │ │ ├── Aples.jpg │ │ ├── Bruk.jpg │ │ ├── Gr1gray.jpg │ │ ├── Gr2gray.jpg │ │ ├── Gr3gray.jpg │ │ ├── Gr4gray.jpg │ │ ├── IMG_9656.JPG │ │ ├── IMG_9665.JPG │ │ ├── Missingbumpsw_g.jpg │ │ ├── Mushroom.jpg │ │ ├── Normalsw_g.jpg │ │ ├── bump.bmp │ │ └── bump.jpg │ ├── WFcircleReco.sln │ ├── WFcircleReco.suo │ └── WFcircleReco │ │ ├── CImage.cs │ │ ├── CInscript.cs │ │ ├── CListLines.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── WFcircleReco.csproj │ │ ├── WFcircleReco.csproj.user │ │ ├── bin │ │ ├── Debug │ │ │ ├── WFcircleReco.exe │ │ │ ├── WFcircleReco.pdb │ │ │ ├── WFcircleReco.vshost.exe │ │ │ └── WFcircleReco.vshost.exe.manifest │ │ └── Release │ │ │ ├── WFcircleReco.exe │ │ │ └── WFcircleReco.pdb │ │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFcircleReco.Form1.resources │ │ ├── WFcircleReco.Properties.Resources.resources │ │ ├── WFcircleReco.csproj.FileListAbsolute.txt │ │ ├── WFcircleReco.csproj.GenerateResource.Cache │ │ ├── WFcircleReco.csprojResolveAssemblyReference.cache │ │ ├── WFcircleReco.exe │ │ └── WFcircleReco.pdb │ │ └── Release │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFcircleReco.Form1.resources │ │ ├── WFcircleReco.Properties.Resources.resources │ │ ├── WFcircleReco.csproj.FileListAbsolute.txt │ │ ├── WFcircleReco.csproj.GenerateResource.Cache │ │ ├── WFcircleReco.csprojResolveAssemblyReference.cache │ │ ├── WFcircleReco.exe │ │ └── WFcircleReco.pdb ├── WFcompressPal │ ├── Example_images │ │ ├── Haus.BMP │ │ ├── IMG_8808.JPG │ │ ├── IMG_8808_Frag.jpg │ │ ├── IMG_9528_frag.bmp │ │ ├── JesusGood.bmp │ │ ├── JesusMPfrag.bmp │ │ ├── JesusMitPunkten.bmp │ │ ├── RobbyFährt.JPG │ │ ├── RobbyL.jpg │ │ └── RobbyL_small.jpg │ ├── WFcompressPal.sln │ ├── WFcompressPal.suo │ └── WFcompressPal │ │ ├── CImage.cs │ │ ├── CInscript.cs │ │ ├── CListLines.cs │ │ ├── CPnoise.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── WFcompressPal.csproj │ │ ├── WFcompressPal.csproj.user │ │ ├── bin │ │ ├── Debug │ │ │ ├── WFcompressPal.exe │ │ │ ├── WFcompressPal.pdb │ │ │ ├── WFcompressPal.vshost.exe │ │ │ └── WFcompressPal.vshost.exe.manifest │ │ └── Release │ │ │ ├── DataFile.dat │ │ │ ├── WFcompressPal.exe │ │ │ └── WFcompressPal.pdb │ │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFcompressPal.Form1.resources │ │ ├── WFcompressPal.Properties.Resources.resources │ │ ├── WFcompressPal.csproj.FileListAbsolute.txt │ │ ├── WFcompressPal.csproj.GenerateResource.Cache │ │ ├── WFcompressPal.csprojResolveAssemblyReference.cache │ │ ├── WFcompressPal.exe │ │ └── WFcompressPal.pdb │ │ └── Release │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFcompressPal.Form1.resources │ │ ├── WFcompressPal.Properties.Resources.resources │ │ ├── WFcompressPal.csproj.FileListAbsolute.txt │ │ ├── WFcompressPal.csproj.GenerateResource.Cache │ │ ├── WFcompressPal.csprojResolveAssemblyReference.cache │ │ ├── WFcompressPal.exe │ │ └── WFcompressPal.pdb ├── WFedgeDetect1 │ ├── Example_images │ │ ├── Beg2.bmp │ │ └── Begonie.BMP │ ├── WFedgeDetect1.sln │ ├── WFedgeDetect1.suo │ └── WFedgeDetect1 │ │ ├── CImage.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── WFedgeDetect1.csproj │ │ ├── WFedgeDetect1.csproj.user │ │ ├── bin │ │ ├── Debug │ │ │ ├── WFedgeDetect.vshost.exe │ │ │ ├── WFedgeDetect.vshost.exe.manifest │ │ │ ├── WFedgeDetect1.exe │ │ │ ├── WFedgeDetect1.pdb │ │ │ ├── WFedgeDetect1.vshost.exe │ │ │ └── WFedgeDetect1.vshost.exe.manifest │ │ └── Release │ │ │ ├── WFedgeDetect1.exe │ │ │ └── WFedgeDetect1.pdb │ │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFedgeDetect.Form1.resources │ │ ├── WFedgeDetect.Properties.Resources.resources │ │ ├── WFedgeDetect1.csproj.FileListAbsolute.txt │ │ ├── WFedgeDetect1.csproj.GenerateResource.Cache │ │ ├── WFedgeDetect1.csprojResolveAssemblyReference.cache │ │ ├── WFedgeDetect1.exe │ │ └── WFedgeDetect1.pdb │ │ └── Release │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFedgeDetect.Form1.resources │ │ ├── WFedgeDetect.Properties.Resources.resources │ │ ├── WFedgeDetect1.csproj.FileListAbsolute.txt │ │ ├── WFedgeDetect1.csproj.GenerateResource.Cache │ │ ├── WFedgeDetect1.csprojResolveAssemblyReference.cache │ │ ├── WFedgeDetect1.exe │ │ └── WFedgeDetect1.pdb ├── WFellipseBikes │ ├── Example_images │ │ ├── 13_1.jpg │ │ ├── Fahrrad3gray.jpg │ │ ├── Fuchs.jpg │ │ ├── Fuchs1.jpg │ │ ├── IMG_9545.JPG │ │ ├── IMG_9547.JPG │ │ ├── IMG_9548.JPG │ │ ├── IMG_9549.JPG │ │ ├── IMG_9550.JPG │ │ ├── IMG_9554.JPG │ │ ├── IMG_9557.JPG │ │ ├── IMG_9563.JPG │ │ ├── IMG_9564.JPG │ │ ├── a.F12.bmp │ │ ├── a.F17.bmp │ │ ├── a.F18.bmp │ │ └── a.Fahrrad3.bmp │ ├── WFellipseBikes.sln │ ├── WFellipseBikes.suo │ └── WFellipseBikes │ │ ├── CImage.cs │ │ ├── CListLines.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── WFellipseBikes.csproj │ │ ├── WFellipseBikes.csproj.user │ │ ├── bin │ │ ├── Debug │ │ │ ├── WFellipseBikes.exe │ │ │ ├── WFellipseBikes.pdb │ │ │ ├── WFellipseBikes.vshost.exe │ │ │ └── WFellipseBikes.vshost.exe.manifest │ │ └── Release │ │ │ ├── WFellipseBikes.exe │ │ │ └── WFellipseBikes.pdb │ │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFellipseBikes.Form1.resources │ │ ├── WFellipseBikes.Properties.Resources.resources │ │ ├── WFellipseBikes.csproj.FileListAbsolute.txt │ │ ├── WFellipseBikes.csproj.GenerateResource.Cache │ │ ├── WFellipseBikes.exe │ │ └── WFellipseBikes.pdb │ │ └── Release │ │ ├── 000001_70606_01.jpg │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Uhr Nr 10.jpg │ │ ├── WFellipseBikes.Form1.resources │ │ ├── WFellipseBikes.Properties.Resources.resources │ │ ├── WFellipseBikes.csproj.FileListAbsolute.txt │ │ ├── WFellipseBikes.csproj.GenerateResource.Cache │ │ ├── WFellipseBikes.csprojResolveAssemblyReference.cache │ │ ├── WFellipseBikes.exe │ │ └── WFellipseBikes.pdb ├── WFluminance │ ├── WFluminance.sln │ ├── WFluminance.suo │ └── WFluminance │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── WFluminance.csproj │ │ ├── WFluminance.csproj.user │ │ ├── bin │ │ ├── Debug │ │ │ ├── WFluminance.exe │ │ │ ├── WFluminance.pdb │ │ │ ├── WFluminance.vshost.exe │ │ │ └── WFluminance.vshost.exe.manifest │ │ └── Release │ │ │ ├── WFluminance.exe │ │ │ └── WFluminance.pdb │ │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFluminance.Form1.resources │ │ ├── WFluminance.Properties.Resources.resources │ │ ├── WFluminance.csproj.FileListAbsolute.txt │ │ ├── WFluminance.csproj.GenerateResource.Cache │ │ ├── WFluminance.exe │ │ └── WFluminance.pdb │ │ └── Release │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFluminance.Form1.resources │ │ ├── WFluminance.Properties.Resources.resources │ │ ├── WFluminance.csproj.FileListAbsolute.txt │ │ ├── WFluminance.csproj.GenerateResource.Cache │ │ ├── WFluminance.csprojResolveAssemblyReference.cache │ │ ├── WFluminance.exe │ │ └── WFluminance.pdb ├── WFpiecewiseLinear │ ├── Example_images │ │ ├── B+D.BMP │ │ └── aWir.jpg │ ├── WFpiecewiseLinear.sln │ ├── WFpiecewiseLinear.suo │ └── WFpiecewiseLinear │ │ ├── CImage.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Instruction for the project.docx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── WFpiecewiseLinear.csproj │ │ ├── WFpiecewiseLinear.csproj.user │ │ ├── bin │ │ ├── Debug │ │ │ ├── WFpiecewiseLinear.exe │ │ │ ├── WFpiecewiseLinear.pdb │ │ │ ├── WFpiecewiseLinear.vshost.exe │ │ │ └── WFpiecewiseLinear.vshost.exe.manifest │ │ └── Release │ │ │ ├── WFpiecewiseLinear.exe │ │ │ └── WFpiecewiseLinear.pdb │ │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFpiecewiseLinear.Form1.resources │ │ ├── WFpiecewiseLinear.Properties.Resources.resources │ │ ├── WFpiecewiseLinear.csproj.FileListAbsolute.txt │ │ ├── WFpiecewiseLinear.csproj.GenerateResource.Cache │ │ ├── WFpiecewiseLinear.exe │ │ └── WFpiecewiseLinear.pdb │ │ └── Release │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFpiecewiseLinear.Form1.resources │ │ ├── WFpiecewiseLinear.Properties.Resources.resources │ │ ├── WFpiecewiseLinear.csproj.FileListAbsolute.txt │ │ ├── WFpiecewiseLinear.csproj.GenerateResource.Cache │ │ ├── WFpiecewiseLinear.csprojResolveAssemblyReference.cache │ │ ├── WFpiecewiseLinear.exe │ │ └── WFpiecewiseLinear.pdb ├── WFpolyArc │ ├── Example_images │ │ ├── ApFrag.bmp │ │ ├── Apfel1.bmp │ │ ├── Baerbel.bmp │ │ ├── Beg2.bmp │ │ ├── BillGates.bmp │ │ ├── Bruk24.jpg │ │ ├── Eggs.bmp │ │ ├── IMG_9207.JPG │ │ ├── Mixc.bmp │ │ ├── OstH1.bmp │ │ ├── SWest2frag2.bmp │ │ ├── ZweiKreise.jpg │ │ ├── a.Apfel3k.jpg │ │ ├── a.LinkId.bmp │ │ ├── a.aEllipse.bmp │ │ ├── a.aPfau.bmp │ │ ├── a.aPfau2.bmp │ │ ├── butfrag.bmp │ │ └── google bike 5.jpg │ ├── WFpolyArc.sln │ ├── WFpolyArc.suo │ └── WFpolyArc │ │ ├── CImage.cs │ │ ├── CListLines.cs │ │ ├── ConjugGrad.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Reste.cpp │ │ ├── Reste.cs │ │ ├── WFpolyArc.csproj │ │ ├── WFpolyArc.csproj.user │ │ ├── bin │ │ ├── Debug │ │ │ ├── WFpolyArc.exe │ │ │ ├── WFpolyArc.pdb │ │ │ ├── WFpolyArc.vshost.exe │ │ │ └── WFpolyArc.vshost.exe.manifest │ │ └── Release │ │ │ ├── DataFile.dat │ │ │ ├── WFpolyArc.exe │ │ │ ├── WFpolyArc.pdb │ │ │ └── WFpolyArc.vshost.exe │ │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFpolyArc.Form1.resources │ │ ├── WFpolyArc.Properties.Resources.resources │ │ ├── WFpolyArc.csproj.FileListAbsolute.txt │ │ ├── WFpolyArc.csproj.GenerateResource.Cache │ │ ├── WFpolyArc.csprojResolveAssemblyReference.cache │ │ ├── WFpolyArc.exe │ │ └── WFpolyArc.pdb │ │ └── Release │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFpolyArc.Form1.resources │ │ ├── WFpolyArc.Properties.Resources.resources │ │ ├── WFpolyArc.csproj.FileListAbsolute.txt │ │ ├── WFpolyArc.csproj.GenerateResource.Cache │ │ ├── WFpolyArc.csprojResolveAssemblyReference.cache │ │ ├── WFpolyArc.exe │ │ └── WFpolyArc.pdb ├── WFrectify │ ├── Example_images │ │ ├── IM000316L.jpg │ │ ├── IM000316R.jpg │ │ ├── IM000318.JPG │ │ ├── IM000319.JPG │ │ ├── KraehenV.bmp │ │ └── Madonna2.BMP │ ├── WFrectify.sln │ ├── WFrectify.suo │ └── WFrectify │ │ ├── CImage.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Reste.cpp.docx │ │ ├── Reste.cs │ │ ├── Sicherungskopie von Reste.cpp.wbk │ │ ├── WFrectify.csproj │ │ ├── WFrectify.csproj.user │ │ ├── bin │ │ ├── Debug │ │ │ ├── WFrectify.exe │ │ │ ├── WFrectify.pdb │ │ │ ├── WFrectify.vshost.exe │ │ │ └── WFrectify.vshost.exe.manifest │ │ └── Release │ │ │ ├── WFrectify.exe │ │ │ └── WFrectify.pdb │ │ ├── iVect2.cs │ │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFrectify.Form1.resources │ │ ├── WFrectify.Properties.Resources.resources │ │ ├── WFrectify.csproj.FileListAbsolute.txt │ │ ├── WFrectify.csproj.GenerateResource.Cache │ │ ├── WFrectify.exe │ │ └── WFrectify.pdb │ │ └── Release │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFrectify.Form1.resources │ │ ├── WFrectify.Properties.Resources.resources │ │ ├── WFrectify.csproj.FileListAbsolute.txt │ │ ├── WFrectify.csproj.GenerateResource.Cache │ │ ├── WFrectify.csprojResolveAssemblyReference.cache │ │ ├── WFrectify.exe │ │ └── WFrectify.pdb ├── WFrestoreLin │ ├── WFrestoreLin.sln │ ├── WFrestoreLin.suo │ └── WFrestoreLin │ │ ├── CImage.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── WFrestoreLin.csproj │ │ ├── WFrestoreLin.csproj.user │ │ ├── bin │ │ ├── Debug │ │ │ ├── WFrestoreLin.exe │ │ │ ├── WFrestoreLin.pdb │ │ │ ├── WFrestoreLin.vshost.exe │ │ │ └── WFrestoreLin.vshost.exe.manifest │ │ └── Release │ │ │ ├── WFrestoreLin.exe │ │ │ └── WFrestoreLin.pdb │ │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFrestoreLin.Form1.resources │ │ ├── WFrestoreLin.Properties.Resources.resources │ │ ├── WFrestoreLin.csproj.FileListAbsolute.txt │ │ ├── WFrestoreLin.csproj.GenerateResource.Cache │ │ ├── WFrestoreLin.csprojResolveAssemblyReference.cache │ │ ├── WFrestoreLin.exe │ │ └── WFrestoreLin.pdb │ │ └── Release │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFrestoreLin.Form1.resources │ │ ├── WFrestoreLin.Properties.Resources.resources │ │ ├── WFrestoreLin.csproj.FileListAbsolute.txt │ │ ├── WFrestoreLin.csproj.GenerateResource.Cache │ │ ├── WFrestoreLin.csprojResolveAssemblyReference.cache │ │ ├── WFrestoreLin.exe │ │ └── WFrestoreLin.pdb ├── WFsegmentAndComp │ ├── Example_images │ │ ├── Fuchs.jpg │ │ ├── Fuchs1.jpg │ │ ├── Fuchs1BackUp.jpg │ │ ├── Fuchs2.jpg │ │ └── FuchsCopy.jpg │ ├── WFsegmentAndComp.sln │ ├── WFsegmentAndComp.suo │ └── WFsegmentAndComp │ │ ├── CImage.cs │ │ ├── CImageComp.cs │ │ ├── CPnoise.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── WFsegmentAndComp.csproj │ │ ├── WFsegmentAndComp.csproj.user │ │ ├── bin │ │ ├── Debug │ │ │ ├── WFsegmentAndComp.exe │ │ │ ├── WFsegmentAndComp.pdb │ │ │ ├── WFsegmentAndComp.vshost.exe │ │ │ └── WFsegmentAndComp.vshost.exe.manifest │ │ └── Release │ │ │ ├── WFsegmentAndComp.exe │ │ │ └── WFsegmentAndComp.pdb │ │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFsegmentAndComp.Form1.resources │ │ ├── WFsegmentAndComp.Properties.Resources.resources │ │ ├── WFsegmentAndComp.csproj.FileListAbsolute.txt │ │ ├── WFsegmentAndComp.csproj.GenerateResource.Cache │ │ ├── WFsegmentAndComp.csprojResolveAssemblyReference.cache │ │ ├── WFsegmentAndComp.exe │ │ └── WFsegmentAndComp.pdb │ │ └── Release │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFsegmentAndComp.Form1.resources │ │ ├── WFsegmentAndComp.Properties.Resources.resources │ │ ├── WFsegmentAndComp.csproj.FileListAbsolute.txt │ │ ├── WFsegmentAndComp.csproj.GenerateResource.Cache │ │ ├── WFsegmentAndComp.csprojResolveAssemblyReference.cache │ │ ├── WFsegmentAndComp.exe │ │ └── WFsegmentAndComp.pdb ├── WFshadBinImpulse │ ├── Example_images │ │ ├── Abb.10.jpg │ │ ├── Abb.10_1.jpg │ │ ├── AbbBackUp.10_1.jpg │ │ ├── AbbBackUpBackUp.10_1.jpg │ │ ├── AbbBackUpBackUpBackUp.10_1.jpg │ │ ├── Koenig.jpg │ │ └── Koenig_1.jpg │ ├── Reste │ │ └── CPnoise.cs │ ├── WFshadBinImpulse.sln │ ├── WFshadBinImpulse.suo │ └── WFshadBinImpulse │ │ ├── CImage.cs │ │ ├── CPnoise.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Queue.cs │ │ ├── WFshadBinImpulse.csproj │ │ ├── WFshadBinImpulse.csproj.user │ │ ├── bin │ │ ├── Debug │ │ │ ├── WFshadBinImpulse.exe │ │ │ ├── WFshadBinImpulse.pdb │ │ │ ├── WFshadBinImpulse.vshost.exe │ │ │ └── WFshadBinImpulse.vshost.exe.manifest │ │ └── Release │ │ │ ├── WFshadBinImpulse.exe │ │ │ └── WFshadBinImpulse.pdb │ │ └── obj │ │ └── x86 │ │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFshadBinImpulse.Form1.resources │ │ ├── WFshadBinImpulse.Properties.Resources.resources │ │ ├── WFshadBinImpulse.csproj.FileListAbsolute.txt │ │ ├── WFshadBinImpulse.csproj.GenerateResource.Cache │ │ ├── WFshadBinImpulse.csprojResolveAssemblyReference.cache │ │ ├── WFshadBinImpulse.exe │ │ └── WFshadBinImpulse.pdb │ │ └── Release │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── WFshadBinImpulse.Form1.resources │ │ ├── WFshadBinImpulse.Properties.Resources.resources │ │ ├── WFshadBinImpulse.csproj.FileListAbsolute.txt │ │ ├── WFshadBinImpulse.csproj.GenerateResource.Cache │ │ ├── WFshadBinImpulse.csprojResolveAssemblyReference.cache │ │ ├── WFshadBinImpulse.exe │ │ └── WFshadBinImpulse.pdb └── WFshadingBin │ ├── Example_images │ ├── Abb.10.jpg │ ├── BettelK.bmp │ └── Koenig.jpg │ ├── WFshadingBin.sln │ ├── WFshadingBin.suo │ └── WFshadingBin │ ├── CImage.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── WFshadingBin.csproj │ ├── WFshadingBin.csproj.user │ ├── bin │ ├── Debug │ │ ├── WFshadingBin.exe │ │ ├── WFshadingBin.pdb │ │ ├── WFshadingBin.vshost.exe │ │ └── WFshadingBin.vshost.exe.manifest │ └── Release │ │ ├── WFshadingBin.exe │ │ └── WFshadingBin.pdb │ └── obj │ └── x86 │ ├── Debug │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── WFshadingBin.Form1.resources │ ├── WFshadingBin.Properties.Resources.resources │ ├── WFshadingBin.csproj.FileListAbsolute.txt │ ├── WFshadingBin.csproj.GenerateResource.Cache │ ├── WFshadingBin.exe │ └── WFshadingBin.pdb │ └── Release │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── WFshadingBin.Form1.resources │ ├── WFshadingBin.Properties.Resources.resources │ ├── WFshadingBin.csproj.FileListAbsolute.txt │ ├── WFshadingBin.csproj.GenerateResource.Cache │ ├── WFshadingBin.csprojResolveAssemblyReference.cache │ ├── WFshadingBin.exe │ └── WFshadingBin.pdb ├── Contributing.md ├── LICENSE.txt └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/.gitattributes -------------------------------------------------------------------------------- /9781484242360.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/9781484242360.jpg -------------------------------------------------------------------------------- /Code/PulseNoiseWF/Example_images/JesusMPfrag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/Example_images/JesusMPfrag.jpg -------------------------------------------------------------------------------- /Code/PulseNoiseWF/Example_images/JesusMPfragG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/Example_images/JesusMPfragG.jpg -------------------------------------------------------------------------------- /Code/PulseNoiseWF/Example_images/Koenig.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/Example_images/Koenig.BMP -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF.sln -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF.suo -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/CImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/CImage.cs -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/CPnoise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/CPnoise.cs -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/Form1.Designer.cs -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/Form1.cs -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/Form1.resx -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/Program.cs -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/Properties/Resources.resx -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/Properties/Settings.settings -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/PulseNoiseWF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/PulseNoiseWF.csproj -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/PulseNoiseWF.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/PulseNoiseWF.csproj.user -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/Queue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/Queue.cs -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/bin/Debug/PulseNoiseWF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/bin/Debug/PulseNoiseWF.exe -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/bin/Debug/PulseNoiseWF.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/bin/Debug/PulseNoiseWF.pdb -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/bin/Debug/PulseNoiseWF.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/bin/Debug/PulseNoiseWF.vshost.exe -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/bin/Debug/PulseNoiseWF.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/bin/Debug/PulseNoiseWF.vshost.exe.manifest -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/bin/Release/PulseNoiseWF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/bin/Release/PulseNoiseWF.exe -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/bin/Release/PulseNoiseWF.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/bin/Release/PulseNoiseWF.pdb -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/PulseNoiseWF.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/PulseNoiseWF.Form1.resources -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/PulseNoiseWF.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/PulseNoiseWF.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/PulseNoiseWF.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/PulseNoiseWF.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/PulseNoiseWF.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/PulseNoiseWF.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/PulseNoiseWF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/PulseNoiseWF.exe -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/PulseNoiseWF.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/PulseNoiseWF.pdb -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/PulseNoiseWF.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/PulseNoiseWF.Form1.resources -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/PulseNoiseWF.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/PulseNoiseWF.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/PulseNoiseWF.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/PulseNoiseWF.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/PulseNoiseWF.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/PulseNoiseWF.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/PulseNoiseWF.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/PulseNoiseWF.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/PulseNoiseWF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/PulseNoiseWF.exe -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/PulseNoiseWF.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/PulseNoiseWF.pdb -------------------------------------------------------------------------------- /Code/Recommendations/Recommendations for the Users of the Projects.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/Recommendations/Recommendations for the Users of the Projects.docx -------------------------------------------------------------------------------- /Code/Recommendations/Sicherungskopie von Recommendations for the Users of the Projects.wbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/Recommendations/Sicherungskopie von Recommendations for the Users of the Projects.wbk -------------------------------------------------------------------------------- /Code/Sicherungskopie von Recomendations.wbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/Sicherungskopie von Recomendations.wbk -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision.sln -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision.suo -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/DNA.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/DNA.bmp -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/Form1.Designer.cs -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/Form1.cs -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/Form1.resx -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/Program.cs -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/Properties/Resources.resx -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/Properties/Settings.settings -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/WFcellDivision.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/WFcellDivision.csproj -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/WFcellDivision.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/WFcellDivision.csproj.user -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/bin/Debug/WFcellDivision.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/bin/Debug/WFcellDivision.exe -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/bin/Debug/WFcellDivision.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/bin/Debug/WFcellDivision.pdb -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/bin/Debug/WFcellDivision.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/bin/Debug/WFcellDivision.vshost.exe -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/bin/Debug/WFcellDivision.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/bin/Debug/WFcellDivision.vshost.exe.manifest -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/bin/Release/WFcellDivision.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/bin/Release/WFcellDivision.exe -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/bin/Release/WFcellDivision.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/bin/Release/WFcellDivision.pdb -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Debug/WFcellDivision.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/obj/x86/Debug/WFcellDivision.Form1.resources -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Debug/WFcellDivision.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/obj/x86/Debug/WFcellDivision.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Debug/WFcellDivision.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/obj/x86/Debug/WFcellDivision.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Debug/WFcellDivision.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/obj/x86/Debug/WFcellDivision.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Debug/WFcellDivision.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/obj/x86/Debug/WFcellDivision.exe -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Debug/WFcellDivision.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/obj/x86/Debug/WFcellDivision.pdb -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Release/WFcellDivision.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/obj/x86/Release/WFcellDivision.Form1.resources -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Release/WFcellDivision.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/obj/x86/Release/WFcellDivision.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Release/WFcellDivision.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/obj/x86/Release/WFcellDivision.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Release/WFcellDivision.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/obj/x86/Release/WFcellDivision.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Release/WFcellDivision.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/obj/x86/Release/WFcellDivision.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Release/WFcellDivision.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/obj/x86/Release/WFcellDivision.exe -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Release/WFcellDivision.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcellDivision/WFcellDivision/obj/x86/Release/WFcellDivision.pdb -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/ApFrag.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/Example_images/ApFrag.bmp -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Aples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/Example_images/Aples.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Bruk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/Example_images/Bruk.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Gr1gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/Example_images/Gr1gray.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Gr2gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/Example_images/Gr2gray.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Gr3gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/Example_images/Gr3gray.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Gr4gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/Example_images/Gr4gray.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/IMG_9656.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/Example_images/IMG_9656.JPG -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/IMG_9665.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/Example_images/IMG_9665.JPG -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Missingbumpsw_g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/Example_images/Missingbumpsw_g.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Mushroom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/Example_images/Mushroom.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Normalsw_g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/Example_images/Normalsw_g.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/bump.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/Example_images/bump.bmp -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/bump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/Example_images/bump.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco.sln -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco.suo -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/CImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/CImage.cs -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/CInscript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/CInscript.cs -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/CListLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/CListLines.cs -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/Form1.Designer.cs -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/Form1.cs -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/Form1.resx -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/Program.cs -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/Properties/Resources.resx -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/Properties/Settings.settings -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/WFcircleReco.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/WFcircleReco.csproj -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/WFcircleReco.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/WFcircleReco.csproj.user -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/bin/Debug/WFcircleReco.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/bin/Debug/WFcircleReco.exe -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/bin/Debug/WFcircleReco.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/bin/Debug/WFcircleReco.pdb -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/bin/Debug/WFcircleReco.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/bin/Debug/WFcircleReco.vshost.exe -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/bin/Debug/WFcircleReco.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/bin/Debug/WFcircleReco.vshost.exe.manifest -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/bin/Release/WFcircleReco.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/bin/Release/WFcircleReco.exe -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/bin/Release/WFcircleReco.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/bin/Release/WFcircleReco.pdb -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Debug/WFcircleReco.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Debug/WFcircleReco.Form1.resources -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Debug/WFcircleReco.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Debug/WFcircleReco.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Debug/WFcircleReco.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Debug/WFcircleReco.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Debug/WFcircleReco.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Debug/WFcircleReco.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Debug/WFcircleReco.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Debug/WFcircleReco.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Debug/WFcircleReco.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Debug/WFcircleReco.exe -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Debug/WFcircleReco.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Debug/WFcircleReco.pdb -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Release/WFcircleReco.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Release/WFcircleReco.Form1.resources -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Release/WFcircleReco.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Release/WFcircleReco.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Release/WFcircleReco.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Release/WFcircleReco.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Release/WFcircleReco.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Release/WFcircleReco.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Release/WFcircleReco.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Release/WFcircleReco.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Release/WFcircleReco.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Release/WFcircleReco.exe -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Release/WFcircleReco.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcircleReco/WFcircleReco/obj/x86/Release/WFcircleReco.pdb -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/Haus.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/Example_images/Haus.BMP -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/IMG_8808.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/Example_images/IMG_8808.JPG -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/IMG_8808_Frag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/Example_images/IMG_8808_Frag.jpg -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/IMG_9528_frag.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/Example_images/IMG_9528_frag.bmp -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/JesusGood.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/Example_images/JesusGood.bmp -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/JesusMPfrag.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/Example_images/JesusMPfrag.bmp -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/JesusMitPunkten.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/Example_images/JesusMitPunkten.bmp -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/RobbyFährt.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/Example_images/RobbyFährt.JPG -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/RobbyL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/Example_images/RobbyL.jpg -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/RobbyL_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/Example_images/RobbyL_small.jpg -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal.sln -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal.suo -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/CImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/CImage.cs -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/CInscript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/CInscript.cs -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/CListLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/CListLines.cs -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/CPnoise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/CPnoise.cs -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/Form1.Designer.cs -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/Form1.cs -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/Form1.resx -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/Program.cs -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/Properties/Resources.resx -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/Properties/Settings.settings -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/WFcompressPal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/WFcompressPal.csproj -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/WFcompressPal.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/WFcompressPal.csproj.user -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/bin/Debug/WFcompressPal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/bin/Debug/WFcompressPal.exe -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/bin/Debug/WFcompressPal.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/bin/Debug/WFcompressPal.pdb -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/bin/Debug/WFcompressPal.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/bin/Debug/WFcompressPal.vshost.exe -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/bin/Debug/WFcompressPal.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/bin/Debug/WFcompressPal.vshost.exe.manifest -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/bin/Release/DataFile.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/bin/Release/WFcompressPal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/bin/Release/WFcompressPal.exe -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/bin/Release/WFcompressPal.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/bin/Release/WFcompressPal.pdb -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Debug/WFcompressPal.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Debug/WFcompressPal.Form1.resources -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Debug/WFcompressPal.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Debug/WFcompressPal.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Debug/WFcompressPal.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Debug/WFcompressPal.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Debug/WFcompressPal.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Debug/WFcompressPal.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Debug/WFcompressPal.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Debug/WFcompressPal.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Debug/WFcompressPal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Debug/WFcompressPal.exe -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Debug/WFcompressPal.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Debug/WFcompressPal.pdb -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Release/WFcompressPal.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Release/WFcompressPal.Form1.resources -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Release/WFcompressPal.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Release/WFcompressPal.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Release/WFcompressPal.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Release/WFcompressPal.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Release/WFcompressPal.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Release/WFcompressPal.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Release/WFcompressPal.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Release/WFcompressPal.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Release/WFcompressPal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Release/WFcompressPal.exe -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Release/WFcompressPal.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFcompressPal/WFcompressPal/obj/x86/Release/WFcompressPal.pdb -------------------------------------------------------------------------------- /Code/WFedgeDetect1/Example_images/Beg2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/Example_images/Beg2.bmp -------------------------------------------------------------------------------- /Code/WFedgeDetect1/Example_images/Begonie.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/Example_images/Begonie.BMP -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1.sln -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1.suo -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/CImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/CImage.cs -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/Form1.Designer.cs -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/Form1.cs -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/Form1.resx -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/Program.cs -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/Properties/Resources.resx -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/Properties/Settings.settings -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/WFedgeDetect1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/WFedgeDetect1.csproj -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/WFedgeDetect1.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/WFedgeDetect1.csproj.user -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect.vshost.exe -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect.vshost.exe.manifest -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect1.exe -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect1.pdb -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect1.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect1.vshost.exe -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect1.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect1.vshost.exe.manifest -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/bin/Release/WFedgeDetect1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/bin/Release/WFedgeDetect1.exe -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/bin/Release/WFedgeDetect1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/bin/Release/WFedgeDetect1.pdb -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/WFedgeDetect.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/WFedgeDetect.Form1.resources -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/WFedgeDetect.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/WFedgeDetect.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/WFedgeDetect1.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/WFedgeDetect1.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/WFedgeDetect1.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/WFedgeDetect1.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/WFedgeDetect1.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/WFedgeDetect1.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/WFedgeDetect1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/WFedgeDetect1.exe -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/WFedgeDetect1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/WFedgeDetect1.pdb -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/WFedgeDetect.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/WFedgeDetect.Form1.resources -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/WFedgeDetect.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/WFedgeDetect.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/WFedgeDetect1.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/WFedgeDetect1.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/WFedgeDetect1.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/WFedgeDetect1.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/WFedgeDetect1.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/WFedgeDetect1.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/WFedgeDetect1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/WFedgeDetect1.exe -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/WFedgeDetect1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/WFedgeDetect1.pdb -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/13_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/Example_images/13_1.jpg -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/Fahrrad3gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/Example_images/Fahrrad3gray.jpg -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/Fuchs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/Example_images/Fuchs.jpg -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/Fuchs1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/Example_images/Fuchs1.jpg -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9545.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/Example_images/IMG_9545.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9547.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/Example_images/IMG_9547.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9548.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/Example_images/IMG_9548.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9549.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/Example_images/IMG_9549.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9550.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/Example_images/IMG_9550.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9554.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/Example_images/IMG_9554.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9557.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/Example_images/IMG_9557.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9563.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/Example_images/IMG_9563.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9564.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/Example_images/IMG_9564.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/a.F12.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/Example_images/a.F12.bmp -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/a.F17.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/Example_images/a.F17.bmp -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/a.F18.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/Example_images/a.F18.bmp -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/a.Fahrrad3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/Example_images/a.Fahrrad3.bmp -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes.sln -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes.suo -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/CImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/CImage.cs -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/CListLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/CListLines.cs -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/Form1.Designer.cs -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/Form1.cs -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/Form1.resx -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/Program.cs -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/Properties/Resources.resx -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/Properties/Settings.settings -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/WFellipseBikes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/WFellipseBikes.csproj -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/WFellipseBikes.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/WFellipseBikes.csproj.user -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/bin/Debug/WFellipseBikes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/bin/Debug/WFellipseBikes.exe -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/bin/Debug/WFellipseBikes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/bin/Debug/WFellipseBikes.pdb -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/bin/Debug/WFellipseBikes.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/bin/Debug/WFellipseBikes.vshost.exe -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/bin/Debug/WFellipseBikes.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/bin/Debug/WFellipseBikes.vshost.exe.manifest -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/bin/Release/WFellipseBikes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/bin/Release/WFellipseBikes.exe -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/bin/Release/WFellipseBikes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/bin/Release/WFellipseBikes.pdb -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Debug/WFellipseBikes.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Debug/WFellipseBikes.Form1.resources -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Debug/WFellipseBikes.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Debug/WFellipseBikes.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Debug/WFellipseBikes.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Debug/WFellipseBikes.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Debug/WFellipseBikes.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Debug/WFellipseBikes.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Debug/WFellipseBikes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Debug/WFellipseBikes.exe -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Debug/WFellipseBikes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Debug/WFellipseBikes.pdb -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/000001_70606_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/000001_70606_01.jpg -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/Uhr Nr 10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/Uhr Nr 10.jpg -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/WFellipseBikes.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/WFellipseBikes.Form1.resources -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/WFellipseBikes.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/WFellipseBikes.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/WFellipseBikes.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/WFellipseBikes.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/WFellipseBikes.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/WFellipseBikes.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/WFellipseBikes.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/WFellipseBikes.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/WFellipseBikes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/WFellipseBikes.exe -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/WFellipseBikes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/WFellipseBikes.pdb -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance.sln -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance.suo -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/Form1.Designer.cs -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/Form1.cs -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/Form1.resx -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/Program.cs -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/Properties/Resources.resx -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/Properties/Settings.settings -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/WFluminance.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/WFluminance.csproj -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/WFluminance.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/WFluminance.csproj.user -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/bin/Debug/WFluminance.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/bin/Debug/WFluminance.exe -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/bin/Debug/WFluminance.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/bin/Debug/WFluminance.pdb -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/bin/Debug/WFluminance.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/bin/Debug/WFluminance.vshost.exe -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/bin/Debug/WFluminance.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/bin/Debug/WFluminance.vshost.exe.manifest -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/bin/Release/WFluminance.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/bin/Release/WFluminance.exe -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/bin/Release/WFluminance.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/bin/Release/WFluminance.pdb -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Debug/WFluminance.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/obj/x86/Debug/WFluminance.Form1.resources -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Debug/WFluminance.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/obj/x86/Debug/WFluminance.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Debug/WFluminance.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/obj/x86/Debug/WFluminance.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Debug/WFluminance.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/obj/x86/Debug/WFluminance.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Debug/WFluminance.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/obj/x86/Debug/WFluminance.exe -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Debug/WFluminance.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/obj/x86/Debug/WFluminance.pdb -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Release/WFluminance.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/obj/x86/Release/WFluminance.Form1.resources -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Release/WFluminance.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/obj/x86/Release/WFluminance.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Release/WFluminance.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/obj/x86/Release/WFluminance.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Release/WFluminance.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/obj/x86/Release/WFluminance.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Release/WFluminance.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/obj/x86/Release/WFluminance.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Release/WFluminance.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/obj/x86/Release/WFluminance.exe -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Release/WFluminance.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFluminance/WFluminance/obj/x86/Release/WFluminance.pdb -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/Example_images/B+D.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/Example_images/B+D.BMP -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/Example_images/aWir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/Example_images/aWir.jpg -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear.sln -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear.suo -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/CImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/CImage.cs -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/Form1.Designer.cs -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/Form1.cs -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/Form1.resx -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/Instruction for the project.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/Instruction for the project.docx -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/Program.cs -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/Properties/Resources.resx -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/Properties/Settings.settings -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/WFpiecewiseLinear.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/WFpiecewiseLinear.csproj -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/WFpiecewiseLinear.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/WFpiecewiseLinear.csproj.user -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Debug/WFpiecewiseLinear.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Debug/WFpiecewiseLinear.exe -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Debug/WFpiecewiseLinear.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Debug/WFpiecewiseLinear.pdb -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Debug/WFpiecewiseLinear.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Debug/WFpiecewiseLinear.vshost.exe -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Debug/WFpiecewiseLinear.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Debug/WFpiecewiseLinear.vshost.exe.manifest -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Release/WFpiecewiseLinear.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Release/WFpiecewiseLinear.exe -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Release/WFpiecewiseLinear.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Release/WFpiecewiseLinear.pdb -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/WFpiecewiseLinear.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/WFpiecewiseLinear.Form1.resources -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/WFpiecewiseLinear.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/WFpiecewiseLinear.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/WFpiecewiseLinear.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/WFpiecewiseLinear.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/WFpiecewiseLinear.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/WFpiecewiseLinear.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/WFpiecewiseLinear.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/WFpiecewiseLinear.exe -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/WFpiecewiseLinear.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/WFpiecewiseLinear.pdb -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/WFpiecewiseLinear.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/WFpiecewiseLinear.Form1.resources -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/WFpiecewiseLinear.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/WFpiecewiseLinear.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/WFpiecewiseLinear.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/WFpiecewiseLinear.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/WFpiecewiseLinear.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/WFpiecewiseLinear.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/WFpiecewiseLinear.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/WFpiecewiseLinear.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/WFpiecewiseLinear.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/WFpiecewiseLinear.exe -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/WFpiecewiseLinear.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/WFpiecewiseLinear.pdb -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/ApFrag.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/ApFrag.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/Apfel1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/Apfel1.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/Baerbel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/Baerbel.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/Beg2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/Beg2.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/BillGates.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/BillGates.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/Bruk24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/Bruk24.jpg -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/Eggs.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/Eggs.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/IMG_9207.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/IMG_9207.JPG -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/Mixc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/Mixc.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/OstH1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/OstH1.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/SWest2frag2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/SWest2frag2.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/ZweiKreise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/ZweiKreise.jpg -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/a.Apfel3k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/a.Apfel3k.jpg -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/a.LinkId.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/a.LinkId.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/a.aEllipse.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/a.aEllipse.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/a.aPfau.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/a.aPfau.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/a.aPfau2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/a.aPfau2.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/butfrag.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/butfrag.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/google bike 5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/Example_images/google bike 5.jpg -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc.sln -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc.suo -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/CImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/CImage.cs -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/CListLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/CListLines.cs -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/ConjugGrad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/ConjugGrad.cs -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/Form1.Designer.cs -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/Form1.cs -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/Form1.resx -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/Program.cs -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/Properties/Resources.resx -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/Properties/Settings.settings -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/Reste.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/Reste.cpp -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/Reste.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/Reste.cs -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/WFpolyArc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/WFpolyArc.csproj -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/WFpolyArc.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/WFpolyArc.csproj.user -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/bin/Debug/WFpolyArc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/bin/Debug/WFpolyArc.exe -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/bin/Debug/WFpolyArc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/bin/Debug/WFpolyArc.pdb -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/bin/Debug/WFpolyArc.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/bin/Debug/WFpolyArc.vshost.exe -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/bin/Debug/WFpolyArc.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/bin/Debug/WFpolyArc.vshost.exe.manifest -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/bin/Release/DataFile.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/bin/Release/WFpolyArc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/bin/Release/WFpolyArc.exe -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/bin/Release/WFpolyArc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/bin/Release/WFpolyArc.pdb -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/bin/Release/WFpolyArc.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/bin/Release/WFpolyArc.vshost.exe -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Debug/WFpolyArc.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Debug/WFpolyArc.Form1.resources -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Debug/WFpolyArc.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Debug/WFpolyArc.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Debug/WFpolyArc.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Debug/WFpolyArc.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Debug/WFpolyArc.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Debug/WFpolyArc.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Debug/WFpolyArc.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Debug/WFpolyArc.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Debug/WFpolyArc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Debug/WFpolyArc.exe -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Debug/WFpolyArc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Debug/WFpolyArc.pdb -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Release/WFpolyArc.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Release/WFpolyArc.Form1.resources -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Release/WFpolyArc.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Release/WFpolyArc.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Release/WFpolyArc.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Release/WFpolyArc.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Release/WFpolyArc.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Release/WFpolyArc.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Release/WFpolyArc.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Release/WFpolyArc.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Release/WFpolyArc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Release/WFpolyArc.exe -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Release/WFpolyArc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFpolyArc/WFpolyArc/obj/x86/Release/WFpolyArc.pdb -------------------------------------------------------------------------------- /Code/WFrectify/Example_images/IM000316L.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/Example_images/IM000316L.jpg -------------------------------------------------------------------------------- /Code/WFrectify/Example_images/IM000316R.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/Example_images/IM000316R.jpg -------------------------------------------------------------------------------- /Code/WFrectify/Example_images/IM000318.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/Example_images/IM000318.JPG -------------------------------------------------------------------------------- /Code/WFrectify/Example_images/IM000319.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/Example_images/IM000319.JPG -------------------------------------------------------------------------------- /Code/WFrectify/Example_images/KraehenV.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/Example_images/KraehenV.bmp -------------------------------------------------------------------------------- /Code/WFrectify/Example_images/Madonna2.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/Example_images/Madonna2.BMP -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify.sln -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify.suo -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/CImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/CImage.cs -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/Form1.Designer.cs -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/Form1.cs -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/Form1.resx -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/Program.cs -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/Properties/Resources.resx -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/Properties/Settings.settings -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/Reste.cpp.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/Reste.cpp.docx -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/Reste.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/Reste.cs -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/Sicherungskopie von Reste.cpp.wbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/Sicherungskopie von Reste.cpp.wbk -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/WFrectify.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/WFrectify.csproj -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/WFrectify.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/WFrectify.csproj.user -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/bin/Debug/WFrectify.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/bin/Debug/WFrectify.exe -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/bin/Debug/WFrectify.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/bin/Debug/WFrectify.pdb -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/bin/Debug/WFrectify.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/bin/Debug/WFrectify.vshost.exe -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/bin/Debug/WFrectify.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/bin/Debug/WFrectify.vshost.exe.manifest -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/bin/Release/WFrectify.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/bin/Release/WFrectify.exe -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/bin/Release/WFrectify.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/bin/Release/WFrectify.pdb -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/iVect2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/iVect2.cs -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Debug/WFrectify.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/obj/x86/Debug/WFrectify.Form1.resources -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Debug/WFrectify.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/obj/x86/Debug/WFrectify.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Debug/WFrectify.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/obj/x86/Debug/WFrectify.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Debug/WFrectify.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/obj/x86/Debug/WFrectify.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Debug/WFrectify.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/obj/x86/Debug/WFrectify.exe -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Debug/WFrectify.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/obj/x86/Debug/WFrectify.pdb -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Release/WFrectify.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/obj/x86/Release/WFrectify.Form1.resources -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Release/WFrectify.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/obj/x86/Release/WFrectify.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Release/WFrectify.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/obj/x86/Release/WFrectify.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Release/WFrectify.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/obj/x86/Release/WFrectify.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Release/WFrectify.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/obj/x86/Release/WFrectify.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Release/WFrectify.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/obj/x86/Release/WFrectify.exe -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Release/WFrectify.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrectify/WFrectify/obj/x86/Release/WFrectify.pdb -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin.sln -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin.suo -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/CImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/CImage.cs -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/Form1.Designer.cs -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/Form1.cs -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/Form1.resx -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/Program.cs -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/Properties/Resources.resx -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/Properties/Settings.settings -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/WFrestoreLin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/WFrestoreLin.csproj -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/WFrestoreLin.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/WFrestoreLin.csproj.user -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/bin/Debug/WFrestoreLin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/bin/Debug/WFrestoreLin.exe -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/bin/Debug/WFrestoreLin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/bin/Debug/WFrestoreLin.pdb -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/bin/Debug/WFrestoreLin.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/bin/Debug/WFrestoreLin.vshost.exe -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/bin/Debug/WFrestoreLin.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/bin/Debug/WFrestoreLin.vshost.exe.manifest -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/bin/Release/WFrestoreLin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/bin/Release/WFrestoreLin.exe -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/bin/Release/WFrestoreLin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/bin/Release/WFrestoreLin.pdb -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/WFrestoreLin.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/WFrestoreLin.Form1.resources -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/WFrestoreLin.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/WFrestoreLin.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/WFrestoreLin.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/WFrestoreLin.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/WFrestoreLin.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/WFrestoreLin.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/WFrestoreLin.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/WFrestoreLin.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/WFrestoreLin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/WFrestoreLin.exe -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/WFrestoreLin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/WFrestoreLin.pdb -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/WFrestoreLin.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/WFrestoreLin.Form1.resources -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/WFrestoreLin.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/WFrestoreLin.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/WFrestoreLin.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/WFrestoreLin.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/WFrestoreLin.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/WFrestoreLin.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/WFrestoreLin.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/WFrestoreLin.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/WFrestoreLin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/WFrestoreLin.exe -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/WFrestoreLin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/WFrestoreLin.pdb -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/Example_images/Fuchs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/Example_images/Fuchs.jpg -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/Example_images/Fuchs1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/Example_images/Fuchs1.jpg -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/Example_images/Fuchs1BackUp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/Example_images/Fuchs1BackUp.jpg -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/Example_images/Fuchs2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/Example_images/Fuchs2.jpg -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/Example_images/FuchsCopy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/Example_images/FuchsCopy.jpg -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp.sln -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp.suo -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/CImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/CImage.cs -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/CImageComp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/CImageComp.cs -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/CPnoise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/CPnoise.cs -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/Form1.Designer.cs -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/Form1.cs -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/Form1.resx -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/Program.cs -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/Properties/Resources.resx -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/Properties/Settings.settings -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/WFsegmentAndComp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/WFsegmentAndComp.csproj -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/WFsegmentAndComp.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/WFsegmentAndComp.csproj.user -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/bin/Debug/WFsegmentAndComp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/bin/Debug/WFsegmentAndComp.exe -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/bin/Debug/WFsegmentAndComp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/bin/Debug/WFsegmentAndComp.pdb -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/bin/Debug/WFsegmentAndComp.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/bin/Debug/WFsegmentAndComp.vshost.exe -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/bin/Debug/WFsegmentAndComp.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/bin/Debug/WFsegmentAndComp.vshost.exe.manifest -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/bin/Release/WFsegmentAndComp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/bin/Release/WFsegmentAndComp.exe -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/bin/Release/WFsegmentAndComp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/bin/Release/WFsegmentAndComp.pdb -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/WFsegmentAndComp.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/WFsegmentAndComp.Form1.resources -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/WFsegmentAndComp.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/WFsegmentAndComp.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/WFsegmentAndComp.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/WFsegmentAndComp.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/WFsegmentAndComp.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/WFsegmentAndComp.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/WFsegmentAndComp.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/WFsegmentAndComp.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/WFsegmentAndComp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/WFsegmentAndComp.exe -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/WFsegmentAndComp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/WFsegmentAndComp.pdb -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/WFsegmentAndComp.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/WFsegmentAndComp.Form1.resources -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/WFsegmentAndComp.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/WFsegmentAndComp.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/WFsegmentAndComp.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/WFsegmentAndComp.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/WFsegmentAndComp.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/WFsegmentAndComp.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/WFsegmentAndComp.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/WFsegmentAndComp.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/WFsegmentAndComp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/WFsegmentAndComp.exe -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/WFsegmentAndComp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/WFsegmentAndComp.pdb -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/Example_images/Abb.10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/Example_images/Abb.10.jpg -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/Example_images/Abb.10_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/Example_images/Abb.10_1.jpg -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/Example_images/AbbBackUp.10_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/Example_images/AbbBackUp.10_1.jpg -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/Example_images/AbbBackUpBackUp.10_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/Example_images/AbbBackUpBackUp.10_1.jpg -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/Example_images/AbbBackUpBackUpBackUp.10_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/Example_images/AbbBackUpBackUpBackUp.10_1.jpg -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/Example_images/Koenig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/Example_images/Koenig.jpg -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/Example_images/Koenig_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/Example_images/Koenig_1.jpg -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/Reste/CPnoise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/Reste/CPnoise.cs -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse.sln -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse.suo -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/CImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/CImage.cs -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/CPnoise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/CPnoise.cs -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/Form1.Designer.cs -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/Form1.cs -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/Form1.resx -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/Program.cs -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/Properties/Resources.resx -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/Properties/Settings.settings -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/Queue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/Queue.cs -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/WFshadBinImpulse.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/WFshadBinImpulse.csproj -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/WFshadBinImpulse.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/WFshadBinImpulse.csproj.user -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/bin/Debug/WFshadBinImpulse.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/bin/Debug/WFshadBinImpulse.exe -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/bin/Debug/WFshadBinImpulse.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/bin/Debug/WFshadBinImpulse.pdb -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/bin/Debug/WFshadBinImpulse.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/bin/Debug/WFshadBinImpulse.vshost.exe -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/bin/Debug/WFshadBinImpulse.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/bin/Debug/WFshadBinImpulse.vshost.exe.manifest -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/bin/Release/WFshadBinImpulse.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/bin/Release/WFshadBinImpulse.exe -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/bin/Release/WFshadBinImpulse.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/bin/Release/WFshadBinImpulse.pdb -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/WFshadBinImpulse.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/WFshadBinImpulse.Form1.resources -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/WFshadBinImpulse.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/WFshadBinImpulse.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/WFshadBinImpulse.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/WFshadBinImpulse.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/WFshadBinImpulse.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/WFshadBinImpulse.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/WFshadBinImpulse.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/WFshadBinImpulse.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/WFshadBinImpulse.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/WFshadBinImpulse.exe -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/WFshadBinImpulse.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/WFshadBinImpulse.pdb -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/WFshadBinImpulse.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/WFshadBinImpulse.Form1.resources -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/WFshadBinImpulse.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/WFshadBinImpulse.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/WFshadBinImpulse.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/WFshadBinImpulse.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/WFshadBinImpulse.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/WFshadBinImpulse.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/WFshadBinImpulse.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/WFshadBinImpulse.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/WFshadBinImpulse.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/WFshadBinImpulse.exe -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/WFshadBinImpulse.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/WFshadBinImpulse.pdb -------------------------------------------------------------------------------- /Code/WFshadingBin/Example_images/Abb.10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/Example_images/Abb.10.jpg -------------------------------------------------------------------------------- /Code/WFshadingBin/Example_images/BettelK.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/Example_images/BettelK.bmp -------------------------------------------------------------------------------- /Code/WFshadingBin/Example_images/Koenig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/Example_images/Koenig.jpg -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin.sln -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin.suo -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/CImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/CImage.cs -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/Form1.Designer.cs -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/Form1.cs -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/Form1.resx -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/Program.cs -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/Properties/Resources.resx -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/Properties/Settings.settings -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/WFshadingBin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/WFshadingBin.csproj -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/WFshadingBin.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/WFshadingBin.csproj.user -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/bin/Debug/WFshadingBin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/bin/Debug/WFshadingBin.exe -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/bin/Debug/WFshadingBin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/bin/Debug/WFshadingBin.pdb -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/bin/Debug/WFshadingBin.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/bin/Debug/WFshadingBin.vshost.exe -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/bin/Debug/WFshadingBin.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/bin/Debug/WFshadingBin.vshost.exe.manifest -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/bin/Release/WFshadingBin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/bin/Release/WFshadingBin.exe -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/bin/Release/WFshadingBin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/bin/Release/WFshadingBin.pdb -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Debug/WFshadingBin.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/obj/x86/Debug/WFshadingBin.Form1.resources -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Debug/WFshadingBin.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/obj/x86/Debug/WFshadingBin.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Debug/WFshadingBin.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/obj/x86/Debug/WFshadingBin.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Debug/WFshadingBin.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/obj/x86/Debug/WFshadingBin.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Debug/WFshadingBin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/obj/x86/Debug/WFshadingBin.exe -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Debug/WFshadingBin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/obj/x86/Debug/WFshadingBin.pdb -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Release/WFshadingBin.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/obj/x86/Release/WFshadingBin.Form1.resources -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Release/WFshadingBin.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/obj/x86/Release/WFshadingBin.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Release/WFshadingBin.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/obj/x86/Release/WFshadingBin.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Release/WFshadingBin.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/obj/x86/Release/WFshadingBin.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Release/WFshadingBin.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/obj/x86/Release/WFshadingBin.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Release/WFshadingBin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/obj/x86/Release/WFshadingBin.exe -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Release/WFshadingBin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Code/WFshadingBin/WFshadingBin/obj/x86/Release/WFshadingBin.pdb -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/HEAD/README.md --------------------------------------------------------------------------------