├── .gitignore ├── Credits.md ├── LICENSE ├── MathTester ├── MathTester.csproj └── Program.cs ├── PTMS ├── Functions.cs ├── InterfaceAndConstants.cs ├── MathParser.cs ├── OpenCvExtension.cs ├── Operators.cs └── PTMS.csproj ├── PhotoToys.sln ├── PhotoToys ├── AboutPage.cs ├── AcrylicWindow.cs ├── Assets │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── PhotoToys.ico │ ├── PhotoToys.png │ ├── PhotoToys.svg │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.backup.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── Custom UI │ ├── MatImage.cs │ └── SimpleUI.cs ├── DynamicLanguage.cs ├── Extension.cs ├── Features │ ├── AdvancedManipulation.cs │ ├── Analysis.cs │ ├── BasicManipulation.cs │ ├── ChannelManipulation.cs │ ├── FeatureBase.cs │ ├── Filter.cs │ └── ImageGenerator.cs ├── Fonts │ ├── TH Sarabun New Regular.ttf │ └── iskpota.ttf ├── Icons │ ├── Basic.png │ └── Basic.svg ├── InventoryAndSettings.cs ├── MainWindow.cs ├── MathWrapper.py ├── MicaWindow.cs ├── MicaWindowWithTitleBar.cs ├── Package.appxmanifest ├── Parameters │ ├── BorderParameter.cs │ ├── ButtonParameter.cs │ ├── CheckboxParameter.cs │ ├── ColorPickerParameter.cs │ ├── DoubleSliderParameter.cs │ ├── HorizontalStackParameter.cs │ ├── ImageParameter.cs │ ├── IntSliderParameter.cs │ ├── LocationPickerParameter.cs │ ├── ParameterBase.cs │ ├── RectLocationPickerParameter.cs │ ├── SelectParameter.cs │ ├── StringTextBoxParameter.cs │ └── nLocationsPickerParameter.cs ├── PhotoToys.csproj ├── PhotoToys.csproj.user ├── Properties │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-arm64.pubxml.user │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── Themes │ └── Generic.xaml ├── XAML │ ├── App.xaml │ ├── App.xaml.cs │ ├── PageForFrame.xaml │ └── PageForFrame.xaml.cs └── app.manifest ├── Readme.md └── Terms.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/.gitignore -------------------------------------------------------------------------------- /Credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/Credits.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/LICENSE -------------------------------------------------------------------------------- /MathTester/MathTester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/MathTester/MathTester.csproj -------------------------------------------------------------------------------- /MathTester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/MathTester/Program.cs -------------------------------------------------------------------------------- /PTMS/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PTMS/Functions.cs -------------------------------------------------------------------------------- /PTMS/InterfaceAndConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PTMS/InterfaceAndConstants.cs -------------------------------------------------------------------------------- /PTMS/MathParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PTMS/MathParser.cs -------------------------------------------------------------------------------- /PTMS/OpenCvExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PTMS/OpenCvExtension.cs -------------------------------------------------------------------------------- /PTMS/Operators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PTMS/Operators.cs -------------------------------------------------------------------------------- /PTMS/PTMS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PTMS/PTMS.csproj -------------------------------------------------------------------------------- /PhotoToys.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys.sln -------------------------------------------------------------------------------- /PhotoToys/AboutPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/AboutPage.cs -------------------------------------------------------------------------------- /PhotoToys/AcrylicWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/AcrylicWindow.cs -------------------------------------------------------------------------------- /PhotoToys/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /PhotoToys/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /PhotoToys/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /PhotoToys/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /PhotoToys/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /PhotoToys/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /PhotoToys/Assets/PhotoToys.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/PhotoToys.ico -------------------------------------------------------------------------------- /PhotoToys/Assets/PhotoToys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/PhotoToys.png -------------------------------------------------------------------------------- /PhotoToys/Assets/PhotoToys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/PhotoToys.svg -------------------------------------------------------------------------------- /PhotoToys/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /PhotoToys/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /PhotoToys/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /PhotoToys/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /PhotoToys/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /PhotoToys/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /PhotoToys/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /PhotoToys/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /PhotoToys/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /PhotoToys/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /PhotoToys/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /PhotoToys/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /PhotoToys/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /PhotoToys/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /PhotoToys/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /PhotoToys/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /PhotoToys/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /PhotoToys/Custom UI/MatImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Custom UI/MatImage.cs -------------------------------------------------------------------------------- /PhotoToys/Custom UI/SimpleUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Custom UI/SimpleUI.cs -------------------------------------------------------------------------------- /PhotoToys/DynamicLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/DynamicLanguage.cs -------------------------------------------------------------------------------- /PhotoToys/Extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Extension.cs -------------------------------------------------------------------------------- /PhotoToys/Features/AdvancedManipulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Features/AdvancedManipulation.cs -------------------------------------------------------------------------------- /PhotoToys/Features/Analysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Features/Analysis.cs -------------------------------------------------------------------------------- /PhotoToys/Features/BasicManipulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Features/BasicManipulation.cs -------------------------------------------------------------------------------- /PhotoToys/Features/ChannelManipulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Features/ChannelManipulation.cs -------------------------------------------------------------------------------- /PhotoToys/Features/FeatureBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Features/FeatureBase.cs -------------------------------------------------------------------------------- /PhotoToys/Features/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Features/Filter.cs -------------------------------------------------------------------------------- /PhotoToys/Features/ImageGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Features/ImageGenerator.cs -------------------------------------------------------------------------------- /PhotoToys/Fonts/TH Sarabun New Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Fonts/TH Sarabun New Regular.ttf -------------------------------------------------------------------------------- /PhotoToys/Fonts/iskpota.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Fonts/iskpota.ttf -------------------------------------------------------------------------------- /PhotoToys/Icons/Basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Icons/Basic.png -------------------------------------------------------------------------------- /PhotoToys/Icons/Basic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Icons/Basic.svg -------------------------------------------------------------------------------- /PhotoToys/InventoryAndSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/InventoryAndSettings.cs -------------------------------------------------------------------------------- /PhotoToys/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/MainWindow.cs -------------------------------------------------------------------------------- /PhotoToys/MathWrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/MathWrapper.py -------------------------------------------------------------------------------- /PhotoToys/MicaWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/MicaWindow.cs -------------------------------------------------------------------------------- /PhotoToys/MicaWindowWithTitleBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/MicaWindowWithTitleBar.cs -------------------------------------------------------------------------------- /PhotoToys/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Package.appxmanifest -------------------------------------------------------------------------------- /PhotoToys/Parameters/BorderParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Parameters/BorderParameter.cs -------------------------------------------------------------------------------- /PhotoToys/Parameters/ButtonParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Parameters/ButtonParameter.cs -------------------------------------------------------------------------------- /PhotoToys/Parameters/CheckboxParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Parameters/CheckboxParameter.cs -------------------------------------------------------------------------------- /PhotoToys/Parameters/ColorPickerParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Parameters/ColorPickerParameter.cs -------------------------------------------------------------------------------- /PhotoToys/Parameters/DoubleSliderParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Parameters/DoubleSliderParameter.cs -------------------------------------------------------------------------------- /PhotoToys/Parameters/HorizontalStackParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Parameters/HorizontalStackParameter.cs -------------------------------------------------------------------------------- /PhotoToys/Parameters/ImageParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Parameters/ImageParameter.cs -------------------------------------------------------------------------------- /PhotoToys/Parameters/IntSliderParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Parameters/IntSliderParameter.cs -------------------------------------------------------------------------------- /PhotoToys/Parameters/LocationPickerParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Parameters/LocationPickerParameter.cs -------------------------------------------------------------------------------- /PhotoToys/Parameters/ParameterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Parameters/ParameterBase.cs -------------------------------------------------------------------------------- /PhotoToys/Parameters/RectLocationPickerParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Parameters/RectLocationPickerParameter.cs -------------------------------------------------------------------------------- /PhotoToys/Parameters/SelectParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Parameters/SelectParameter.cs -------------------------------------------------------------------------------- /PhotoToys/Parameters/StringTextBoxParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Parameters/StringTextBoxParameter.cs -------------------------------------------------------------------------------- /PhotoToys/Parameters/nLocationsPickerParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Parameters/nLocationsPickerParameter.cs -------------------------------------------------------------------------------- /PhotoToys/PhotoToys.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/PhotoToys.csproj -------------------------------------------------------------------------------- /PhotoToys/PhotoToys.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/PhotoToys.csproj.user -------------------------------------------------------------------------------- /PhotoToys/Properties/PublishProfiles/win10-arm64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Properties/PublishProfiles/win10-arm64.pubxml -------------------------------------------------------------------------------- /PhotoToys/Properties/PublishProfiles/win10-arm64.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Properties/PublishProfiles/win10-arm64.pubxml.user -------------------------------------------------------------------------------- /PhotoToys/Properties/PublishProfiles/win10-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Properties/PublishProfiles/win10-x64.pubxml -------------------------------------------------------------------------------- /PhotoToys/Properties/PublishProfiles/win10-x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Properties/PublishProfiles/win10-x86.pubxml -------------------------------------------------------------------------------- /PhotoToys/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Properties/launchSettings.json -------------------------------------------------------------------------------- /PhotoToys/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/Themes/Generic.xaml -------------------------------------------------------------------------------- /PhotoToys/XAML/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/XAML/App.xaml -------------------------------------------------------------------------------- /PhotoToys/XAML/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/XAML/App.xaml.cs -------------------------------------------------------------------------------- /PhotoToys/XAML/PageForFrame.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/XAML/PageForFrame.xaml -------------------------------------------------------------------------------- /PhotoToys/XAML/PageForFrame.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/XAML/PageForFrame.xaml.cs -------------------------------------------------------------------------------- /PhotoToys/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/PhotoToys/app.manifest -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/Readme.md -------------------------------------------------------------------------------- /Terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetGet99/PhotoToys/HEAD/Terms.md --------------------------------------------------------------------------------