|
iLab Neuromorphic Robotics Toolkit
0.1
|
#include <nrt/Core/Image/GenericImage.H>#include <nrt/ImageProc/LibraryConversions/Exceptions.H>#include "opencv2/core/core_c.h"#include "opencv2/core/core.hpp"#include "opencv2/imgproc/imgproc_c.h"#include "opencv2/imgproc/imgproc.hpp"#include "opencv2/video/tracking.hpp"#include "opencv2/video/background_segm.hpp"#include "opencv2/features2d/features2d.hpp"#include "opencv2/objdetect/objdetect.hpp"#include "opencv2/calib3d/calib3d.hpp"#include "opencv2/ml/ml.hpp"#include "opencv2/highgui/highgui_c.h"#include "opencv2/highgui/highgui.hpp"#include "opencv2/contrib/contrib.hpp"#include <nrt/ImageProc/LibraryConversions/details/OpenCVImpl.H>
// ////////////////////////////////////////////////////////////////////////
// The iLab Neuromorphic Robotics Toolkit (NRT) //
// Copyright 2010-2012 by the University of Southern California (USC) //
// and the iLab at USC. //
// //
// iLab - University of Southern California //
// Hedco Neurociences Building, Room HNB-10 //
// Los Angeles, Ca 90089-2520 - USA //
// //
// See http://ilab.usc.edu for information about this project. //
// ////////////////////////////////////////////////////////////////////////
// This file is part of The iLab Neuromorphic Robotics Toolkit. //
// //
// The iLab Neuromorphic Robotics Toolkit is free software: you can //
// redistribute it and/or modify it under the terms of the GNU General //
// Public License as published by the Free Software Foundation, either //
// version 3 of the License, or (at your option) any later version. //
// //
// The iLab Neuromorphic Robotics Toolkit is distributed in the hope //
// that it will be useful, but WITHOUT ANY WARRANTY; without even the //
// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR //
// PURPOSE. See the GNU General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with The iLab Neuromorphic Robotics Toolkit. If not, see //
// <http://www.gnu.org/licenses/>. //
// ////////////////////////////////////////////////////////////////////////
Definition in file OpenCV.H.
Go to the source code of this file.
Namespaces | |
| namespace | nrt |
Reserved namespace for NRT core classes and functions. | |
Functions | |
| template<class PixType > | |
| Image< PixType > | nrt::copyIpl2Image (IplImage const *const iplimage) |
| Copy an OpenCV IplImage to an nrt::Image. | |
| template<class PixType > | |
| IplImage * | nrt::copyImage2Ipl (Image< PixType > const img) |
| Copy an nrt::Image to an OpenCV IplImage. | |
| template<class PixType > | |
| Image< PixType > | nrt::copyCvMat2Image (cv::Mat iplimage) |
| Copy a cv::Mat to an nrt::Image. | |
| template<class PixType > | |
| cv::Mat | nrt::copyImage2CvMat (Image< PixType > const img) |
| Copy an nrt::Image to a cv::Mat. | |