Difference between revisions of "OpenCV Module in Slicer3"
Line 37: | Line 37: | ||
==Test the system== | ==Test the system== | ||
− | + | #Plug in your camera into any usb port | |
− | + | #Bring Slicer up | |
− | + | #Go to the modules list in Slicer3 interface | |
− | + | #Pick OpenCV module | |
− | + | #Press the button "second window on" | |
You should see video from the camera in a few seconds. | You should see video from the camera in a few seconds. | ||
=Future Work= | =Future Work= |
Revision as of 18:20, 25 July 2009
Home < OpenCV Module in Slicer3Contents
Steps to Build and Use OpenCV Module
My operating system
The following Linux system is my desktop where this tutorial is based on:
Ubuntu 8.04 - the Hardy Heron - released in April 2008.
Linux brainlab-desktop 2.6.24-23-generic #1 SMP Mon Jan 26 00:13:11 UTC 2009 i686 GNU/Linux
Install OpenCV 1.0
- Download OpeCV 1.0 at http://sourceforge.net/projects/opencvlibrary/files/. You get file "opencv-1.0.0.tar.gz"
- Move the file to any temporary folder and then unzip it using "tar xvfz opencv-1.0.0.tar.gz". You will get a directory called "opencv-1.0.0"
- cd to opencv-1.0.0 and run these commands:
./configure make sudo make install
The above commands will configure, compile and install opencv 1.0 on your system.
Test camera
- My camera is Logitech QuickCam Pro for Noteboks
- If you don't have a tool called "luvcview," you can get it using this command "sudo apt-get install luvcview"
- Plug in the camera to any usb port on your computer
- Run luvcview
In a few seconds you should see video displayed in luvcview
Compile Slicer3
I have created a Slicer3 (in trunk) module named "OpenCV," whose name was suggested by Dr. Noby Hata. It's basically the videoOpenIGTLink module plus a few bug fixes. To include this module into your Slicer3 build, open this file: Slicer3/Modules/CMakeLists.txt
and uncomment "OpenCV" (by default, it's commented for now because it depends on OpenCV library)
Test the system
- Plug in your camera into any usb port
- Bring Slicer up
- Go to the modules list in Slicer3 interface
- Pick OpenCV module
- Press the button "second window on"
You should see video from the camera in a few seconds.