Color detection problem.
조회 수: 2 (최근 30일)
이전 댓글 표시
I am trying to move my bot to the corresponding color in the image. I tried some algorithms but it didn't work out. I would be really happy if you could help me with this thing. I would be much obliged if you could provide me some kind of sample code or something. If you have this code please share the code with me.
Here's the image https://picasaweb.google.com/113606847351479489219/January142012#5697511886387683426
I am trying to move my bot to the black rectangle corresponding to the red.
Thanks in advance.
댓글 수: 3
Image Analyst
2012년 1월 14일
What does "the black rectangle corresponding to the red" mean? Since you've been around here a while I would have thought you've already seen this: http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer
Image Analyst
2012년 1월 14일
What is a bot? You mean a robot? Like you're somehow communicating with a robot to move the robot to locations on the floor that are covered with colored paint or stickers?
답변 (5개)
i Venky
2012년 1월 14일
댓글 수: 1
Image Analyst
2012년 1월 14일
I don't understand. Your image looks like you're doing a simulation yet you say you have a robot that is taking orders from your computer, perhaps via the Instrument Control Toolbox or something similar. So if you send out a signal through your serial communications line to move your robot to some real world location in a real room, on a calibrated playing field where distances are measured in meters, then how does that relate to your computer graphics simulation where things are measured in pixels?
i Venky
2012년 1월 15일
댓글 수: 4
Image Analyst
2012년 1월 15일
Yes, I believe you would. But that's asking way too much to have us give you code to control movement of a robot around a room while showing a simulation of it on the screen, particularly when you haven't been forthcoming in answering questions directly. You already have code for communicating with your robot over a serial line, and my File Exchange has several methods for finding colored patches in an image. You now have all the tools you need. I think the rest of your project is for you to adapt and integrate those concepts into your project.
Walter Roberson
2012년 1월 16일
As you already have the other parts, all you need is
left = [0 0];
right = [0 1];
up = [1 0];
down = [1 1];
%calculate number of times need to go Left, Right, Up, Down. Then
for K = 1 : NLeft; out(left); end
for K = 1 : NRight; out(right); end
for K = 1 : NUp; out(up); end
for K = 1 : NDown; out(down); end
I would not have thought that would be a conceptual difficulty ?
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Robotics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!