├── .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: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /9781484242360.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/9781484242360.jpg -------------------------------------------------------------------------------- /Code/PulseNoiseWF/Example_images/JesusMPfrag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/PulseNoiseWF/Example_images/JesusMPfrag.jpg -------------------------------------------------------------------------------- /Code/PulseNoiseWF/Example_images/JesusMPfragG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/PulseNoiseWF/Example_images/JesusMPfragG.jpg -------------------------------------------------------------------------------- /Code/PulseNoiseWF/Example_images/Koenig.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/PulseNoiseWF/Example_images/Koenig.BMP -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual C# Express 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PulseNoiseWF", "PulseNoiseWF\PulseNoiseWF.csproj", "{24E70869-44E9-496D-A210-B8564969C88E}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {24E70869-44E9-496D-A210-B8564969C88E}.Debug|x86.ActiveCfg = Debug|x86 13 | {24E70869-44E9-496D-A210-B8564969C88E}.Debug|x86.Build.0 = Debug|x86 14 | {24E70869-44E9-496D-A210-B8564969C88E}.Release|x86.ActiveCfg = Release|x86 15 | {24E70869-44E9-496D-A210-B8564969C88E}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/PulseNoiseWF/PulseNoiseWF.suo -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace PulseNoiseWF 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace PulseNoiseWF.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/PulseNoiseWF.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/Queue.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace PulseNoiseWF 7 | { 8 | class Queue 9 | { public 10 | int input, output, Len, full; 11 | public 12 | int[] Array; 13 | ~Queue() { } 14 | public Queue(int len) // Constructor 15 | { 16 | this.Len = len; 17 | this.input = 0; 18 | this.output = 0; 19 | this.full = 0; 20 | this.Array = new int[Len]; 21 | } 22 | 23 | public int Put(int V) 24 | { 25 | if (input == Len - 1) 26 | { 27 | full = 1; 28 | return -1; 29 | } 30 | Array[input] = V; 31 | input++; 32 | return 1; 33 | } 34 | 35 | public int Get() 36 | { 37 | if (Empty() == 1) 38 | { 39 | return -1; 40 | } 41 | int i = Array[output]; 42 | if (output == Len - 1) output = 0; 43 | else output++; 44 | if (full == 1) full = 0; 45 | return i; 46 | } 47 | 48 | public int Empty() 49 | { 50 | if (input == output && full != 1) 51 | { 52 | return 1; 53 | } 54 | return 0; 55 | } 56 | } //************************ end class Queue ******************************* 57 | } 58 | -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/bin/Debug/PulseNoiseWF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/PulseNoiseWF/PulseNoiseWF/bin/Debug/PulseNoiseWF.exe -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/bin/Debug/PulseNoiseWF.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/PulseNoiseWF/PulseNoiseWF/bin/Debug/PulseNoiseWF.vshost.exe -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/bin/Debug/PulseNoiseWF.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/bin/Release/PulseNoiseWF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/PulseNoiseWF/PulseNoiseWF/bin/Release/PulseNoiseWF.exe -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/bin/Release/PulseNoiseWF.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/PulseNoiseWF.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Debug/PulseNoiseWF.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/PulseNoiseWF.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/PulseNoiseWF/PulseNoiseWF/obj/x86/Release/PulseNoiseWF.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/Sicherungskopie von Recomendations.wbk -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual C# Express 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WFcellDivision", "WFcellDivision\WFcellDivision.csproj", "{82FA0A94-B218-4A7D-BC90-741E072E9CA5}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {82FA0A94-B218-4A7D-BC90-741E072E9CA5}.Debug|x86.ActiveCfg = Debug|x86 13 | {82FA0A94-B218-4A7D-BC90-741E072E9CA5}.Debug|x86.Build.0 = Debug|x86 14 | {82FA0A94-B218-4A7D-BC90-741E072E9CA5}.Release|x86.ActiveCfg = Release|x86 15 | {82FA0A94-B218-4A7D-BC90-741E072E9CA5}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcellDivision/WFcellDivision.suo -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/DNA.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcellDivision/WFcellDivision/DNA.bmp -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace WFcellDivision 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WFcellDivision.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/WFcellDivision.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/bin/Debug/WFcellDivision.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcellDivision/WFcellDivision/bin/Debug/WFcellDivision.exe -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/bin/Debug/WFcellDivision.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcellDivision/WFcellDivision/bin/Debug/WFcellDivision.vshost.exe -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/bin/Debug/WFcellDivision.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/bin/Release/WFcellDivision.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcellDivision/WFcellDivision/bin/Release/WFcellDivision.exe -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/bin/Release/WFcellDivision.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcellDivision/WFcellDivision/obj/x86/Debug/WFcellDivision.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Debug/WFcellDivision.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcellDivision/WFcellDivision/obj/x86/Release/WFcellDivision.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFcellDivision/WFcellDivision/obj/x86/Release/WFcellDivision.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcellDivision/WFcellDivision/obj/x86/Release/WFcellDivision.pdb -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/ApFrag.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/Example_images/ApFrag.bmp -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Aples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/Example_images/Aples.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Bruk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/Example_images/Bruk.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Gr1gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/Example_images/Gr1gray.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Gr2gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/Example_images/Gr2gray.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Gr3gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/Example_images/Gr3gray.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Gr4gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/Example_images/Gr4gray.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/IMG_9656.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/Example_images/IMG_9656.JPG -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/IMG_9665.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/Example_images/IMG_9665.JPG -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Missingbumpsw_g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/Example_images/Missingbumpsw_g.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Mushroom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/Example_images/Mushroom.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/Normalsw_g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/Example_images/Normalsw_g.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/bump.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/Example_images/bump.bmp -------------------------------------------------------------------------------- /Code/WFcircleReco/Example_images/bump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/Example_images/bump.jpg -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual C# Express 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WFcircleReco", "WFcircleReco\WFcircleReco.csproj", "{84E6B4BF-6959-4267-B478-6F969C22A160}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {84E6B4BF-6959-4267-B478-6F969C22A160}.Debug|x86.ActiveCfg = Debug|x86 13 | {84E6B4BF-6959-4267-B478-6F969C22A160}.Debug|x86.Build.0 = Debug|x86 14 | {84E6B4BF-6959-4267-B478-6F969C22A160}.Release|x86.ActiveCfg = Release|x86 15 | {84E6B4BF-6959-4267-B478-6F969C22A160}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/WFcircleReco.suo -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace WFcircleReco 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WFcircleReco.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/WFcircleReco.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | 6 | -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/bin/Debug/WFcircleReco.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/WFcircleReco/bin/Debug/WFcircleReco.exe -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/bin/Debug/WFcircleReco.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/WFcircleReco/bin/Debug/WFcircleReco.vshost.exe -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/bin/Debug/WFcircleReco.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/bin/Release/WFcircleReco.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/WFcircleReco/bin/Release/WFcircleReco.exe -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/bin/Release/WFcircleReco.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/WFcircleReco/obj/x86/Debug/WFcircleReco.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Debug/WFcircleReco.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/WFcircleReco/obj/x86/Release/WFcircleReco.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFcircleReco/WFcircleReco/obj/x86/Release/WFcircleReco.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcircleReco/WFcircleReco/obj/x86/Release/WFcircleReco.pdb -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/Haus.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcompressPal/Example_images/Haus.BMP -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/IMG_8808.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcompressPal/Example_images/IMG_9528_frag.bmp -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/JesusGood.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcompressPal/Example_images/JesusGood.bmp -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/JesusMPfrag.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcompressPal/Example_images/JesusMPfrag.bmp -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/JesusMitPunkten.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcompressPal/Example_images/JesusMitPunkten.bmp -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/RobbyFährt.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcompressPal/Example_images/RobbyFährt.JPG -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/RobbyL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcompressPal/Example_images/RobbyL.jpg -------------------------------------------------------------------------------- /Code/WFcompressPal/Example_images/RobbyL_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcompressPal/Example_images/RobbyL_small.jpg -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual C# Express 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WFcompressPal", "WFcompressPal\WFcompressPal.csproj", "{ECC47BAC-EC0F-430B-864A-C26095E6C8CB}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {ECC47BAC-EC0F-430B-864A-C26095E6C8CB}.Debug|x86.ActiveCfg = Debug|x86 13 | {ECC47BAC-EC0F-430B-864A-C26095E6C8CB}.Debug|x86.Build.0 = Debug|x86 14 | {ECC47BAC-EC0F-430B-864A-C26095E6C8CB}.Release|x86.ActiveCfg = Release|x86 15 | {ECC47BAC-EC0F-430B-864A-C26095E6C8CB}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcompressPal/WFcompressPal.suo -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace WFcompressPal 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WFcompressPal.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/WFcompressPal.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/bin/Debug/WFcompressPal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcompressPal/WFcompressPal/bin/Debug/WFcompressPal.exe -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/bin/Debug/WFcompressPal.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcompressPal/WFcompressPal/bin/Debug/WFcompressPal.vshost.exe -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/bin/Debug/WFcompressPal.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/bin/Release/DataFile.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcompressPal/WFcompressPal/bin/Release/DataFile.dat -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/bin/Release/WFcompressPal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcompressPal/WFcompressPal/bin/Release/WFcompressPal.exe -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/bin/Release/WFcompressPal.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcompressPal/WFcompressPal/obj/x86/Debug/WFcompressPal.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Debug/WFcompressPal.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcompressPal/WFcompressPal/obj/x86/Release/WFcompressPal.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFcompressPal/WFcompressPal/obj/x86/Release/WFcompressPal.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFcompressPal/WFcompressPal/obj/x86/Release/WFcompressPal.pdb -------------------------------------------------------------------------------- /Code/WFedgeDetect1/Example_images/Beg2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFedgeDetect1/Example_images/Beg2.bmp -------------------------------------------------------------------------------- /Code/WFedgeDetect1/Example_images/Begonie.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFedgeDetect1/Example_images/Begonie.BMP -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual C# Express 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WFedgeDetect1", "WFedgeDetect1\WFedgeDetect1.csproj", "{DB018E98-ABEB-4079-B1A0-6F701E2646F5}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {DB018E98-ABEB-4079-B1A0-6F701E2646F5}.Debug|x86.ActiveCfg = Debug|x86 13 | {DB018E98-ABEB-4079-B1A0-6F701E2646F5}.Debug|x86.Build.0 = Debug|x86 14 | {DB018E98-ABEB-4079-B1A0-6F701E2646F5}.Release|x86.ActiveCfg = Release|x86 15 | {DB018E98-ABEB-4079-B1A0-6F701E2646F5}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFedgeDetect1/WFedgeDetect1.suo -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace WFedgeDetect 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WFedgeDetect.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/WFedgeDetect1.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect.vshost.exe -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect1.exe -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect1.vshost.exe -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/bin/Debug/WFedgeDetect1.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/bin/Release/WFedgeDetect1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFedgeDetect1/WFedgeDetect1/bin/Release/WFedgeDetect1.exe -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/bin/Release/WFedgeDetect1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/WFedgeDetect.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Debug/WFedgeDetect1.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/WFedgeDetect.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFedgeDetect1/WFedgeDetect1/obj/x86/Release/WFedgeDetect1.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/Example_images/13_1.jpg -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/Fahrrad3gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/Example_images/Fahrrad3gray.jpg -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/Fuchs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/Example_images/Fuchs.jpg -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/Fuchs1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/Example_images/Fuchs1.jpg -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9545.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/Example_images/IMG_9545.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9547.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/Example_images/IMG_9547.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9548.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/Example_images/IMG_9548.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9549.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/Example_images/IMG_9549.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9550.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/Example_images/IMG_9550.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9554.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/Example_images/IMG_9554.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9557.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/Example_images/IMG_9557.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9563.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/Example_images/IMG_9563.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/IMG_9564.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/Example_images/IMG_9564.JPG -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/a.F12.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/Example_images/a.F12.bmp -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/a.F17.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/Example_images/a.F17.bmp -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/a.F18.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/Example_images/a.F18.bmp -------------------------------------------------------------------------------- /Code/WFellipseBikes/Example_images/a.Fahrrad3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/Example_images/a.Fahrrad3.bmp -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual C# Express 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WFellipseBikes", "WFellipseBikes\WFellipseBikes.csproj", "{6FC98860-2AF5-470E-8135-6AC3A5B7B555}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {6FC98860-2AF5-470E-8135-6AC3A5B7B555}.Debug|x86.ActiveCfg = Debug|x86 13 | {6FC98860-2AF5-470E-8135-6AC3A5B7B555}.Debug|x86.Build.0 = Debug|x86 14 | {6FC98860-2AF5-470E-8135-6AC3A5B7B555}.Release|x86.ActiveCfg = Release|x86 15 | {6FC98860-2AF5-470E-8135-6AC3A5B7B555}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/WFellipseBikes.suo -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace WFellipseBikes 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WFellipseBikes.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/WFellipseBikes.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/bin/Debug/WFellipseBikes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/WFellipseBikes/bin/Debug/WFellipseBikes.exe -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/bin/Debug/WFellipseBikes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/WFellipseBikes/bin/Debug/WFellipseBikes.vshost.exe -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/bin/Debug/WFellipseBikes.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/bin/Release/WFellipseBikes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/WFellipseBikes/bin/Release/WFellipseBikes.exe -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/bin/Release/WFellipseBikes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/WFellipseBikes/obj/x86/Debug/WFellipseBikes.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Debug/WFellipseBikes.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Kovalevski\Documents\Visual Studio 2010\WFProjects\WFellipseBikes\WFellipseBikes\bin\Debug\WFellipseBikes.exe 2 | C:\Users\Kovalevski\Documents\Visual Studio 2010\WFProjects\WFellipseBikes\WFellipseBikes\bin\Debug\WFellipseBikes.pdb 3 | C:\Users\Kovalevski\Documents\Visual Studio 2010\WFProjects\WFellipseBikes\WFellipseBikes\obj\x86\Debug\WFellipseBikes.Form1.resources 4 | C:\Users\Kovalevski\Documents\Visual Studio 2010\WFProjects\WFellipseBikes\WFellipseBikes\obj\x86\Debug\WFellipseBikes.Properties.Resources.resources 5 | C:\Users\Kovalevski\Documents\Visual Studio 2010\WFProjects\WFellipseBikes\WFellipseBikes\obj\x86\Debug\WFellipseBikes.csproj.GenerateResource.Cache 6 | C:\Users\Kovalevski\Documents\Visual Studio 2010\WFProjects\WFellipseBikes\WFellipseBikes\obj\x86\Debug\WFellipseBikes.exe 7 | C:\Users\Kovalevski\Documents\Visual Studio 2010\WFProjects\WFellipseBikes\WFellipseBikes\obj\x86\Debug\WFellipseBikes.pdb 8 | -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Debug/WFellipseBikes.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/WFellipseBikes.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/WFellipseBikes.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFellipseBikes/WFellipseBikes/obj/x86/Release/WFellipseBikes.pdb -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual C# Express 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WFluminance", "WFluminance\WFluminance.csproj", "{8A3AD1C4-A4CF-4BA1-B45A-4BB697FF6443}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {8A3AD1C4-A4CF-4BA1-B45A-4BB697FF6443}.Debug|x86.ActiveCfg = Debug|x86 13 | {8A3AD1C4-A4CF-4BA1-B45A-4BB697FF6443}.Debug|x86.Build.0 = Debug|x86 14 | {8A3AD1C4-A4CF-4BA1-B45A-4BB697FF6443}.Release|x86.ActiveCfg = Release|x86 15 | {8A3AD1C4-A4CF-4BA1-B45A-4BB697FF6443}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFluminance/WFluminance.suo -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace WFluminance 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WFluminance.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/WFluminance.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/bin/Debug/WFluminance.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFluminance/WFluminance/bin/Debug/WFluminance.exe -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/bin/Debug/WFluminance.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFluminance/WFluminance/bin/Debug/WFluminance.vshost.exe -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/bin/Debug/WFluminance.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/bin/Release/WFluminance.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFluminance/WFluminance/bin/Release/WFluminance.exe -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/bin/Release/WFluminance.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFluminance/WFluminance/obj/x86/Debug/WFluminance.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Debug/WFluminance.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Kovalevski\Documents\Visual Studio 2010\WFProjects\WFluminance\WFluminance\obj\x86\Debug\WFluminance.Form1.resources 2 | C:\Users\Kovalevski\Documents\Visual Studio 2010\WFProjects\WFluminance\WFluminance\obj\x86\Debug\WFluminance.Properties.Resources.resources 3 | C:\Users\Kovalevski\Documents\Visual Studio 2010\WFProjects\WFluminance\WFluminance\obj\x86\Debug\WFluminance.csproj.GenerateResource.Cache 4 | C:\Users\Kovalevski\Documents\Visual Studio 2010\WFProjects\WFluminance\WFluminance\bin\Debug\WFluminance.exe 5 | C:\Users\Kovalevski\Documents\Visual Studio 2010\WFProjects\WFluminance\WFluminance\bin\Debug\WFluminance.pdb 6 | C:\Users\Kovalevski\Documents\Visual Studio 2010\WFProjects\WFluminance\WFluminance\obj\x86\Debug\WFluminance.exe 7 | C:\Users\Kovalevski\Documents\Visual Studio 2010\WFProjects\WFluminance\WFluminance\obj\x86\Debug\WFluminance.pdb 8 | C:\Users\Kovalevski\Documents\Visual Studio 2010\for_GitHub\WFluminance\WFluminance\obj\x86\Debug\WFluminance.exe 9 | C:\Users\Kovalevski\Documents\Visual Studio 2010\for_GitHub\WFluminance\WFluminance\obj\x86\Debug\WFluminance.pdb 10 | -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Debug/WFluminance.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFluminance/WFluminance/obj/x86/Release/WFluminance.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFluminance/WFluminance/obj/x86/Release/WFluminance.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpiecewiseLinear/Example_images/B+D.BMP -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/Example_images/aWir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpiecewiseLinear/Example_images/aWir.jpg -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual C# Express 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WFpiecewiseLinear", "WFpiecewiseLinear\WFpiecewiseLinear.csproj", "{F51CA933-59CA-4B7B-9318-81E903EF9BB7}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {F51CA933-59CA-4B7B-9318-81E903EF9BB7}.Debug|x86.ActiveCfg = Debug|x86 13 | {F51CA933-59CA-4B7B-9318-81E903EF9BB7}.Debug|x86.Build.0 = Debug|x86 14 | {F51CA933-59CA-4B7B-9318-81E903EF9BB7}.Release|x86.ActiveCfg = Release|x86 15 | {F51CA933-59CA-4B7B-9318-81E903EF9BB7}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpiecewiseLinear/WFpiecewiseLinear.suo -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/Instruction for the project.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpiecewiseLinear/WFpiecewiseLinear/Instruction for the project.docx -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace WFpiecewiseLinear 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WFpiecewiseLinear.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/WFpiecewiseLinear.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Debug/WFpiecewiseLinear.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Debug/WFpiecewiseLinear.exe -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Debug/WFpiecewiseLinear.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Debug/WFpiecewiseLinear.vshost.exe -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Debug/WFpiecewiseLinear.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Release/WFpiecewiseLinear.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Release/WFpiecewiseLinear.exe -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/bin/Release/WFpiecewiseLinear.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/WFpiecewiseLinear.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Debug/WFpiecewiseLinear.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/WFpiecewiseLinear.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/WFpiecewiseLinear.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpiecewiseLinear/WFpiecewiseLinear/obj/x86/Release/WFpiecewiseLinear.pdb -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/ApFrag.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/ApFrag.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/Apfel1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/Apfel1.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/Baerbel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/Baerbel.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/Beg2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/Beg2.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/BillGates.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/BillGates.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/Bruk24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/Bruk24.jpg -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/Eggs.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/Eggs.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/IMG_9207.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/IMG_9207.JPG -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/Mixc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/Mixc.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/OstH1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/OstH1.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/SWest2frag2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/SWest2frag2.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/ZweiKreise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/ZweiKreise.jpg -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/a.Apfel3k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/a.Apfel3k.jpg -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/a.LinkId.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/a.LinkId.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/a.aEllipse.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/a.aEllipse.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/a.aPfau.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/a.aPfau.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/a.aPfau2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/a.aPfau2.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/butfrag.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/butfrag.bmp -------------------------------------------------------------------------------- /Code/WFpolyArc/Example_images/google bike 5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/Example_images/google bike 5.jpg -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual C# Express 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WFpolyArc", "WFpolyArc\WFpolyArc.csproj", "{0FE3F7F2-931E-47A0-A399-0D75CF604FCF}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {0FE3F7F2-931E-47A0-A399-0D75CF604FCF}.Debug|x86.ActiveCfg = Debug|x86 13 | {0FE3F7F2-931E-47A0-A399-0D75CF604FCF}.Debug|x86.Build.0 = Debug|x86 14 | {0FE3F7F2-931E-47A0-A399-0D75CF604FCF}.Release|x86.ActiveCfg = Release|x86 15 | {0FE3F7F2-931E-47A0-A399-0D75CF604FCF}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/WFpolyArc.suo -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace WFpolyArc 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WFpolyArc.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/WFpolyArc.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ProjectFiles 5 | 6 | -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/bin/Debug/WFpolyArc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/WFpolyArc/bin/Debug/WFpolyArc.exe -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/bin/Debug/WFpolyArc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/WFpolyArc/bin/Debug/WFpolyArc.vshost.exe -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/bin/Debug/WFpolyArc.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/bin/Release/DataFile.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/WFpolyArc/bin/Release/DataFile.dat -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/bin/Release/WFpolyArc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/WFpolyArc/bin/Release/WFpolyArc.exe -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/bin/Release/WFpolyArc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/WFpolyArc/obj/x86/Debug/WFpolyArc.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Debug/WFpolyArc.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/WFpolyArc/obj/x86/Release/WFpolyArc.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFpolyArc/WFpolyArc/obj/x86/Release/WFpolyArc.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFpolyArc/WFpolyArc/obj/x86/Release/WFpolyArc.pdb -------------------------------------------------------------------------------- /Code/WFrectify/Example_images/IM000316L.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrectify/Example_images/IM000316L.jpg -------------------------------------------------------------------------------- /Code/WFrectify/Example_images/IM000316R.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrectify/Example_images/IM000316R.jpg -------------------------------------------------------------------------------- /Code/WFrectify/Example_images/IM000318.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrectify/Example_images/IM000318.JPG -------------------------------------------------------------------------------- /Code/WFrectify/Example_images/IM000319.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrectify/Example_images/IM000319.JPG -------------------------------------------------------------------------------- /Code/WFrectify/Example_images/KraehenV.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrectify/Example_images/KraehenV.bmp -------------------------------------------------------------------------------- /Code/WFrectify/Example_images/Madonna2.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrectify/Example_images/Madonna2.BMP -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual C# Express 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WFrectify", "WFrectify\WFrectify.csproj", "{99F8BD4D-4D17-474C-B878-9DAA8F554516}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {99F8BD4D-4D17-474C-B878-9DAA8F554516}.Debug|x86.ActiveCfg = Debug|x86 13 | {99F8BD4D-4D17-474C-B878-9DAA8F554516}.Debug|x86.Build.0 = Debug|x86 14 | {99F8BD4D-4D17-474C-B878-9DAA8F554516}.Release|x86.ActiveCfg = Release|x86 15 | {99F8BD4D-4D17-474C-B878-9DAA8F554516}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrectify/WFrectify.suo -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace WFrectify 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WFrectify.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/Reste.cpp.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrectify/WFrectify/Reste.cpp.docx -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/Sicherungskopie von Reste.cpp.wbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrectify/WFrectify/Sicherungskopie von Reste.cpp.wbk -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/WFrectify.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/bin/Debug/WFrectify.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrectify/WFrectify/bin/Debug/WFrectify.exe -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/bin/Debug/WFrectify.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrectify/WFrectify/bin/Debug/WFrectify.vshost.exe -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/bin/Debug/WFrectify.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/bin/Release/WFrectify.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrectify/WFrectify/bin/Release/WFrectify.exe -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/bin/Release/WFrectify.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrectify/WFrectify/bin/Release/WFrectify.pdb -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/iVect2.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace WFrectify 7 | { 8 | public class iVect2 9 | { public 10 | int X, Y; 11 | public iVect2(){} 12 | public iVect2(int x, int y) // constructor 13 | { this.X=x; 14 | this.Y=y; 15 | } 16 | 17 | 18 | public static iVect2 operator +(iVect2 a, iVect2 b) 19 | { 20 | return new iVect2(a.X+b.X, a.Y+b.Y); 21 | } 22 | 23 | public static iVect2 operator -(iVect2 a, iVect2 b) 24 | { 25 | return new iVect2(a.X-b.X, a.Y-b.Y); 26 | } 27 | 28 | public static iVect2 operator -(iVect2 a) 29 | { 30 | return new iVect2(-a.X, -a.Y); 31 | } 32 | } //********************* end public class iVect2 *************************** 33 | } 34 | -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrectify/WFrectify/obj/x86/Debug/WFrectify.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Debug/WFrectify.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrectify/WFrectify/obj/x86/Release/WFrectify.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFrectify/WFrectify/obj/x86/Release/WFrectify.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrectify/WFrectify/obj/x86/Release/WFrectify.pdb -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual C# Express 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WFrestoreLin", "WFrestoreLin\WFrestoreLin.csproj", "{4547908B-E721-4550-A713-486A60461E42}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {4547908B-E721-4550-A713-486A60461E42}.Debug|x86.ActiveCfg = Debug|x86 13 | {4547908B-E721-4550-A713-486A60461E42}.Debug|x86.Build.0 = Debug|x86 14 | {4547908B-E721-4550-A713-486A60461E42}.Release|x86.ActiveCfg = Release|x86 15 | {4547908B-E721-4550-A713-486A60461E42}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrestoreLin/WFrestoreLin.suo -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace WFrestoreLin 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WFrestoreLin.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/WFrestoreLin.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | en-US 11 | false 12 | 13 | -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/bin/Debug/WFrestoreLin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrestoreLin/WFrestoreLin/bin/Debug/WFrestoreLin.exe -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/bin/Debug/WFrestoreLin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrestoreLin/WFrestoreLin/bin/Debug/WFrestoreLin.vshost.exe -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/bin/Debug/WFrestoreLin.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/bin/Release/WFrestoreLin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrestoreLin/WFrestoreLin/bin/Release/WFrestoreLin.exe -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/bin/Release/WFrestoreLin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/WFrestoreLin.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Debug/WFrestoreLin.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/WFrestoreLin.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/WFrestoreLin.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFrestoreLin/WFrestoreLin/obj/x86/Release/WFrestoreLin.pdb -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/Example_images/Fuchs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFsegmentAndComp/Example_images/Fuchs.jpg -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/Example_images/Fuchs1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFsegmentAndComp/Example_images/Fuchs1.jpg -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/Example_images/Fuchs1BackUp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFsegmentAndComp/Example_images/Fuchs1BackUp.jpg -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/Example_images/Fuchs2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFsegmentAndComp/Example_images/Fuchs2.jpg -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/Example_images/FuchsCopy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFsegmentAndComp/Example_images/FuchsCopy.jpg -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual C# Express 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WFsegmentAndComp", "WFsegmentAndComp\WFsegmentAndComp.csproj", "{A2BC389A-BAC6-455B-A190-8F8B78C4A4F5}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {A2BC389A-BAC6-455B-A190-8F8B78C4A4F5}.Debug|x86.ActiveCfg = Debug|x86 13 | {A2BC389A-BAC6-455B-A190-8F8B78C4A4F5}.Debug|x86.Build.0 = Debug|x86 14 | {A2BC389A-BAC6-455B-A190-8F8B78C4A4F5}.Release|x86.ActiveCfg = Release|x86 15 | {A2BC389A-BAC6-455B-A190-8F8B78C4A4F5}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFsegmentAndComp/WFsegmentAndComp.suo -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace WFsegmentAndComp 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WFsegmentAndComp.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/WFsegmentAndComp.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/bin/Debug/WFsegmentAndComp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFsegmentAndComp/WFsegmentAndComp/bin/Debug/WFsegmentAndComp.exe -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/bin/Debug/WFsegmentAndComp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFsegmentAndComp/WFsegmentAndComp/bin/Debug/WFsegmentAndComp.vshost.exe -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/bin/Debug/WFsegmentAndComp.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/bin/Release/WFsegmentAndComp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFsegmentAndComp/WFsegmentAndComp/bin/Release/WFsegmentAndComp.exe -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/bin/Release/WFsegmentAndComp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/WFsegmentAndComp.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Debug/WFsegmentAndComp.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/WFsegmentAndComp.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFsegmentAndComp/WFsegmentAndComp/obj/x86/Release/WFsegmentAndComp.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadBinImpulse/Example_images/AbbBackUpBackUpBackUp.10_1.jpg -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/Example_images/Koenig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadBinImpulse/Example_images/Koenig.jpg -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/Example_images/Koenig_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadBinImpulse/Example_images/Koenig_1.jpg -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual C# Express 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WFshadBinImpulse", "WFshadBinImpulse\WFshadBinImpulse.csproj", "{3CD30B9F-8EF1-4DEC-B94A-8800ED5B1EB3}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {3CD30B9F-8EF1-4DEC-B94A-8800ED5B1EB3}.Debug|x86.ActiveCfg = Debug|x86 13 | {3CD30B9F-8EF1-4DEC-B94A-8800ED5B1EB3}.Debug|x86.Build.0 = Debug|x86 14 | {3CD30B9F-8EF1-4DEC-B94A-8800ED5B1EB3}.Release|x86.ActiveCfg = Release|x86 15 | {3CD30B9F-8EF1-4DEC-B94A-8800ED5B1EB3}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadBinImpulse/WFshadBinImpulse.suo -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace WFshadBinImpulse 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WFshadBinImpulse.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/Queue.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace WFshadBinImpulse 7 | { 8 | class Queue 9 | { public 10 | int input, output, Len, full; 11 | public 12 | int[] Array; 13 | ~Queue() { } 14 | public Queue(int len) // Constructor 15 | { 16 | this.Len = len; 17 | this.input = 0; 18 | this.output = 0; 19 | this.full = 0; 20 | this.Array = new int[Len]; 21 | } 22 | 23 | public int Put(int V) 24 | { 25 | if (input == Len - 1) 26 | { 27 | full = 1; 28 | return -1; 29 | } 30 | Array[input] = V; 31 | input++; 32 | return 1; 33 | } 34 | 35 | public int Get() 36 | { 37 | if (Empty() == 1) 38 | { 39 | return -1; 40 | } 41 | int i = Array[output]; 42 | if (output == Len - 1) output = 0; 43 | else output++; 44 | if (full == 1) full = 0; 45 | return i; 46 | } 47 | 48 | public int Empty() 49 | { 50 | if (input == output && full != 1) 51 | { 52 | return 1; 53 | } 54 | return 0; 55 | } 56 | } //************************ end class Queue ******************************* 57 | } 58 | 59 | -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/WFshadBinImpulse.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/bin/Debug/WFshadBinImpulse.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadBinImpulse/WFshadBinImpulse/bin/Debug/WFshadBinImpulse.exe -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/bin/Debug/WFshadBinImpulse.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadBinImpulse/WFshadBinImpulse/bin/Debug/WFshadBinImpulse.vshost.exe -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/bin/Debug/WFshadBinImpulse.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/bin/Release/WFshadBinImpulse.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadBinImpulse/WFshadBinImpulse/bin/Release/WFshadBinImpulse.exe -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/bin/Release/WFshadBinImpulse.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/WFshadBinImpulse.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Debug/WFshadBinImpulse.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/WFshadBinImpulse.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFshadBinImpulse/WFshadBinImpulse/obj/x86/Release/WFshadBinImpulse.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadingBin/Example_images/Abb.10.jpg -------------------------------------------------------------------------------- /Code/WFshadingBin/Example_images/BettelK.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadingBin/Example_images/BettelK.bmp -------------------------------------------------------------------------------- /Code/WFshadingBin/Example_images/Koenig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadingBin/Example_images/Koenig.jpg -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual C# Express 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WFshadingBin", "WFshadingBin\WFshadingBin.csproj", "{FBCE54F6-4A99-4E27-9581-D3CA7C643FA0}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {FBCE54F6-4A99-4E27-9581-D3CA7C643FA0}.Debug|x86.ActiveCfg = Debug|x86 13 | {FBCE54F6-4A99-4E27-9581-D3CA7C643FA0}.Debug|x86.Build.0 = Debug|x86 14 | {FBCE54F6-4A99-4E27-9581-D3CA7C643FA0}.Release|x86.ActiveCfg = Release|x86 15 | {FBCE54F6-4A99-4E27-9581-D3CA7C643FA0}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadingBin/WFshadingBin.suo -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace WFshadingBin 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new Form1()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WFshadingBin.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/WFshadingBin.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/bin/Debug/WFshadingBin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadingBin/WFshadingBin/bin/Debug/WFshadingBin.exe -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/bin/Debug/WFshadingBin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadingBin/WFshadingBin/bin/Debug/WFshadingBin.vshost.exe -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/bin/Debug/WFshadingBin.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/bin/Release/WFshadingBin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadingBin/WFshadingBin/bin/Release/WFshadingBin.exe -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/bin/Release/WFshadingBin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadingBin/WFshadingBin/obj/x86/Debug/WFshadingBin.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Debug/WFshadingBin.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadingBin/WFshadingBin/obj/x86/Release/WFshadingBin.Properties.Resources.resources -------------------------------------------------------------------------------- /Code/WFshadingBin/WFshadingBin/obj/x86/Release/WFshadingBin.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-algorithms-for-image-proc/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/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/ba2d8be39fccf3563972b1fd71ca2c94ba97cee0/Code/WFshadingBin/WFshadingBin/obj/x86/Release/WFshadingBin.pdb -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- 1 | # Contributing to Apress Source Code 2 | 3 | Copyright for Apress source code belongs to the author(s). However, under fair use you are encouraged to fork and contribute minor corrections and updates for the benefit of the author(s) and other readers. 4 | 5 | ## How to Contribute 6 | 7 | 1. Make sure you have a GitHub account. 8 | 2. Fork the repository for the relevant book. 9 | 3. Create a new branch on which to make your change, e.g. 10 | `git checkout -b my_code_contribution` 11 | 4. Commit your change. Include a commit message describing the correction. Please note that if your commit message is not clear, the correction will not be accepted. 12 | 5. Submit a pull request. 13 | 14 | Thank you for your contribution! -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Apress Source Code 2 | 3 | This repository accompanies [*Modern Algorithms for Image Processing*](https://www.apress.com/9781484242360) by Vladimir Kovalevsky (Apress, 2018). 4 | 5 | [comment]: #cover 6 | ![Cover image](9781484242360.jpg) 7 | 8 | Download the files as a zip using the green button, or clone the repository to your machine using Git. 9 | 10 | ## Releases 11 | 12 | Release v1.0 corresponds to the code in the published book, without corrections or updates. 13 | 14 | ## Contributions 15 | 16 | See the file Contributing.md for more information on how you can contribute to this repository. --------------------------------------------------------------------------------