Chief Delphi

Chief Delphi (http://www.chiefdelphi.com/forums/index.php)
-   Programming (http://www.chiefdelphi.com/forums/forumdisplay.php?f=51)
-   -   How to run vison processing code on classmate during matches? (http://www.chiefdelphi.com/forums/showthread.php?t=99840)

ganchara 11-01-2012 16:29

How to run vison processing code on classmate during matches?
 
My team is going to be using vision processing for our hybrid mode. From what I understand, rather than running the processing code on the CRIO, it is run on the classmate or other laptop used for driving by my team. How do I make this separate code run on the robot while the robot is running?

fb39ca4 11-01-2012 17:42

Re: How to run vison processing code on classmate during matches?
 
You would have to send the video frames to the computer, run your image processing program, and have it send relevant commands to the cRIO, all over the wifi link. IMO it would be better to have an on board laptop that does the same scheme, but now, it can be connected through Ethernet, which is much faster.

sjspry 11-01-2012 18:59

Re: How to run vison processing code on classmate during matches?
 
The forums have various other threads discussing this scheme. Basically, connect your axis camera to your router and grab the stream of of it. But note it is possible to run NIVision on the cRIO (although I think someone mentioned they were attempting to offload it due to it being so CPU intensive).

ganchara 11-01-2012 19:48

Re: How to run vison processing code on classmate during matches?
 
Are we allowed to have a laptop right on our robot to do the image processing? I was definitely planning to offload the images from the camera, rather than using the CRIO because there is just so much more processing power on a laptop. What I am asking really is how to execute the processing code that both finds the rectangle, and then figures out where the robot needs to go, on the laptop, rather than any of the other parts of the process, such as how to process the images.

byteit101 11-01-2012 20:02

Re: How to run vison processing code on classmate during matches?
 
Quote:

Originally Posted by ganchara (Post 1102780)
From what I understand, rather than running the processing code on the CRIO, it is run on the classmate or other laptop used for driving by my team.

yes and no:
Kinect sensor->data: yes, but its already built
axis camera processing: no (though you can, as you can see from the rest of this thread)
kinect data-> drive commands: no, on robot

If you are doing insane calculations on images, you should offload it to the classmate. If you are doing more simple image processing (rectangle tracking, etc...), the robot will suffice, as offloading it will take more work than it is worth

Greg McKaskle 11-01-2012 20:13

Re: How to run vison processing code on classmate during matches?
 
If you plug the camera directly into the DLink switch on the robot, then programs that know the IP address and are on the subnet can request images. This is how the dashboard works. If you wish to change the dashboard, it is written in LV and source is provided, or you can choose one of the other DB tools.

So, getting an image from the camera is as simple as getting the laptop program to ask for it.

As for processing it, you can process it on the cRIO. The target isn't moving, and as long as the robot isn't moving very much, you don't need 30fps. Calculate the speed you need. For processing the image, you have a number of choices. NIVision works on the cRIO and on the desktop and has entry points for C and LV. OpenCV is another pretty accessible choice.

Greg McKaskle

ganchara 11-01-2012 21:08

Re: How to run vison processing code on classmate during matches?
 
Quote:

Originally Posted by Greg McKaskle (Post 1102985)
NIVision works on the cRIO and on the desktop and has entry points for C and LV.

Well, thats part of the problem we are having, my team is programming in java, and none of the other programmers on the team are willing to switch to C, which is what I am the most familiar with.

Greg McKaskle 11-01-2012 21:18

Re: How to run vison processing code on classmate during matches?
 
I'm not sure what to do about that. OpenCV is definitely an option, and if someone is willing to do wrappers, NI-Vision is too.

Greg McKaskle

ganchara 11-01-2012 21:23

Re: How to run vison processing code on classmate during matches?
 
Quote:

Originally Posted by Greg McKaskle (Post 1103026)
and if someone is willing to do wrappers, NI-Vision is too.

What would have to be done to create the wrappers? None of the programmers on the team are very experienced with writing robotics java code.
Also, what I am really trying to ask in this thread is once the code is written, how do I execute it.
Quote:

Originally Posted by Greg McKaskle (Post 1103026)
As for processing it, you can process it on the cRIO. The target isn't moving, and as long as the robot isn't moving very much, you don't need 30fps.


As an aside, the plan my team has is to use the rectangle as a way of positioning the robot, as we plan to have an extremely short range shooter. Would you still suggest processing at less than 30 FPS and on the cRIO?
Today 08:13 PM

Joe Johnson 11-01-2012 22:27

Re: How to run vison processing code on classmate during matches?
 
I don't want to hijack this thread, but I have heard usually reliable sources say that sending pictures back to the Classmate (or whatever Win7 Machine you use on your driver station) is a bad idea.

The gist of their argument is that nearby the wifi is up to the task but from across the field with other robots all talking too, the frame rate drops to the low single digits (3-4 fps).

This is the kind of thing that scares me to death because I can't know that it is a problem until we get to an actual competition.

So... ...should I worry about the 10,000 other problems I have to worry about or should I continue to worry about this one (and perhaps decide that I don't really want to send the camera data to the remote Win7 Machine after all)?

Do tell.

Joe J

~Cory~ 11-01-2012 22:44

Re: How to run vison processing code on classmate during matches?
 
Quote:

Originally Posted by Joe Johnson (Post 1103115)
The gist of their argument is that nearby the wifi is up to the task but from across the field with other robots all talking too, the frame rate drops to the low single digits (3-4 fps).

Last year we did such a scheme (no data sent back to robot, however) and were running at about ~21 fps

However we did have some small issues with the robot hiccuping. We believe the problem was the classmate's DS commands due to high latency (we graphed some data obtained from wireshark). We have not ruled out the camera directly attached to the wifi with 100% certainty...

ganchara 11-01-2012 23:15

Re: How to run vison processing code on classmate during matches?
 
Quote:

Originally Posted by Joe Johnson (Post 1103115)
I have heard usually reliable sources say that sending pictures back to the Classmate (or whatever Win7 Machine you use on your driver station) is a bad idea.

The gist of their argument is that nearby the wifi is up to the task but from across the field with other robots all talking too, the frame rate drops to the low single digits (3-4 fps).

I have heard similar things, however, the counter-argument that I have heard is that running image processing on the cRIO, if ran simultaneously with enough code (no idea how much though) causes noticeable lag in the processing speed. One solution to this that I have heard is to have a second laptop mounted on the robot, and directly wire that to the camera and cRIO, however, I am not sure if the game design rules allow this or not.

siggy2xc 12-01-2012 00:08

Re: How to run vison processing code on classmate during matches?
 
You can't communicate between the robot and the laptop in hybrid/autonomous can you? or are things like the keyboard and joysticks the only things disabled?

DjMaddius 12-01-2012 06:55

Re: How to run vison processing code on classmate during matches?
 
If allowed to put another machine on the robot for image processing, you may as well use the kinect on it instead of the axis! I've heard its very easy to get good data, much more than the axis could ever give you and with a computer with usb on the robot it is very possible and legal to do it. (The kinect anyways, I know nothing of the computer on the robot)

sjspry 12-01-2012 07:02

Re: How to run vison processing code on classmate during matches?
 
I can vouch that grabbing the image stream from the Axis camera works fine. Our team got ~29 fps using the smaller resolution. The 3-4 fps I would imagine comes from someone trying to use the cRIO to relay the images.

As for communication during hybrid, you can, the only thing disallowed is human input (well, excepting the kinect).


All times are GMT -5. The time now is 23:31.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi