Advertisement
junh1024

INverse kernel c2k test

Apr 20th, 2013
1,088
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nagios 3.05 KB | None | 0 0
  1. setmemorymax(800)
  2. dss2("[ReinForce] Chuunibyou demo Koi ga Shitai! - 02 (BDRip 1920x1080 x264 FLAC).mkv")#955.5p anime. see anibin.blogspot.ca
  3.  
  4. # w=1616
  5. # h=912
  6.  
  7. #FR 8952,9133
  8.  
  9. w=1680
  10. h=944
  11. spl=spline36resize(w,h)
  12. # debilinear(w,h)
  13.  
  14.  
  15. #OPTION1 (myoption) slow, but quite good quality imo. somewhat safe to stick on 1080p OPED. 8fps without hqdr
  16.  
  17. # src=last
  18. # uv=src.blackmanresize(w,h)
  19. # y=src.debilineary(w,h)
  20. # mergechroma(y,uv)
  21. # MT("""hqdering(supersampling=2,strength=128)""",2,overlap=16)
  22.  
  23. #OPTION2 thewebchat's thingy. fast. doesn't really work imo. not reccommended.
  24.  
  25. # src=last
  26. # uv=src.blackmanresize(w,h)
  27. # y=mydebilineary(last,w,h,4)
  28. # mergechroma(y,uv)
  29. # http://pastebin.com/ei84dny0
  30. # twc usually uses thr = 4, but i needed to go up to 8 to aviod artefacts on nekomon OPED, and by now, there is no debilinear sharpness/darkening left on sakurasou. might be ok for main, not ok for OPED?
  31.  
  32. #OPTION3 Tada no Snob. fast. some artefacts on OPED?
  33.  
  34. # http://recensubshq.forumfree.it/?t=64839203
  35. # http://www.animemusicvideos.org/forum/viewtopic.php?f=44&t=107160
  36.  
  37. # mask = MaskDetail(last,w,h,cutoff =70)
  38. # Dither_convert_8_to_16()
  39. # big=last
  40. # DebilinearY(w,h,lsb_inout=true)
  41. # noalias=big.Dither_resize16(w,h,kernel="blackmanminlobe", taps=5)
  42. # Dither_merge16_8(noalias,last, mask.invert(), u=1,v=1)
  43. # MergeChroma(noalias)
  44. # DitherPost(mode=6)
  45.  
  46. #OPTION4. kernel inversion. veryfast (if not using hqdr). slight artefacts on OPED. 10fps without hqdr
  47.  
  48. # Dither_convert_8_to_16()
  49. # Dither_resize16(w,h,invks =true ,kernel="bicubic ")
  50. # DitherPost(mode=6)
  51.  
  52. # MT("""hqdering(supersampling=2,strength=64)""",2,overlap=16)
  53.  
  54.  
  55. #OPTN5 does nothing much?
  56.  
  57.  
  58. # Dither_convert_8_to_16()
  59. # Dither_resize16(w,h,invks =true ,kernel="bicubic ")
  60. # DitherPost(mode=6)
  61. # src=last
  62. # Dither_convert_8_to_16()
  63. # mask = MaskDetail(src,w,h,cutoff=222)
  64. # big=last
  65. # Dither_resize16(w,h,invks =true ,kernel="bicubic")
  66. # noalias=big.Dither_resize16(w,h,kernel="blackmanminlobe", taps=5)
  67. # Dither_merge16_8(noalias,last, mask.invert(), u=1,v=1)
  68. # MergeChroma(noalias)
  69. # DitherPost(mode=6)
  70.  
  71. #OPTN6 really fast but makes lines really sharp, almost aliased sharp.
  72. #repair idea of torchlight, #ane
  73.  
  74. # debilinear(w,h).repair(spl)
  75.  
  76. #OPTN7 really fast, not as sharp/aliased as above
  77. # Dither_convert_8_to_16()
  78. # Dither_resize16(w,h,invks =true ,kernel="bicubic ")
  79. # DitherPost(mode=6)
  80. # repair(spl)
  81.  
  82. #OPTN8 still fast, repair at half strength
  83. # Dither_convert_8_to_16()
  84. # Dither_resize16(w,h,invks =true ,kernel="bicubic ")
  85. # DitherPost(mode=6)
  86. # mt_average(last,repair(spl))
  87.  
  88. #IGNORE THIS
  89.  
  90. # MT("""
  91. # super = MSuper(pel=2, sharp=1)
  92. # backward_vec2 = super.MAnalyse(isb = true, delta = 2, overlap=4)
  93. # backward_vec1 = super.MAnalyse(isb = true, delta = 1, overlap=4)
  94. # forward_vec1 = super.MAnalyse(isb = false, delta = 1, overlap=4)
  95. # forward_vec2 = super.MAnalyse(isb = false, delta = 2, overlap=4)
  96. # MDegrain2(super, backward_vec1,forward_vec1,backward_vec2,forward_vec2,thSAD=180)
  97. # """,2,overlap=16)
  98.  
  99. # mt_makediff(a,b)
  100.  
  101. histogram(mode="levels")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement