imagedatastore grayscale to rgb for maskRcnn
4 次查看(过去 30 天)
显示 更早的评论
- I have several CT images : ct1, ct2, ct3.....
- Each CT contains of aprox 90 2D grayscale images/planes
- MaskRCnn Requires RGB Input
How do I looup through each CT and save each image within a CT as own image in the datastore?
I also need it as RGB image, where only one plane is set with the grayscale and the reast to 0 or 1.
Hope someone can help me!
0 个评论
采纳的回答
KALYAN ACHARJYA
2022-4-11
编辑:KALYAN ACHARJYA
2022-4-11
You may convert the gray image to 3D array planes
rgb_gray=cat(3,gray_image,gray_image,gray_image);
Just do for one images, for all images can be done using call one individual images at a time using loop. There are so many simmilar threads are available.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Computer Vision with Simulink 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!