How to calculate mid value of RGB image in matlab?
4 views (last 30 days)
Show older comments
I did
RGB=cast(imread('Lenna.tiff'),'double');
c= mid(RGB(:));
And I got an error saying "Undefined function 'mid' for input arguments of type 'double'"
Answers (1)
Walter Roberson
on 29 Sep 2016
If you are referring back to that rgb2hsv and hsv2rgb C++ code you posted the link to, https://bitbucket.org/chernov/colormath/src/012a5ae28033dc8e91ec66ec349c95d81caddb71/colormath/hsv.cpp?at=default&fileviewer=file-view-default, then beware.
In the first of the routines there, rgb2hsv, mid is used as a variable that holds a copy of the value of one of the three color components. If you were to vectorize the code, then mid should be an array of values, not a function.
In the second of the routines there, hsv2rgb, mid is used as a pointer to one of the output values r, g, b, and after all the rest of the calculations, the value at that pointer is modified. If you were to vectorize the code, then you would need to make mid an array of indicators of which of the three values is to be modified for that location. The easiest way to do that would be to put your rgb together into a 3D array and then have mid be indices into the third dimension.
0 Comments
See Also
Categories
Find more on Whos in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!