Log in

View Full Version : CCD - Camcorder Color Denoise (Chroma spatial denoiser) - AVISynth+ version


Pages : 1 [2]

kedautinh12
6th December 2022, 16:09
Just use chromanr from ffmpeg, it does not modify Y plane, and does not do color conversion to/from rgb.

You can try CCD avs+ ver:
https://github.com/Dogway/Avisynth-Scripts/blob/0231e9ad341ecdaa76932686f78fc65c2a106b98/EX%20mods/DeblockPack.avsi#L227

richardpl
7th December 2022, 11:35
chromanr is faster, have more features and simply better.

Mounir
8th December 2022, 11:56
for the record i use ccd since many years, was one of the first aknowledging its wonders. However, 2 problems with it: rgb only and spatial only. Since then i've found that the script below work better in most cases than ccd

AVISource
assumetff()
ConvertToYV16(interlaced=true)
orig=last
ev=orig.assumetff().separatefields().selecteven()
od=orig.assumetff().separatefields().selectodd()
ev
ue_chroma = UToY(ev).blur(0,1.5).binomialblur(5).ttempsmooth(maxr=6,lthresh=150, strength=6).KNLMeansCL(d=3,a=8,s=2,h=6)
ve_chroma = VToY(ev).blur(0,1.5).binomialblur(5).ttempsmooth(maxr=6,lthresh=150, strength=6).KNLMeansCL(d=3,a=8,s=2,h=6)
YToUV(ue_chroma, ve_chroma)
MergeLuma(ev)
ev_filtered=last
od
uo_chroma = UToY(od).blur(0,1.5).binomialblur(5).ttempsmooth(maxr=6,lthresh=150, strength=6).KNLMeansCL(d=3,a=8,s=2,h=6)
vo_chroma = VToY(od).blur(0,1.5).binomialblur(5).ttempsmooth(maxr=6,lthresh=150, strength=6).KNLMeansCL(d=3,a=8,s=2,h=6)
YToUV(uo_chroma, vo_chroma)
MergeLuma(od)
od_filtered=last
interleave(ev_filtered,od_filtered)
assumefieldbased().assumetff().weave()
Note KNLMeansCL and binomial blur can be removed for more chroma sharpness imo, depending on the video you're dealing with.

NLPguy
8th June 2023, 22:35
Updated fixed version CCD V1.9 (Sources + Binaries)

https://mega.nz/file/GsYlQayQ#LO7qq8hOmWXlglzlvFY-AlWX6F5hqKuQRCamtUe0lO4


Hi zybex,

Unfortunately, this Mega download is not available anymore.


Please, do you (or any other user here on the forum) have this CCD V1.9 (Sources + Binaries) still available to download?


And, does anyone know if CCD 1.9 works in 64bit on AviSynth+ or AviSynth Plus?


Thank you so much in advance!

Reel.Deel
8th June 2023, 23:02
Hi zybex,

Unfortunately, this Mega download is not available anymore.


Please, do you (or any other user here on the forum) have this CCD V1.9 (Sources + Binaries) still available to download?

Temporary: https://files.videohelp.com/u/223002/CCD_1.9_Sources_Binaries.zip
Archived: https://web.archive.org/web/20220411110113if_/https://files.videohelp.com/u/223002/CCD_1.9_Sources_Binaries.zip
v1.9 with source from the author: http://acobw.narod.ru/file/ccd.zip

Edit: btw v2.0 is out: http://acobw.narod.ru/ - but no source code.

ABurns
8th May 2024, 02:25
Still no AVS version of this? I would have thought there would be a lot of interest in this. I may have to get on Upwork and hire somebody to do it if nobody steps up soon.

kedautinh12
8th May 2024, 09:06
Still no AVS version of this? I would have thought there would be a lot of interest in this. I may have to get on Upwork and hire somebody to do it if nobody steps up soon.

This plugin already had avs+ script version
https://github.com/Dogway/Avisynth-Scripts/blob/0231e9ad341ecdaa76932686f78fc65c2a106b98/EX%20mods/DeblockPack.avsi#L227