Skip to content
Advertisement

NumPy + PyTorch Tensor assignment

lets assume we have a tensor representing an image of the shape (910, 270, 1) which assigned a number (some index) to each pixel with width=910 and height=270.

We also have a numpy array of size (N, 3) which maps a 3-tuple to an index.

I now want to create a new numpy array of shape (920, 270, 3) which has a 3-tuple based on the original tensor index and the mapping-3-tuple-numpy array. How do I do this assignment without for loops and other consuming iterations?

This would look simething like:

JavaScript

Advertisement

Answer

Assuming you have _colors, and indexed_image. Something that ressembles to:

JavaScript

A common way of converting a dense map to a RGB map is to loop over the label set:

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