How do I get the matrix of gray levels from the "from Video Device" in Simulink
1 次查看(过去 30 天)
显示 更早的评论
Hi.
I want to open the camera that will work on grayscale with the help of the "from Video Device" in Simulink and extract from each frame its I matrix.
Thanks
2 个评论
Image Analyst
2022-6-13
What do you have so far? Do you have the camera already? If so, what king? Do you have the Image Acquistion Toolbox (I'm not even sure if it's needed or works with Simulink so call Mathworks and ask them)? Are you able to pull an image in from the camera to a variable in your code or Simulink block yet?
回答(1 个)
Benjamin Thompson
2022-6-13
Double click on the block and change the output color space option to "grayscale" if you can. Or, the Computer Vision Toolbox offers a Color Space Conversion block. Or, use a MATLAB function block to wrap the rgb2gray in Simulink, this is part of basic MATLAB. Or just do it your self, since intensity of RGB is just sqrt(R^2 + G^2 + B^2).
另请参阅
类别
在 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!