Skip to content
Advertisement

Speeding up applying mapping to an image

I’m trying to convert an RGB to a gray-value image of the same size (with values between 0 and 1). The mapping is done by a dictionary called MASK_LUT_IDX which takes in a tuple (RGB) and returns the corresponding value. The current code is 2x faster than before, but still takes 1.5s (according to timeit), which is proving to be an issue.

JavaScript

Is there a better way of converting this? I’ve looked into the palette functionalities, but it doesn’t seem to quite fit my needs.

Advertisement

Answer

Thanks to Cris Luengo’s help, here is a sped up version of the function.

JavaScript

Where FASTER_MASK_LUT_IDX is a 3d tensor set given by

JavaScript

RGB_CLASS_MAPPING maps an RGB value to a class, which was unrolled using enumerate to create CLASS_IDX and CLASS_LABELS using a list comprehension.

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement