AVSCube

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
(External Links: add link)
 
(25 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{FilterCat5|External_filters|Plugins|Plugins_x64|Adjustment_filters|Levels_and_Chroma_filters}}
+
{{FilterCat6|External_filters|Plugins|Plugins_x64|Adjustment_filters|Levels_and_Chroma_filters|Deep_color_tools}}
 
{{Filter3
 
{{Filter3
 
|{{Author/Donald Graft}}
 
|{{Author/Donald Graft}}
|v1.1
+
|v1.4
|3=[http://rationalqm.us/hdr/avscube_1.1.rar avscube_1.1.rar]
+
|3=[https://rationalqm.us/cube/AVSCube_test.rar avscube_1.4.zip]
 
|4=Adjustment Filters
 
|4=Adjustment Filters
 
|5=Open source
 
|5=Open source
Line 9: Line 9:
 
}}
 
}}
 
== Description ==
 
== Description ==
[[AviSynth+]] plugin to load and apply [https://en.wikipedia.org/wiki/3D_lookup_table 3D LUTs] to a clip. Ported from VapourSynth [https://github.com/sekrit-twc/timecube timecube] plugin.<br>
+
[[AviSynth+]] plugin to load and apply Adobe [https://en.wikipedia.org/wiki/3D_lookup_table 3D LUTs] to a clip. Ported from VapourSynth [https://github.com/sekrit-twc/timecube timecube] plugin.<br>
 
<br>
 
<br>
  
Line 19: Line 19:
 
== [[Script variables|Syntax and Parameters]] ==
 
== [[Script variables|Syntax and Parameters]] ==
  
:{{Template:FuncDef|Cube (clip, string "cube", int "cpu", bool "fullrange")}}
+
:{{Template:FuncDef|Cube (clip, string "cube", int "cpu", int "interp", int "fullrange")}}
 
<br>
 
<br>
 
::{{Par2| |clip| }}
 
::{{Par2| |clip| }}
Line 30: Line 30:
 
:::cpu: default INT_MAX, which selects best SIMD.
 
:::cpu: default INT_MAX, which selects best SIMD.
 
:::*0 : SIMD_NONE
 
:::*0 : SIMD_NONE
:::*1 : SIMD_SSE42
+
:::*1 : SIMD_SSE41
 
:::*2 : SIMD_AVX2
 
:::*2 : SIMD_AVX2
 +
:::*3 : SIMD_AVX512
 
<br>
 
<br>
::{{Par2|fullrange|bool|true}}
+
::{{Par2|interp|int|0}}
:::*false : limited range
+
:::interp: default 0 selects the worse interpolation method for backwards compatibility reasons.
:::*true : full range
+
:::*0 : trilinear interpolation
 +
:::*1 : tetrahedral interpolation
 +
<br>
 +
<br>
 +
::{{Par2|fullrange|int|1}}
 +
:::*0 : limited range
 +
:::*1 : full range
 +
<br>
 +
 
 +
== Trilinear vs Tetrahedral ==
 +
Trilinear interpolation is used by default only for historical reasons.
 +
<br>
 +
When Cube() was first developed it only had one interpolation method, namely trilinear.
 +
<br>
 +
Although this was far from ideal as it can produce ripples, plenty of people used it (as they were using this function), therefore when tetrahedral was introduced it was agreed to leave trilinear as default to allow people to still obtain the same results when upgrading the version.
 +
<br>
 +
However, in practice, tetrahedral should always be used and it's the suggested method.
 +
<br>
 +
<br>
 +
Source (left) - Trilinear (center) - Tetrahedral (right):
 +
<br>
 +
[[File:Trilinear_vs_Tetrahedral_Interpolation.png]]
 +
<br>
 +
<br>
 +
As you can see, in the right hand side waveform (tetrahedral) there are no ripples, unlike the ones you can see in the trilinear interpolation at the center.
 
<br>
 
<br>
  
Line 44: Line 69:
 
  [[Convert|ConvertToYUV420()]]
 
  [[Convert|ConvertToYUV420()]]
  
Apply 3D LUT to HDR10 PQ clip obtained from [[DGSource]]():
+
Apply 3D LUT to HDR10 PQ clip obtained from [[DGSource]]() to go to HLG:
 
+
  DGSource("THE GREAT WALL.dgi", fulldepth=true)
+
# Source
  [[Avsresize#z_ConvertFormat|z_ConvertFormat]](pixel_type="RGBP16", colorspace_op="2020ncl:st2084:2020:l=>rgb:linear:2020:f", dither_type="none")
+
  DGSource("THE GREAT WALL.dgi")<br>
  Cube("...\test.cube")
+
# From Limited Range 10bit YUV420 to 16bit Full Range Planar RGB
  z_ConvertFormat(pixel_type="YUV420P16", colorspace_op="rgb:linear:2020:f=>2020ncl:st2084:2020:l", dither_type="none")
+
  [[Avsresize#z_ConvertFormat|z_ConvertFormat]](pixel_type="RGBP16", colorspace_op="2020:st2084:2020:limited=>rgb:st2084:2020:full", dither_type="error_diffusion")<br>
 +
# Load and apply [https://github.com/FranceBB/LinearTransformation "PQ_to_HLG.cube"] to go from PQ to HLG
 +
  Cube("PQ_to_HLG.cube", fullrange=1, interp=1)<br>
 +
  # From 16bit Full Range Planar RGB to Limited Range 10bit YUV420 with dithering
 +
[[Avsresize#z_ConvertFormat|z_ConvertFormat]](pixel_type="YUV420P10", colorspace_op="rgb:std-b67:2020:full=>2020:std-b67:2020:limited", dither_type="error_diffusion")
  
 
<br>
 
<br>
Line 55: Line 84:
 
== Changelog ==
 
== Changelog ==
 
  Version        Date            Changes
 
  Version        Date            Changes
 +
v1.4            2023/07/12      - Added tetrahedral interpolation.
 +
v1.3            2022/01/21      - Updated to timecube version 1.3 base code.
 +
                                - Added frame properties passthrough.
 +
                                - Updated the help document.
 
  v1.1            2019/01/25      - Rather than upgrade to r2a I ported the fullrange fix only.
 
  v1.1            2019/01/25      - Rather than upgrade to r2a I ported the fullrange fix only.
 
  v1.0            2018/08/16      - Initial release
 
  v1.0            2018/08/16      - Initial release
 
<br>
 
<br>
 +
 
== Archived Downloads ==
 
== Archived Downloads ==
 
{| class="wikitable" border="1"; width="600px"
 
{| class="wikitable" border="1"; width="600px"
Line 64: Line 98:
 
!!width="150px"| Download
 
!!width="150px"| Download
 
!!width="150px"| Mirror
 
!!width="150px"| Mirror
 +
|-
 +
!v1.4
 +
|[https://rationalqm.us/cube/AVSCube_test.rar avscube_1.4.zip]
 +
|-
 +
!v1.3
 +
|[http://rationalqm.us/hdr/avscube_1.3.zip avscube_1.3.zip]
 +
|[https://web.archive.org/web/20220129020339if_/http://rationalqm.us/hdr/avscube_1.3.zip avscube_1.3.zip]
 
|-
 
|-
 
!v1.1
 
!v1.1
Line 77: Line 118:
 
==External Links ==
 
==External Links ==
 
*[https://forum.doom9.org/showthread.php?t=176091 Doom9 Forum] - FranceBB LUT Collection  
 
*[https://forum.doom9.org/showthread.php?t=176091 Doom9 Forum] - FranceBB LUT Collection  
 +
*[https://github.com/TomArrow/ColorMatch3D/releases GitHub] - ColorMatch3D - tool that creates a .cube 3D LUT that matches colors of a reference image with a different grading. [https://forum.fanres.com/thread-3609.html Discussion thread]
 +
*[https://github.com/wswartzendruber/hlg-tools GitHub] - hlg-tools - this tool suite consists of the basics needed to generate 3D LUTs that will convert video streams from Perceptual Quantizer (PQ) HDR into Hybrid-Log Gamma (HLG) HDR. [https://forum.doom9.org/showthread.php?t=182499 Discussion thread], [https://forum.doom9.org/showthread.php?t=181282 original discussion thread]
 +
*[https://rationalqm.us/misc/AMPAS-CLF-LUT-pseudoCode.pdf AMPAS] CLF LUT PseudoCode - Walkthrough on different interpolation methods
 
<br>
 
<br>
 
<br>
 
<br>
 
-----------------------------------------------
 
-----------------------------------------------
 
'''Back to [[External_filters#Levels_and_Chroma|External Filters]] &larr;'''
 
'''Back to [[External_filters#Levels_and_Chroma|External Filters]] &larr;'''

Latest revision as of 10:37, 13 July 2023

Abstract
Author Donald Graft
Version v1.4
Download avscube_1.4.zip
Category Adjustment Filters
License Open source
Discussion Doom9 Thread

Contents

[edit] Description

AviSynth+ plugin to load and apply Adobe 3D LUTs to a clip. Ported from VapourSynth timecube plugin.

[edit] Requirements


[edit] Syntax and Parameters

Cube (clip, string "cube", int "cpu", int "interp", int "fullrange")


clip   =
Input clip; the filter receives and delivers the RGBP16 color space.


string  cube = ""
Full path of the 3D LUT file. This must be an Adobe *.cube file.


int  cpu = INT_MAX
cpu: default INT_MAX, which selects best SIMD.
  • 0 : SIMD_NONE
  • 1 : SIMD_SSE41
  • 2 : SIMD_AVX2
  • 3 : SIMD_AVX512


int  interp = 0
interp: default 0 selects the worse interpolation method for backwards compatibility reasons.
  • 0 : trilinear interpolation
  • 1 : tetrahedral interpolation



int  fullrange = 1
  • 0 : limited range
  • 1 : full range


[edit] Trilinear vs Tetrahedral

Trilinear interpolation is used by default only for historical reasons.
When Cube() was first developed it only had one interpolation method, namely trilinear.
Although this was far from ideal as it can produce ripples, plenty of people used it (as they were using this function), therefore when tetrahedral was introduced it was agreed to leave trilinear as default to allow people to still obtain the same results when upgrading the version.
However, in practice, tetrahedral should always be used and it's the suggested method.

Source (left) - Trilinear (center) - Tetrahedral (right):
Trilinear vs Tetrahedral Interpolation.png

As you can see, in the right hand side waveform (tetrahedral) there are no ripples, unlike the ones you can see in the trilinear interpolation at the center.

[edit] Examples

Apply 3D LUT to clip obtained from BlankClip:

BlankClip(pixel_type="RGBP16", color=$ff0000)
Cube("...\test.cube")
ConvertToYUV420()

Apply 3D LUT to HDR10 PQ clip obtained from DGSource() to go to HLG:

# Source
DGSource("THE GREAT WALL.dgi")
# From Limited Range 10bit YUV420 to 16bit Full Range Planar RGB z_ConvertFormat(pixel_type="RGBP16", colorspace_op="2020:st2084:2020:limited=>rgb:st2084:2020:full", dither_type="error_diffusion")
# Load and apply "PQ_to_HLG.cube" to go from PQ to HLG Cube("PQ_to_HLG.cube", fullrange=1, interp=1)
# From 16bit Full Range Planar RGB to Limited Range 10bit YUV420 with dithering z_ConvertFormat(pixel_type="YUV420P10", colorspace_op="rgb:std-b67:2020:full=>2020:std-b67:2020:limited", dither_type="error_diffusion")


[edit] Changelog

Version         Date            Changes
v1.4            2023/07/12      - Added tetrahedral interpolation.
v1.3            2022/01/21      - Updated to timecube version 1.3 base code.
                                - Added frame properties passthrough.
                                - Updated the help document.
v1.1            2019/01/25      - Rather than upgrade to r2a I ported the fullrange fix only.
v1.0            2018/08/16      - Initial release


[edit] Archived Downloads

Version Download Mirror
v1.4 avscube_1.4.zip
v1.3 avscube_1.3.zip avscube_1.3.zip
v1.1 avscube_1.1.rar avscube_1.1.rar
v1.0 avscube_1.0.rar avscube_1.0.rar


[edit] External Links

  • Doom9 Forum - FranceBB LUT Collection
  • GitHub - ColorMatch3D - tool that creates a .cube 3D LUT that matches colors of a reference image with a different grading. Discussion thread
  • GitHub - hlg-tools - this tool suite consists of the basics needed to generate 3D LUTs that will convert video streams from Perceptual Quantizer (PQ) HDR into Hybrid-Log Gamma (HLG) HDR. Discussion thread, original discussion thread
  • AMPAS CLF LUT PseudoCode - Walkthrough on different interpolation methods




Back to External Filters

Personal tools