Code Reference: Difference between revisions
mNo edit summary |
mNo edit summary |
||
Line 4: | Line 4: | ||
==Camera Calibration== | ==Camera Calibration== | ||
[http://www.emgu.com/wiki/index.php/Camera_Calibration Camera Calibration] : Shows the use of the camera calibration method within EMGU, | [http://www.emgu.com/wiki/index.php/Camera_Calibration Camera Calibration] : Shows the use of the camera calibration method within EMGU, | ||
Line 37: | Line 38: | ||
::*<syntaxhighlight lang="csharp">GetCaptureProperty()</syntaxhighlight> | ::*<syntaxhighlight lang="csharp">GetCaptureProperty()</syntaxhighlight> | ||
::*<syntaxhighlight lang="csharp">SetCaptureProperty()</syntaxhighlight> ?? find use | ::*<syntaxhighlight lang="csharp">SetCaptureProperty()</syntaxhighlight> ?? find use | ||
[http://www.emgu.com/wiki/index.php?title=Video_Files Capture: Video Files] : Shows the use of the capture method to load videos save them from a web cam and look at individual frames. | |||
::*<syntaxhighlight lang="csharp">Capture()</syntaxhighlight> | |||
[http://www.emgu.com/wiki/index.php?title=Kinect_Capture Capture: Kinect] : Shows the use of the camera capture method to acquire images from a Microsoft Kinect Device. | [http://www.emgu.com/wiki/index.php?title=Kinect_Capture Capture: Kinect] : Shows the use of the camera capture method to acquire images from a Microsoft Kinect Device. |
Revision as of 21:27, 17 November 2012
C#
Camera Calibration
Camera Calibration : Shows the use of the camera calibration method within EMGU,
Capture()
CalibrateCamera()
FindChessboardCorners()
IntrinsicCameraParameters
ExtrinsicCameraParameters
Stereo Imaging : Shows the use of the camera calibration StereoCalibrate method within EMGU,
Capture()
FindChessboardCorners()
StereoCalibrate()
cvStereoRectify()
IntrinsicCameraParameters
ExtrinsicCameraParameters
cvStereoRectify()
StereoSGBM()
ReprojectImageTo3D()
Capture
Capture: Camera : Shows the use of the camera capture method to acquire images from a web cam or alternative connected device.
Capture()
RetrieveBgrFrame()
RetrieveGrayFrame()
QueryFrame()
QueryGrayFrame()
QuerySmallFrame()
GetCaptureProperty()
- ?? find use
SetCaptureProperty()
Capture: Video Files : Shows the use of the capture method to load videos save them from a web cam and look at individual frames.
Capture()
Capture: Kinect : Shows the use of the camera capture method to acquire images from a Microsoft Kinect Device.
??Need to find valid example
KinectCapture()
RetrieveBgrFrame()
RetrieveGrayFrame()
RetrieveDisparityMap()
RetrieveDisparityMap32f()
RetrieveValidDepthMap()
RetrieveDepthMap()
RetrievePointCloudMap()
GetColorPoints()
GetMaxDisparity()
GetOpenNIContext()
Color and Image Format
Color Conversion & Correction Shows the use of different image formats. Converting between them, getting image information, and applying colour filtering and correction.
Bgr
Bgra
Gray
Hls
Hsv
IColor
Lab
Luv
Rgb
Rgba
Xyz
Ycc
DenseHistogram : Shows the use of OpenCV Dense histogram method
Calculate etc
HistogramShows the use of C# histogram method
Calculate
Correction
Apply