Replies: 4 comments 2 replies
-
Alpine linux uses ImageMagick 7.1.1 and lists CUBE in convert -list format , but still gives an error message: convert in.jpg -clut RED_FilmBias_Rec2020_N-Log_to_Rec709_BT1886.cube out.jpgconvert: image sequence is required |
Beta Was this translation helpful? Give feedback.
-
Try
to convert the cube LUT to an 8 level HALD LUT image. Then
Use magick in place of convert on IM 7. See also https://usage.imagemagick.org/color_mods/#hald-clut |
Beta Was this translation helpful? Give feedback.
-
I had seen hints in the web, but it didn't work under Ubuntu. (It works under Alpine.)
|
Beta Was this translation helpful? Give feedback.
-
What is "normal LUTs", if not .cube files? Cube files are the most common, or at least one of the most common LUT formats. |
Beta Was this translation helpful? Give feedback.
-
Hi,
I am looking for a way to apply a LUT (preferrably in .cube format) to a single image from command line/scripts, mainly to visualize the effect of a LUT table. Unfortunately, image magick's documentation is not exactly talkative about this,
https://imagemagick.org/script/command-line-options.php#clut
https://usage.imagemagick.org/color_mods/#clut
I would have expect that something like
convert in.jpg -clut RED_Achromic_Rec2020_N-Log_to_Rec709_BT1886.cube out.png
But under Ubuntu 24.04 (still with ImageMagick 6.9.12-98) there's an error message:
% convert in.jpg -clut RED_Achromic_Rec2020_N-Log_to_Rec709_BT1886.cube out.png
convert-im6.q16: image sequence is required
-clut' @ error/mogrify.c/MogrifyImageList/7921. convert-im6.q16: no decode delegate for this image format
CUBE' @ error/constitute.c/ReadImage/581.convert-im6.q16: no images defined `out.png' @ error/convert.c/ConvertImageCommand/3234.
Since there (at least in the 7.x) versions is a coders/cube.c , I would have expected to find cube in the output of
convert -list format
but it isn't listed.
So my questions are:
best regards
Beta Was this translation helpful? Give feedback.
All reactions