raspberry pi 4 model b & usb logitech camera connection
7 ビュー (過去 30 日間)
古いコメントを表示
hi im trying to run this file "Run on Hardware" , https://kr.mathworks.com/matlabcentral/fileexchange/62243-run-on-hardware?s_tid=srchtitle
but when i trying to run edge detection func, but i can't solve
r = raspi
<< cam = cameraboard(r) >> this part

so i trying to use func webcam,
and i made this but i can't go foward
how can i solve this problem
0 件のコメント
採用された回答
Angelo Yeo
2023 年 8 月 18 日
Looks like there was a problem with the Raspberry Pi's CSI camera (also known as strip based camera or PiCamera) connected to the Raspberry Pi. Note that "cameraboard" function is meant to be used for the CSI camera and not for USB cameras. However, "webcam" function can be used for either Pi Camera or USB webcams.
Try replacing cameraboard function in their script with the below:
cam = webcam(r,2); % 2 refers to the second AvailableWebCams
0 件のコメント
その他の回答 (1 件)
Walter Roberson
2023 年 8 月 18 日
Is there a reason you are using the File Exchange submission instead of using the MATLAB Support Package for Raspberry Pi Hardware ? Are you using a version before R2018b ?
You are using cameraboard which is part of the support package just mentioned, so I do not understand what you are doing. You should perhaps be using webcam .
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!