Log in

View Full Version : how to remove moire?


tuqc
29th March 2022, 14:56
any chance?

Reel.Deel
29th March 2022, 15:04
Start off by at least posting a sample. If not, the best thing you can do is search avisynth "moire" in Google and you will get plenty of results.

tuqc
29th March 2022, 15:22
Start off by at least posting a sample. If not, the best thing you can do is search avisynth "moire" in Google and you will get plenty of results.

https://drive.google.com/file/d/1bz41g9LdEPAc9Fb6-7xXIxmZL1I3lcwI/view?usp=sharing
thank u

Reel.Deel
29th March 2022, 15:31
https://drive.google.com/file/d/1bz41g9LdEPAc9Fb6-7xXIxmZL1I3lcwI/view?usp=sharing
thank u

"You need access
Ask for access, or switch to an account with access."

Change the settings to anyone with a link.

tuqc
29th March 2022, 15:41
"You need access
Ask for access, or switch to an account with access."

Change the settings to anyone with a link.

done,:)

poisondeathray
29th March 2022, 16:02
fieldmatch without pp, or use overrides on sections with thin horizontal lines

MPEG2Source("test.d2v")
TFM(pp=0)
TDecimate()

tuqc
29th March 2022, 16:12
fieldmatch without pp, or use overrides on sections with thin horizontal lines

MPEG2Source("test.d2v")
TFM(pp=0)
TDecimate()

need remove moire,not ivtc,thank u:)

poisondeathray
29th March 2022, 16:14
need remove moire,not ivtc,thank u:)

The moire is caused by PP during field matching

Combing is detected (false combing by thin horizontal lines on the shirt, and it's being deinterlaced)

default
https://i.postimg.cc/GhWBxMRV/default.png

pp=0
https://i.postimg.cc/HxrctFJG/pp-0.png


Or maybe you're defining "moire" differently ? What are you referring to ?

real.finder
29th March 2022, 16:29
CTELECINE with mode 2 should deal with moire cases https://forum.doom9.org/showthread.php?t=183823

something like this

CTelecine(mode=2)
#CPostProcessing()
CDecimate()

tuqc
29th March 2022, 16:36
fieldmatch without pp, or use overrides on sections with thin horizontal lines

MPEG2Source("test.d2v")
TFM(pp=0)
TDecimate()

pp=0 looks ok! thanks a lot

and it seem need to do deflicker.what can I do like this sample?

tuqc
29th March 2022, 16:55
CTELECINE with mode 2 should deal with moire cases https://forum.doom9.org/showthread.php?t=183823

something like this

CTelecine(mode=2)
#CPostProcessing()
CDecimate()


ctelecine.txt not found.I need into it,thank u pal:)

Ceppo
29th March 2022, 20:03
To get correct field matching with moire, you need to do something like that:

1st pass: (run analyse pass with AvspMod, CTelecine.txt is created in the same folder of the avs file)

CTelecine(mode=2,dClip=CFieldSofter(12),write=true)


2nd pass:

CTelecine(inputTxt=true)
CDecimate(error=false)


Based on your needs you might want to use CFieldDeBlend after CTelecine if your source has field blending, or CPostProcessing if you have leftover interlaced frames.

If something is not clear ask away.