diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-02-05 10:28:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-05 10:28:07 +0100 |
commit | df1724470d1cff4f67aeb4c0d039114373aeb001 (patch) | |
tree | 0208cb7c3fc85f52a30f534610136d43d24ca932 /doc/classes | |
parent | 2e44778cd2f3d004bac80c3cd3935a8835936e2c (diff) | |
parent | 419b342a9a716426159f7a51ae17390386ecc884 (diff) |
Merge pull request #49775 from fire/faster-cvtt
Faster CVTT by lowering default quality
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Image.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/classes/Image.xml b/doc/classes/Image.xml index 60d4b664d2..2f4a0079c9 100644 --- a/doc/classes/Image.xml +++ b/doc/classes/Image.xml @@ -88,6 +88,15 @@ <description> </description> </method> + <method name="compute_image_metrics"> + <return type="Dictionary" /> + <argument index="0" name="compared_image" type="Image" /> + <argument index="1" name="use_luma" type="bool" /> + <description> + Compute image metrics on the current image and the compared image. + The dictionary contains [code]max[/code], [code]mean[/code], [code]mean_squared[/code], [code]root_mean_squared[/code] and [code]peak_snr[/code]. + </description> + </method> <method name="convert"> <return type="void" /> <argument index="0" name="format" type="int" enum="Image.Format" /> |