Hi! I having the problem to view an 3D Image. Consider the image array as:
Image[:, :, 1] = 0.0031054 0.00385944 0.00372917 0.000612832
0.0020886 0.000983508 0.000783196 0.000259077
0.00157612 0.0017428 0.00129955 0.00016654
0.00103882 0.000802456 0.00114514 0.000242924
Image[:, :, 2] = 0.0031054 0.00385944 0.00372917 0.000612832
0.0020886 0.000983508 0.000783196 0.000259077
0.00157612 0.0017428 0.00129955 0.00016654
0.00103882 0.000802456 0.00114514 0.000242924
Image[:, :, 3] = 0.0031054 0.00385944 0.00372917 0.000612832
0.0020886 0.000983508 0.000783196 0.000259077
0.00157612 0.0017428 0.00129955 0.00016654
0.00103882 0.000802456 0.00114514 0.000242924
I need to see this image colored, combine 3 channel in one image. When i use img = RGB.(Image) function to convert and imshow(img) to see, it show the 3 channel separately. Thanks!