Difference between revisions of "OpenCV"

From ProgrammingExamples
Jump to: navigation, search
(Image Processing)
 
(20 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
* [[OpenCV/Basics/Point|Point]]
 
* [[OpenCV/Basics/Point|Point]]
 
* [[OpenCV/Basics/Matrix|Matrix]]
 
* [[OpenCV/Basics/Matrix|Matrix]]
 +
* [[OpenCV/Basics/MatrixType|Matrix type]]
 
* [[OpenCV/Basics/MatrixInverse|MatrixInverse]]
 
* [[OpenCV/Basics/MatrixInverse|MatrixInverse]]
 
* [[OpenCV/Basics/Matrix3Channel|Matrix3Channel]]
 
* [[OpenCV/Basics/Matrix3Channel|Matrix3Channel]]
Line 8: Line 9:
 
* [[OpenCV/Basics/PseudoInverse|PseudoInverse]]
 
* [[OpenCV/Basics/PseudoInverse|PseudoInverse]]
 
* [[OpenCV/Basics/MatrixMultiplication|MatrixMultiplication]]
 
* [[OpenCV/Basics/MatrixMultiplication|MatrixMultiplication]]
 +
* [[OpenCV/Basics/Image|IplImage image type]]
  
 
== Input/Output (IO) ==
 
== Input/Output (IO) ==
Line 15: Line 17:
  
 
== Calibration ==
 
== Calibration ==
* [[OpenCV/Calibration|Calibrate the intrinsic parameters of a camera from a single image of a checkerboard]]
+
* [[OpenCV/CheckerboardCalibration|Calibrate the intrinsic parameters of a camera from a single image of a checkerboard]]
 +
 
 +
== Convenience Functions ==
 +
* [[OpenCV/Convenience/ComposeP|Compose a projection matrix (P) from K, R, and T]]
 +
* [[OpenCV/Convenience/ConvertMatrixType|Convert the elements of a matrix from one type to another]]
 +
 
 +
== Common Tasks ==
 +
* [[OpenCV/CommonTasks/RemoveDistortion|Remove distortion]]
 +
* [[OpenCV/CommonTasks/DecomposeProjectionMatrix|Decompose a projection matrix (P) into K,R,T]]
 +
 
 +
== Image Processing ==
 +
* [[OpenCV/ImageProcessing/Smoothing|Smooth an image]]
 +
* [[OpenCV/ImageProcessing/ExtractChannel|Extract a channel of an image]]
 +
 
 +
== Wish List ==
 +
* [[OpenCV/WishList/ConvertPointsHomogeneous|Convert between homogeneous and non-homogeneous coordinates]]
 +
* [[OpenCV/WishList/StereoRectifyUncalibrated|StereoRectifyUncalibrated function]]
 +
* [[OpenCV/WishList/DenseStereoCorrespondence|StereoBM, StereoSGBM]]
 +
* [[OpenCV/WishList/ProjectPoints|projectPoints function]]
 +
* [[OpenCV/WishList/Homography|findHomography function]]
 +
* [[OpenCV/WishList/StereoRectification|stereoRectify function]]
 +
* [[OpenCV/WishList/3DReconstruction|Reconstruct 3D points from correspondences in two images]]
 +
* [[OpenCV/WishList/IO/WriteMatrix|Write a matrix to a file]]
 +
* [[OpenCV/WishList/Stereo/stereoRectifyUncalibrated|Rectify images]]
 +
* [[OpenCV/WishList/3D/EstimateP|Estimate P from 2D/3D correspondences]]

Latest revision as of 09:00, 15 May 2015

Basics

Input/Output (IO)

Calibration

Convenience Functions

Common Tasks

Image Processing

Wish List