Skip to content

Commit

Permalink
Introduced tetrahedral interpolation and changed fullrange parameter
Browse files Browse the repository at this point in the history
fullrange parameter is now an integer and no longer a boolean.
tetrahedral interpolation is now used instead of trilinear.
  • Loading branch information
FranceBB authored Sep 12, 2023
1 parent 4348670 commit 684e7a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LinearTransformation.avsi
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Function LinearTransformation(clip clp, string "Input", string "Output") {

Assert(CubeStr != "","LinearTransformation: Transformation not supported, please choose a valid input and output Input='"+Input+"' Output='"+Output+"'" )

Cube(clp, myPath + CubeStr + ".cube", fullrange=true).propset("_Matrix", my_Matrix).propset("_Transfer", my_transfer)
Cube(clp, myPath + CubeStr + ".cube", interp=1, fullrange=1).propset("_Matrix", my_Matrix).propset("_Transfer", my_transfer)

out = Last.ConvertBits(bits=bpc, dither=1)

Expand Down

0 comments on commit 684e7a7

Please sign in to comment.