Compute a new map where each element is obtained from converter

C# | Visual Basic | Visual C++ |
public Map<TColor, D2> Convert<D2>( Toolbox..::.Func<TDepth, double, double, D2> converter )
Public Function Convert(Of D2) ( _ converter As Toolbox..::.Func(Of TDepth, Double, Double, D2) _ ) As Map(Of TColor, D2)
public: generic<typename D2> Map<TColor, D2>^ Convert( Toolbox..::.Func<TDepth, double, double, D2>^ converter )

- D2
- The depth of the new Map

- converter (Toolbox..::.Func<(Of <(TDepth, Double, Double, D2>)>))
- The converter that use the element from this map and the location of each pixel as input to compute the result

A new map where each element is obtained from converter