![]() |
Tracking Rectangles with Java/C++
Hi Guys,
So I'm from team 1382 and We are guessing how to track the rectangles and, we realized that it is really hard , instead of using making the particle process, we are seeking for any kind of librarie or function, since we had never used the camera for tracking and it will be the first time, and using LabView isn't in our plans. I know that already a lot of threads talking about rectangles tracking , I'm creating this one specifically for Java and C++ users that are havind the same problem, bacause LabView have a block to manage it . Thanks , Cesar Javaroni ETEP Team 1382 Brazilian Team ![]() |
Re: Tracking Rectangles with Java/C++
We need a little help too by how to see the images. We are using java...
|
Re: Tracking Rectangles with Java/C++
Hi Steve,
So get the image is the easiest thing to do, since you have configured your cam, WPI cam Manage it so, take a look at these: - http://first.wpi.edu/Images/CMS/Firs...sers_Guide.pdf Starting at page 53. I think that's all, but we are really having troubles finding the rectangles |
Re: Tracking Rectangles with Java/C++
Even if you intend to do the processing using a different library or a different language, it may still be useful to use the NI Vision Assistant to acquire a variety of images, and then try different mathematical algorithms to see is helpful. You can then review the reference or concept manual and it will often tell you the algorithm used if you would like to translate to OpenCV or another library.
Greg McKaskle |
Re: Tracking Rectangles with Java/C++
If you really want, try looking into Hough transformations. The images are encoded in Jpeg; you can just decode it and go from there. That is my plan so far, but it looks like we won't need a camera this year.
Perhaps once we get a suitable laptop to code and test with, I'll post an example up next week or when ever. I am able to write the code in Java and port it into C++, but the C++ port will not be tested because I do not want to risk flashing the cRio too much. |
Re: Tracking Rectangles with Java/C++
Yeah, my team is in the same boat. We're using C++ and there aren't any handy examples for tracking like there are in LabView (almost make me want to switch back :ahh: ) I briefly skimmed some sample code that would get the image, but, as said before, the real trouble is going to be tracking those rectangles...
My team will be testing the camera throughout the next couple weeks so hopefully we'll think of something. But if anyone has any breakthroughs, please post them here! Any help would be greatly appreciated :) |
Re: Tracking Rectangles with Java/C++
If your team isnt 100% against using labview at all you could do the image processing from the Classmates Dashboard by connecting the camera through the bridge instead of the cRio.
|
Re: Tracking Rectangles with Java/C++
My team is going to be putting a small Atom powered computer on our robot to do vision processing and other high-level functions. We are going to be using the javacv library to utilize OpenCV in Java. We experimented with vision processing on the cRIO last year, but we found that it was very slow and often lagged the rest of the robot functions. You can easily (I wrote a demo program in ~10 minutes) detect edges/contours with OpenCV and from there decide whether or not the contours make the rectangle you're looking for or not.
|
Re: Tracking Rectangles with Java/C++
Quote:
May I suggest using linux without xserver and just going with C++ to bypass the JVM. |
Re: Tracking Rectangles with Java/C++
My Question now is:
Will OpenCV work normally on cRIO, and, will it take a lot of processing from it ? We often write some huge programs to avoid errors, and it already take a little of cRIO, but, if exits anything that we can use to process this images :/ Using any kind of notebook,netbooks, whatever... Are out of our mind, since our money isn't enough for it. Thanks. |
Re: Tracking Rectangles with Java/C++
Have you read through this whitepaper?
http://firstforge.wpi.edu/sf/docman/...n.root/doc1302 While it doesn't talk specifically to functions or specific library calls, it does talk about different techniques specifically related to this years game. |
Re: Tracking Rectangles with Java/C++
Just so there is no misunderstanding, the vision libraries that LabVIEW uses are equally accessible from C/C++. The NI product for C development is called LabWindows CVI, so the vision documentation with the CVI suffix is all about the C/C++ entry points.
C:\Program Files\National Instruments\Vision\Documentation contains general documentation about vision processing and LV and C/C++ specific documents and others specific to Vision Assistant. It also has a calibration grid file if you need to correct the images for lens distortion. The libraries are installed on the cRIO and if you have installed Vision Assistant, I believe you have them on the laptop as well. It has been a while since I've looked at the WPI wrappers, and at least initially, they tended to hide the imaq entry point rather than simplify them. Perhaps the Examples for C based image processing will be helpful. They are located at C:\Program Files\National Instruments\Vision\Examples\MSVC. NI doesn't have Java wrappers for the C libraries or for much else. I know some have been added to WPILib, but it is far from complete. If you are more familiar with OpenCV, that is certainly a good option. I wouldn't expect it to be that much difference in performance or capabilities, but both libraries have their specializations and benefits. If you search online, you can probably find some comparisons. Once again, I'd also encourage you to take advantage of vision assistant, its code generation features and the vision concept manual. Greg McKaskle |
Re: Tracking Rectangles with Java/C++
Quote:
Quote:
Quote:
Derek mentioned above that you could try to do the vision processing on the classmate or whatever computer you use for an OI. This may be an option for offloading some of the processing, however I'd imagine it would not work for Autonomous. |
Re: Tracking Rectangles with Java/C++
Quote:
Code:
void Camera::FindRectangles() { |
Re: Tracking Rectangles with Java/C++
Would I be correct in assuming that in your example code, Camera is a class you made?
|
Re: Tracking Rectangles with Java/C++
Quote:
|
Re: Tracking Rectangles with Java/C++
Quote:
|
Re: Tracking Rectangles with Java/C++
Quote:
How exactly are you guys accomplishing that? Power connection, networking? Not sure how that would be done as we're also thinking of doing that. |
Re: Tracking Rectangles with Java/C++
I'm working on this problem in Java. Am I crazy or do they only make a method available for detcting ellipses and nothing else? Can we, at least, access the values for individual pixels? That way, if they give us nothing else, we could at-least write our own image processing algorithms.
|
I believe opencv and the axiscamera's JPEG is your best shot
|
Re: Tracking Rectangles with Java/C++
basicxman, I tried the code you suggested and I found that we were finding a ridiculous amount of rectangles(around 42 million). Do you have any idea why this is happening? Also, is there any documentation for the imaqDetectRectangles function?
|
Re: Tracking Rectangles with Java/C++
Quote:
|
Re: Tracking Rectangles with Java/C++
I have a sheet of printer paper with the target(with correct proportions) printed on it except where the retro-reflective tape would be, we just printed green. I am then extracting the green plane and going from there.
|
Re: Tracking Rectangles with Java/C++
Our team is also trying to figure out how to track the rectangles. Ive been spending a few hours or so looking over nivision.h as well as a few white papers and i seem to have gotten this far:
Code:
|
Re: Tracking Rectangles with Java/C++
Quote:
|
Re: Tracking Rectangles with Java/C++
Quote:
Quote:
|
Re: Tracking Rectangles with Java/C++
Would this be how to use the detectRectangles function in java. We looked at the ellipseDetect and I am thinking that hey do the same thing just based on different descriptors.
Code:
private static final BlockingFunction imaqDetectRectanglesFn = |
Re: Tracking Rectangles with Java/C++
Quote:
|
Re: Tracking Rectangles with Java/C++
What is imaqConvexHull() returning to? I have it returning to an integer but what value does the integer have?
|
Re: Tracking Rectangles with Java/C++
From the CVI documentation,
Return Value Type Description int On success, this function returns a non-zero value. On failure, this function returns 0. To get extended error information, call imaqGetLastError(). Greg McKaskle |
Re: Tracking Rectangles with Java/C++
Does anybody know how to perform the convex hull operations mentioned in the White Paper in Java? It specifically states that C/C++ and LabView can do it but there is nothing about Java and we are really scratching our heads over the problem.
If anyone could help us out on this problem it would be greatly appreciated. Thanks! |
Re: Tracking Rectangles with Java/C++
Quote:
|
Re: Tracking Rectangles with Java/C++
Quote:
RectangleMatch: http://mmrambotics.ca/wpilib/struct_...h__struct.html RectangleDescriptor: http://mmrambotics.ca/wpilib/struct_...r__struct.html |
Re: Tracking Rectangles with Java/C++
Quote:
|
| All times are GMT -5. The time now is 18:13. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi