Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/image.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Ulyanov <dmitry.ulyanov.msu@gmail.com>2016-05-03 09:30:56 +0300
committerDmitry Ulyanov <dmitry.ulyanov.msu@gmail.com>2016-05-03 09:30:56 +0300
commit2aab35acef8bd773b083c14ac080ef07ae6433cf (patch)
treef2a9b9a10da886c5b1ba5f7ec173337da463afe6
parent193477ef8e92f36b57324690c154fc75996761dc (diff)
Add missing lab2rgb doc
-rw-r--r--doc/colorspace.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/colorspace.md b/doc/colorspace.md
index d270718..12c37d6 100644
--- a/doc/colorspace.md
+++ b/doc/colorspace.md
@@ -9,6 +9,12 @@ Converts a `src` RGB image to [Lab](https://en.wikipedia.org/wiki/Lab_color_spac
If `dst` is provided, it is used to store the output
image. Otherwise, returns a new `res` Tensor.
+<a name="image.lab2rgb"></a>
+### [res] image.lab2rgb([dst,] src) ###
+Converts a `src` [Lab](https://en.wikipedia.org/wiki/Lab_color_space) image to RGB.
+If `dst` is provided, it is used to store the output
+image. Otherwise, returns a new `res` Tensor.
+
<a name="image.rgb2yuv"></a>
### [res] image.rgb2yuv([dst,] src) ###
Converts a RGB image to YUV. If `dst` is provided, it is used to store the output