├── .gitignore ├── Cycles ├── SID_Create_Group_Cycles.py ├── SID_Create_Links_Cycles.py ├── SID_Create_Passes_Cycles.py ├── SID_QualityHigh_Cycles.py └── SID_QualitySuper_Cycles.py ├── INSTALL THE ZIP.txt ├── Icons ├── BlenderMarket.png ├── Discord.png ├── Gumroad.png ├── Instagram.png ├── Twitter.png └── Youtube.png ├── LICENSE ├── SID_Create_DenoiserGroup.py ├── SID_Create_Group.py ├── SID_Panel.py ├── SID_QualityStandart.py ├── SID_Settings.py ├── SID_Temporal.py ├── SuperImageDenoiser.py ├── Temporal ├── SID_Create_Temporal_Groups.py ├── SID_Render_Denoise_Temporal_BG.py └── SID_Render_Denoise_Temporal_FG.py ├── __init__.py ├── addon_updater.py ├── addon_updater_ops.py └── create_denoiser.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/.gitignore -------------------------------------------------------------------------------- /Cycles/SID_Create_Group_Cycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/Cycles/SID_Create_Group_Cycles.py -------------------------------------------------------------------------------- /Cycles/SID_Create_Links_Cycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/Cycles/SID_Create_Links_Cycles.py -------------------------------------------------------------------------------- /Cycles/SID_Create_Passes_Cycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/Cycles/SID_Create_Passes_Cycles.py -------------------------------------------------------------------------------- /Cycles/SID_QualityHigh_Cycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/Cycles/SID_QualityHigh_Cycles.py -------------------------------------------------------------------------------- /Cycles/SID_QualitySuper_Cycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/Cycles/SID_QualitySuper_Cycles.py -------------------------------------------------------------------------------- /INSTALL THE ZIP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/INSTALL THE ZIP.txt -------------------------------------------------------------------------------- /Icons/BlenderMarket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/Icons/BlenderMarket.png -------------------------------------------------------------------------------- /Icons/Discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/Icons/Discord.png -------------------------------------------------------------------------------- /Icons/Gumroad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/Icons/Gumroad.png -------------------------------------------------------------------------------- /Icons/Instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/Icons/Instagram.png -------------------------------------------------------------------------------- /Icons/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/Icons/Twitter.png -------------------------------------------------------------------------------- /Icons/Youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/Icons/Youtube.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/LICENSE -------------------------------------------------------------------------------- /SID_Create_DenoiserGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/SID_Create_DenoiserGroup.py -------------------------------------------------------------------------------- /SID_Create_Group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/SID_Create_Group.py -------------------------------------------------------------------------------- /SID_Panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/SID_Panel.py -------------------------------------------------------------------------------- /SID_QualityStandart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/SID_QualityStandart.py -------------------------------------------------------------------------------- /SID_Settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/SID_Settings.py -------------------------------------------------------------------------------- /SID_Temporal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/SID_Temporal.py -------------------------------------------------------------------------------- /SuperImageDenoiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/SuperImageDenoiser.py -------------------------------------------------------------------------------- /Temporal/SID_Create_Temporal_Groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/Temporal/SID_Create_Temporal_Groups.py -------------------------------------------------------------------------------- /Temporal/SID_Render_Denoise_Temporal_BG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/Temporal/SID_Render_Denoise_Temporal_BG.py -------------------------------------------------------------------------------- /Temporal/SID_Render_Denoise_Temporal_FG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/Temporal/SID_Render_Denoise_Temporal_FG.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/__init__.py -------------------------------------------------------------------------------- /addon_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/addon_updater.py -------------------------------------------------------------------------------- /addon_updater_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/addon_updater_ops.py -------------------------------------------------------------------------------- /create_denoiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PidgeonTools/SuperImageDenoiser/HEAD/create_denoiser.py --------------------------------------------------------------------------------