Chief Delphi

Chief Delphi (http://www.chiefdelphi.com/forums/index.php)
-   Programming (http://www.chiefdelphi.com/forums/forumdisplay.php?f=51)
-   -   1706 Vision Solution: Tracking totes in depth-map, color, and infrared (http://www.chiefdelphi.com/forums/showthread.php?t=133978)

cmastudios 04-02-2015 16:37

1706 Vision Solution: Tracking totes in depth-map, color, and infrared
 
The Ratchet Rockers team 1706 has been hard at work this build season to bring you the public release of our vision solution.

INTRODUCTORY VIDEO: http://youtu.be/HYWgS2M8Zy4

Source code at: https://rr1706.github.io/vision2015/

Specifications:
- C++ code
- Intended for a coprocessor (ODROID / Raspberry Pi)
- Uses the OpenCV library
- Written on Ubuntu 14.04 linux
- Designed for Xbox 360 Kinect (could be used by any color, IR, or depth-map camera)

The program has the ability to track the field totes in three different modes: depth map, infrared light, and color. The use of a depth map to aid in tracking was used by the team for the first time in a competition. It allows the retrieval of more features

Explanation of Depth logic: https://github.com/rr1706/vision2015...th-Explanation

Explanation of IR logic: https://github.com/rr1706/vision2015...IR-Explanation

A few items still are being worked on: better color thresholds, an edge detector to replace the calibration image, transmitting camera images, multithreading, and so on.

To get the program working, you will need:
- Ubuntu 14.04 linux
- Xbox 360 kinect
- C++ knowledge

Steps to get the program working:
1. Install the dependencies: sudo apt-get install build-essential libfreenect-dev qtcreator libopencv-dev
2. Clone the repository to your computer.
3. Open the vision2015.pro file with Qt Creator.
4. Configure Qt Creator to build the project for Desktop.
5. Visit the source code file demo.cpp in the Qt Creator sidebar to change your basic options.

The main function near the bottom of the file selects which mode to use. Select color for basic color tracking, or any other function available in the program by changing the line to call a function available. Check tracker.hpp for the classes that contain the various vision tracker programs. You may need to change the thresholding values for your current lighting conditions (your environment or day/night cycle). You can use my program multithresh (https://github.com/rr1706/multithresh) to select proper threshold values (stored in tracker.hpp).


AustinH 04-02-2015 16:49

Re: 1706 Vision Solution: Tracking totes in depth-map, color, and infrared
 
Fantastic work. We'll be sure to give this a try.

Have you tried it on a Jetson by chance?

cmastudios 04-02-2015 16:59

Re: 1706 Vision Solution: Tracking totes in depth-map, color, and infrared
 
Quote:

Originally Posted by AustinH (Post 1438347)
Fantastic work. We'll be sure to give this a try.

Have you tried it on a Jetson by chance?

Haven't tried to get it running on anything but my laptop and an ODROID-XU. We were thinking of looking into getting one to potentially improve the performance in comparison to the ODROID but haven't focused on it yet. We may.

Fauge7 05-02-2015 12:24

Re: 1706 Vision Solution: Tracking totes in depth-map, color, and infrared
 
have you thought about using the i2c communication to the roborio from the odroid c1 instead of sending a udp message?

Cinnamon Toast 05-02-2015 13:41

Re: 1706 Vision Solution: Tracking totes in depth-map, color, and infrared
 
This looks exceptional. I have access to a Jetson, and once I get some time, I'll see if I can get it working on the system. I'll definitely reply back with performance stats.

baumgartensam 05-02-2015 17:33

Re: 1706 Vision Solution: Tracking totes in depth-map, color, and infrared
 
If I get a chance I'll see if I can get a GPU optimized version working to take full advantage of the Jetson's GPU.

cameronr2980 07-02-2015 18:31

Re: 1706 Vision Solution: Tracking totes in depth-map, color, and infrared
 
Hello,
I have been trying to get this program running on an nvidia Jetson TK1 for the past few hours. I can't seem to get some of the dependencies to install. apt comes back with an error saying that every package except for build-essential cannot be located. "Unable to locate package x." I have looked around on the internet for a solution and tried a few but none of them have worked. This may be more of a linux question but does anyone see an easy solution to this? I'm thinking about reflashing linux and trying again.

faust1706 07-02-2015 20:15

Re: 1706 Vision Solution: Tracking totes in depth-map, color, and infrared
 
did you try sudo apt-get install libopencv-dev?

yash101 07-02-2015 21:21

Re: 1706 Vision Solution: Tracking totes in depth-map, color, and infrared
 
Quote:

Originally Posted by cameronr2980 (Post 1439902)
Hello,
I have been trying to get this program running on an nvidia Jetson TK1 for the past few hours. I can't seem to get some of the dependencies to install. apt comes back with an error saying that every package except for build-essential cannot be located. "Unable to locate package x." I have looked around on the internet for a solution and tried a few but none of them have worked. This may be more of a linux question but does anyone see an easy solution to this? I'm thinking about reflashing linux and trying again.

Try:
Code:

sudo apt-get update
Apt-get gives those errors all the time when the repos aren't up-to-date. What is the command you are running?

Also, I suggest that you compile OpenCV manually for the Jetson because it supports a crapload more of optimizations than other boards. I don't have a Jetson, but I'm sure that it uses the same repository as the other boards, like the ODROID.
The Jetson has CUDA support, one thing that should used to it's max for it's glory! It'll make your code run just a lot faster!

faust1706 08-02-2015 01:27

Re: 1706 Vision Solution: Tracking totes in depth-map, color, and infrared
 
I would love to see the performance of our code on the Jetson. Please someone deliver. I'm willing to thread it and optimize it if someone wants to bench mark it for me.

cameronr2980 08-02-2015 13:39

Re: 1706 Vision Solution: Tracking totes in depth-map, color, and infrared
 
Quote:

Originally Posted by yash101 (Post 1440007)
Try:
Code:

sudo apt-get update
Apt-get gives those errors all the time when the repos aren't up-to-date. What is the command you are running?

Also, I suggest that you compile OpenCV manually for the Jetson because it supports a crapload more of optimizations than other boards. I don't have a Jetson, but I'm sure that it uses the same repository as the other boards, like the ODROID.
The Jetson has CUDA support, one thing that should used to it's max for it's glory! It'll make your code run just a lot faster!

I've tried apt-get update and apt-get upgrade, both completed just fine and I still had the same error. I get the error from running:
sudo apt-get install libavcodec-dev
I get the error for a couple more packages too, that is just an example. I think that all the problems i'm having are with open CV so i think i will reflash ubuntu and try again, this time compiling openCV myself.

yash101 08-02-2015 14:35

Re: 1706 Vision Solution: Tracking totes in depth-map, color, and infrared
 
Quote:

Originally Posted by cameronr2980 (Post 1440256)
I've tried apt-get update and apt-get upgrade, both completed just fine and I still had the same error. I get the error from running:
sudo apt-get install libavcodec-dev
I get the error for a couple more packages too, that is just an example. I think that all the problems i'm having are with open CV so i think i will reflash ubuntu and try again, this time compiling openCV myself.

Please try running apt-cache search libavcodec > out.txt and upload out.txt to this forum. That'll search through the repo and possibly output a ton of text! If the package is found, you're golden.

cmastudios 08-02-2015 18:35

Re: 1706 Vision Solution: Tracking totes in depth-map, color, and infrared
 
Quote:

Originally Posted by cameronr2980 (Post 1440256)
I've tried apt-get update and apt-get upgrade, both completed just fine and I still had the same error. I get the error from running:
sudo apt-get install libavcodec-dev
I get the error for a couple more packages too, that is just an example. I think that all the problems i'm having are with open CV so i think i will reflash ubuntu and try again, this time compiling openCV myself.

It could be a factor of the repositories you have enabled... check /etc/apt/sources.list

cameronr2980 08-02-2015 18:57

Re: 1706 Vision Solution: Tracking totes in depth-map, color, and infrared
 
Quote:

Originally Posted by yash101 (Post 1440279)
Please try running apt-cache search libavcodec > out.txt and upload out.txt to this forum. That'll search through the repo and possibly output a ton of text! If the package is found, you're golden.

That returns:
"libavcodec-dev - Development files for libavcodec"
as well as several more lines like it describing other packages. I'm really confused now because this means that it found the package, right? But when I use apt-get to try and install it it says it can't be found.

It might be because I'm on the school network now think of it. I'll keep trying.

cameronr2980 08-02-2015 19:03

Re: 1706 Vision Solution: Tracking totes in depth-map, color, and infrared
 
Now it found every one of the dependencies no problem. No idea what was wrong but thank you all for the help.


All times are GMT -5. The time now is 12:14.

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