MapTColor, TDepth Class |
Namespace: Emgu.CV
[SerializableAttribute] public class Map<TColor, TDepth> : Image<TColor, TDepth> where TColor : struct, new(), IColor where TDepth : new()
The MapTColor, TDepth type exposes the following members.
Name | Description | |
---|---|---|
![]() | MapTColor, TDepth(RectangleF, PointF) |
Create a new Image Map defined by the Rectangle area. The center (0.0, 0.0) of this map is
defined by the center of the rectangle. The initial value of the map is 0.0
|
![]() | MapTColor, TDepth(SerializationInfo, StreamingContext) |
Constructor used to deserialize runtime serialized object
|
![]() | MapTColor, TDepth(RectangleF, PointF, TColor) |
Create a new Image Map defined by the Rectangle area. The center (0.0, 0.0) of this map is
defined by the center of the rectangle.
|
Name | Description | |
---|---|---|
![]() | Area |
Get the area of this map as a rectangle
|
![]() | Bitmap |
The Get property provide a more efficient way to convert Image<Gray, Byte>, Image<Bgr, Byte> and Image<Bgra, Byte> into Bitmap
such that the image data is shared with Bitmap.
If you change the pixel value on the Bitmap, you change the pixel values on the Image object as well!
For other types of image this property has the same effect as ToBitmap()
Take extra caution not to use the Bitmap after the Image object is disposed
The Set property convert the bitmap to this Image type.
(Inherited from ImageTColor, TDepth.) |
![]() | Bytes |
Get or Set an Array of bytes that represent the data in this array
(Inherited from CvArrayTDepth.) |
![]() | Cols |
The number of cols for this array
(Inherited from CvArrayTDepth.) |
![]() | Data |
Get or Set the data for this matrix. The Get function has O(1) complexity. The Set function make a copy of the data
(Inherited from ImageTColor, TDepth.) |
![]() | Height |
Get the height (Rows) of the cvArray.
If ROI is set, the height of the ROI
(Inherited from CvArrayTDepth.) |
![]() | IsROISet |
Indicates if the region of interest has been set
(Inherited from ImageTColor, TDepth.) |
![]() | ItemPoint |
Get or Set the color in the location (Inherited from ImageTColor, TDepth.) |
![]() | ItemInt32 |
Get or Set the specific channel of the current image.
For Get operation, a copy of the specific channel is returned.
For Set operation, the specific channel is copied to this image.
(Inherited from ImageTColor, TDepth.) |
![]() | ItemInt32, Int32 |
Get or Set the color in the rowth row (y direction) and columnth column (x direction)
(Inherited from ImageTColor, TDepth.) |
![]() | ManagedArray |
Get the underneath managed array
(Inherited from ImageTColor, TDepth.) |
![]() | Mat |
Get the Mat header that represent this CvArr
(Inherited from CvArrayTDepth.) |
![]() | MIplImage |
The IplImage structure
(Inherited from ImageTColor, TDepth.) |
![]() | Norm |
The norm of this Array
(Inherited from CvArrayTDepth.) |
![]() | NumberOfChannels |
Get the number of channels for this image
(Inherited from ImageTColor, TDepth.) |
![]() | Ptr | The pointer to the internal structure (Inherited from CvArrayTDepth.) |
![]() | Resolution |
Get the resolution of this map as a 2D point
|
![]() | ROI |
Get or Set the region of interest for this map. To clear the ROI, set it to System.Drawing.RectangleF.Empty
|
![]() | Rows |
The number of rows for this array
(Inherited from CvArrayTDepth.) |
![]() | SerializationCompressionRatio |
Get or set the Compression Ratio for serialization. A number between 0 - 9.
0 means no compression at all, while 9 means best compression
(Inherited from CvArrayTDepth.) |
![]() | Size |
Get the size of the array
(Inherited from ImageTColor, TDepth.) |
![]() | Trace |
Sum of diagonal elements of the matrix
(Inherited from CvArrayTDepth.) |
![]() | Width |
Get the width (Cols) of the cvArray.
If ROI is set, the width of the ROI
(Inherited from CvArrayTDepth.) |
Name | Description | |
---|---|---|
![]() | _And |
Inplace And operation with otherArray (Inherited from CvArrayTDepth.) |
![]() | _Dilate |
Dilates this image inplace using a 3x3 rectangular structuring element.
Dilation are applied several (iterations) times
(Inherited from ImageTColor, TDepth.) |
![]() | _EqualizeHist |
The algorithm inplace normalizes brightness and increases contrast of the image.
For color images, a HSV representation of the image is first obtained and the V (value) channel is histogram normalized
(Inherited from ImageTColor, TDepth.) |
![]() | _Erode |
Erodes this image inplace using a 3x3 rectangular structuring element.
Erosion are applied several (iterations) times
(Inherited from ImageTColor, TDepth.) |
![]() | _Flip | Inplace flip the image (Inherited from ImageTColor, TDepth.) |
![]() | _GammaCorrect |
Gamma corrects this image inplace. The image must have a depth type of Byte.
(Inherited from ImageTColor, TDepth.) |
![]() | _Max(Double) |
Inplace compute the elementwise maximum value with value (Inherited from CvArrayTDepth.) |
![]() | _Max(CvArrayTDepth) |
Inplace elementwise maximize the current Array with other (Inherited from CvArrayTDepth.) |
![]() | _Min(Double) |
Inplace compute the elementwise minimum value
(Inherited from CvArrayTDepth.) |
![]() | _Min(CvArrayTDepth) |
Inplace elementwise minimize the current Array with other (Inherited from CvArrayTDepth.) |
![]() | _MorphologyEx |
Perform inplace advanced morphological transformations using erosion and dilation as basic operations.
(Inherited from ImageTColor, TDepth.) |
![]() | _Mul(Double) |
Inplace multiply elements of the Array by scale (Inherited from CvArrayTDepth.) |
![]() | _Mul(CvArrayTDepth) |
Inplace elementwise multiply the current Array with src2 (Inherited from CvArrayTDepth.) |
![]() | _Not |
Inplace compute the complement for all array elements
(Inherited from CvArrayTDepth.) |
![]() | _Or |
Inplace Or operation with otherArray (Inherited from CvArrayTDepth.) |
![]() | _SmoothGaussian(Int32) | Perform Gaussian Smoothing inplace for the current image (Inherited from ImageTColor, TDepth.) |
![]() | _SmoothGaussian(Int32, Int32, Double, Double) | Perform Gaussian Smoothing inplace for the current image (Inherited from ImageTColor, TDepth.) |
![]() | _ThresholdBinary | Threshold the image inplace such that: dst(x,y) = max_value, if src(x,y)>threshold; 0, otherwise (Inherited from ImageTColor, TDepth.) |
![]() | _ThresholdBinaryInv | Threshold the image inplace such that: dst(x,y) = 0, if src(x,y)>threshold; max_value, otherwise (Inherited from ImageTColor, TDepth.) |
![]() | _ThresholdToZero | Threshold the image inplace such that: dst(x,y) = src(x,y), if src(x,y)>threshold; 0, otherwise (Inherited from ImageTColor, TDepth.) |
![]() | _ThresholdToZeroInv | Threshold the image inplace such that: dst(x,y) = 0, if src(x,y)>threshold; src(x,y), otherwise (Inherited from ImageTColor, TDepth.) |
![]() | _ThresholdTrunc | Threshold the image inplace such that: dst(x,y) = threshold, if src(x,y)>threshold; src(x,y), otherwise (Inherited from ImageTColor, TDepth.) |
![]() | AbsDiff(ImageTColor, TDepth) |
Computes absolute different between this image and the other image
(Inherited from ImageTColor, TDepth.) |
![]() | Accumulate(ImageTColor, TDepth) |
Accumulate img2 to the current image using the specific mask
(Inherited from ImageTColor, TDepth.) |
![]() | Accumulate(ImageTColor, TDepth, ImageGray, Byte) |
Accumulate img2 to the current image using the specific mask
(Inherited from ImageTColor, TDepth.) |
![]() | AccumulateWeighted(ImageTColor, TDepth, Double) |
Update Running Average. this = (1-alpha)*this + alpha*img
(Inherited from ImageTColor, TDepth.) |
![]() | AccumulateWeighted(ImageTColor, TDepth, Double, ImageGray, Byte) |
Update Running Average. this = (1-alpha)*this + alpha*img, using the mask
(Inherited from ImageTColor, TDepth.) |
![]() | Action(ActionTDepth) |
perform an generic action based on each element of the image
(Inherited from ImageTColor, TDepth.) |
![]() | ActionTOtherDepth(ImageTColor, TOtherDepth, ActionTDepth, TOtherDepth) |
Perform an generic operation based on the elements of the two images
(Inherited from ImageTColor, TDepth.) |
![]() | Add(ImageTColor, TDepth) | Elementwise add another image with the current image (Inherited from ImageTColor, TDepth.) |
![]() | Add(ImageTColor, TDepth, ImageGray, Byte) | Elementwise add img2 with the current image, using a mask (Inherited from ImageTColor, TDepth.) |
![]() | AddWeighted |
Return the weighted sum such that: res = this * alpha + img2 * beta + gamma
(Inherited from ImageTColor, TDepth.) |
![]() | AllocateData |
Allocate data for the array
(Inherited from ImageTColor, TDepth.) |
![]() | And(ImageTColor, TDepth) | Perform an elementwise AND operation with another image and return the result (Inherited from ImageTColor, TDepth.) |
![]() | And(ImageTColor, TDepth, ImageGray, Byte) |
Perform an elementwise AND operation with another image, using a mask, and return the result
(Inherited from ImageTColor, TDepth.) |
![]() | AvgSdv(TColor, MCvScalar) |
Calculates the average value and standard deviation of array elements, independently for each channel
(Inherited from ImageTColor, TDepth.) |
![]() | AvgSdv(TColor, MCvScalar, ImageGray, Byte) |
Calculates the average value and standard deviation of array elements, independently for each channel
(Inherited from ImageTColor, TDepth.) |
![]() | BuildPyramid |
Compute the image pyramid
(Inherited from ImageTColor, TDepth.) |
![]() | Canny(Double, Double) | Find the edges on this image and marked them in the returned image. (Inherited from ImageTColor, TDepth.) |
![]() | Canny(Double, Double, Int32, Boolean) | Find the edges on this image and marked them in the returned image. (Inherited from ImageTColor, TDepth.) |
![]() | CheckRange |
Check that every array element is neither NaN nor +- inf. The functions also check that each value
is between min and max. in the case of multi-channel arrays each channel is processed
independently. If some values are out of range, position of the first outlier is stored in pos,
and then the functions return false.
(Inherited from CvArrayTDepth.) |
![]() | Clone |
Make a clone of the current image. All image data as well as the COI and ROI are cloned
(Inherited from ImageTColor, TDepth.) |
![]() | Cmp(Double, CmpType) |
Compare the current image with value and returns the comparison mask
(Inherited from ImageTColor, TDepth.) |
![]() | Cmp(ImageTColor, TDepth, CmpType) |
Compare the current image with img2 and returns the comparison mask
(Inherited from ImageTColor, TDepth.) |
![]() | ConcateHorizontal |
Concate the current image with another image horizontally.
(Inherited from ImageTColor, TDepth.) |
![]() | ConcateVertical |
Concate the current image with another image vertically.
(Inherited from ImageTColor, TDepth.) |
![]() | ConvertTOtherDepth(FuncTDepth, TOtherDepth) | Compute the element of the new image based on element of this image (Inherited from ImageTColor, TDepth.) |
![]() | ConvertTOtherDepth(FuncTDepth, Int32, Int32, TOtherDepth) |
Compute the element of a new image based on the value as well as the x and y positions of each pixel on the image
(Inherited from ImageTColor, TDepth.) |
![]() | ConvertTOtherColor, TOtherDepth | Convert the current image to the specific color and depth (Inherited from ImageTColor, TDepth.) |
![]() | ConvertTDepth2, TDepth3(ImageTColor, TDepth2, FuncTDepth, TDepth2, TDepth3) | Compute the element of the new image based on the elements of the two image (Inherited from ImageTColor, TDepth.) |
![]() | ConvertTDepth2, TDepth3, TDepth4(ImageTColor, TDepth2, ImageTColor, TDepth3, FuncTDepth, TDepth2, TDepth3, TDepth4) | Compute the element of the new image based on the elements of the three image (Inherited from ImageTColor, TDepth.) |
![]() | ConvertTDepth2, TDepth3, TDepth4, TDepth5(ImageTColor, TDepth2, ImageTColor, TDepth3, ImageTColor, TDepth4, FuncTDepth, TDepth2, TDepth3, TDepth4, TDepth5) | Compute the element of the new image based on the elements of the four image (Inherited from ImageTColor, TDepth.) |
![]() | ConvertFrom(IInputArray) |
Convert the source image to the current image, if the size are different, the current image will be a resized version of the srcImage.
(Inherited from ImageTColor, TDepth.) |
![]() | ConvertFromTSrcColor, TSrcDepth(ImageTSrcColor, TSrcDepth) |
Convert the source image to the current image, if the size are different, the current image will be a resized version of the srcImage.
(Inherited from ImageTColor, TDepth.) |
![]() | ConvertScaleTOtherDepth | Convert the current image to the specific depth, at the same time scale and shift the values of the pixel (Inherited from ImageTColor, TDepth.) |
![]() | Convolution |
Performs a convolution using the specific kernel (Inherited from ImageTColor, TDepth.) |
![]() | Copy | Make a copy of the image, if ROI is set, only copy the ROI (Inherited from ImageTColor, TDepth.) |
![]() | Copy(Rectangle) |
Make a copy of the specific ROI (Region of Interest) from the image
(Inherited from ImageTColor, TDepth.) |
![]() | Copy(RectangleF) |
Get a copy of the map in the specific area
|
![]() | Copy(ImageGray, Byte) |
Make a copy of the image using a mask, if ROI is set, only copy the ROI
(Inherited from ImageTColor, TDepth.) |
![]() | Copy(RotatedRect) |
Get a copy of the boxed region of the image
(Inherited from ImageTColor, TDepth.) |
![]() | Copy(ImageTColor, TDepth, ImageGray, Byte) |
Copy the masked area of this image to destination
(Inherited from ImageTColor, TDepth.) |
![]() | CopyBlank |
Create an image of the same size
(Inherited from ImageTColor, TDepth.) |
![]() | CopyTo |
Copy the current array to destination (Inherited from CvArrayTDepth.) |
![]() | CountNonzero |
Count the non Zero elements for each channel
(Inherited from ImageTColor, TDepth.) |
![]() | DeserializeObjectData |
A function used for runtime deserailization of the object
(Inherited from CvArrayTDepth.) |
![]() | Dilate |
Dilates this image using a 3x3 rectangular structuring element.
Dilation are applied several (iterations) times
(Inherited from ImageTColor, TDepth.) |
![]() | Dispose |
The dispose function that implements IDisposable interface
(Inherited from DisposableObject.) |
![]() | DisposeObject |
Release all unmanaged memory associate with the image
(Inherited from ImageTColor, TDepth.) |
![]() | DotProduct |
Calculates and returns the Euclidean dot product of two arrays.
src1 dot src2 = sumI(src1(I)*src2(I))
(Inherited from CvArrayTDepth.) |
![]() | Draw(RectangleF, TColor, Int32) |
Draw a rectangle in the map
|
![]() | Draw(Cross2DF, TColor, Int32) | Draw a 2D Cross using the specific color and thickness (Inherited from ImageTColor, TDepth.) |
![]() | Draw(IConvexPolygonF, TColor, Int32) | Draw a convex polygon of the specific color and thickness (Overrides ImageTColor, TDepthDraw(IConvexPolygonF, TColor, Int32).) |
![]() | Draw(Point, TColor, Int32, LineType, Point) |
Draws contour outlines in the image if thickness>=0 or fills area bounded by the contours if thickness<0
(Inherited from ImageTColor, TDepth.) |
![]() | Draw(Rectangle, TColor, Int32, LineType, Int32) | Draw an Rectangle of the specific color and thickness (Inherited from ImageTColor, TDepth.) |
![]() | Draw(CircleF, TColor, Int32, LineType, Int32) | Draw a Circle of the specific color and thickness (Overrides ImageTColor, TDepthDraw(CircleF, TColor, Int32, LineType, Int32).) |
![]() | Draw(Ellipse, TColor, Int32, LineType, Int32) | Draw a Ellipse of the specific color and thickness (Inherited from ImageTColor, TDepth.) |
![]() | Draw(LineSegment2D, TColor, Int32, LineType, Int32) | Draw a line segment using the specific color and thickness (Inherited from ImageTColor, TDepth.) |
![]() | Draw(LineSegment2DF, TColor, Int32, LineType, Int32) |
Draw a line segment in the map
(Overrides ImageTColor, TDepthDraw(LineSegment2DF, TColor, Int32, LineType, Int32).) |
![]() | Draw(String, Point, FontFace, Double, TColor, Int32, LineType, Boolean) |
Draw the text using the specific font on the image
(Overrides ImageTColor, TDepthDraw(String, Point, FontFace, Double, TColor, Int32, LineType, Boolean).) |
![]() | Draw(IInputArrayOfArrays, Int32, TColor, Int32, LineType, IInputArray, Int32, Point) |
Draws contour outlines in the image if thickness>=0 or fills area bounded by the contours if thickness<0
(Inherited from ImageTColor, TDepth.) |
![]() | DrawPolyline(PointF, Boolean, TColor, Int32) |
Draw the polyline defined by the array of 2D points
|
![]() | DrawPolyline(Point, Boolean, TColor, Int32, LineType, Int32) |
Draw the polyline defined by the array of 2D points
(Inherited from ImageTColor, TDepth.) |
![]() | DrawPolyline(Point, Boolean, TColor, Int32, LineType, Int32) |
Draw the polylines defined by the array of array of 2D points
(Inherited from ImageTColor, TDepth.) |
![]() | Equals(Object) | (Inherited from Object.) |
![]() | Equals(ImageTColor, TDepth) |
Compare two images, returns true if the each of the pixels are equal, false otherwise
(Inherited from ImageTColor, TDepth.) |
![]() | Erode |
Erodes this image using a 3x3 rectangular structuring element.
Erosion are applied several (iterations) times
(Inherited from ImageTColor, TDepth.) |
![]() | Exp |
Calculates exponent of every element of input array:
dst(I)=exp(src(I))
(Inherited from ImageTColor, TDepth.) |
![]() | FillConvexPoly |
Fill the convex polygon with the specific color
(Inherited from ImageTColor, TDepth.) |
![]() | Finalize |
Destructor
(Inherited from DisposableObject.) |
![]() | FindCornerSubPix |
Iterates to find the sub-pixel accurate location of corners, or radial saddle points
(Inherited from ImageTColor, TDepth.) |
![]() | Flip | Return a flipped copy of the current image (Inherited from ImageTColor, TDepth.) |
![]() | GetAverage |
Get the average value on this image
(Inherited from ImageTColor, TDepth.) |
![]() | GetAverage(ImageGray, Byte) |
Get the average value on this image, using the specific mask
(Inherited from ImageTColor, TDepth.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetInputArray |
The unmanaged pointer to the input array.
(Inherited from CvArrayTDepth.) |
![]() | GetInputOutputArray |
The unmanaged pointer to the input output array.
(Inherited from CvArrayTDepth.) |
![]() | GetMoments |
Calculates spatial and central moments up to the third order and writes them to moments. The moments may be used then to calculate gravity center of the shape, its area, main axises and various shape characteristics including 7 Hu invariants.
(Inherited from ImageTColor, TDepth.) |
![]() | GetObjectData |
A function used for runtime serialization of the object
(Overrides ImageTColor, TDepthGetObjectData(SerializationInfo, StreamingContext).) |
![]() | GetOutputArray |
The unmanaged pointer to the output array.
(Inherited from CvArrayTDepth.) |
![]() | GetSchema |
Get the xml schema
(Inherited from CvArrayTDepth.) |
![]() | GetSubRect |
Get a subimage which image data is shared with the current image.
(Inherited from ImageTColor, TDepth.) |
![]() | GetSum | Get the sum for each color channel (Inherited from ImageTColor, TDepth.) |
![]() | GetType | (Inherited from Object.) |
![]() | GrabCut |
Use grabcut to perform background foreground segmentation.
(Inherited from ImageTColor, TDepth.) |
![]() | HoughCircles |
First apply Canny Edge Detector on the current image,
then apply Hough transform to find circles
(Inherited from ImageTColor, TDepth.) |
![]() | HoughLines |
Apply Canny Edge Detector follows by Probabilistic Hough transform to find line segments in the image
(Inherited from ImageTColor, TDepth.) |
![]() | HoughLinesBinary |
Apply Probabilistic Hough transform to find line segments.
The current image must be a binary image (eg. the edges as a result of the Canny edge detector)
(Inherited from ImageTColor, TDepth.) |
![]() | ImagePointToMapPoint |
Map an image point to a Map point
|
![]() | InPaint | Use inpaint to recover the intensity of the pixels which location defined by mask on this image (Inherited from ImageTColor, TDepth.) |
![]() | InRange(TColor, TColor) | Checks that image elements lie between two scalars (Inherited from ImageTColor, TDepth.) |
![]() | InRange(ImageTColor, TDepth, ImageTColor, TDepth) | Checks that image elements lie between values defined by two images of same size and type (Inherited from ImageTColor, TDepth.) |
![]() | Integral |
Calculates integral images for the source image
(Inherited from ImageTColor, TDepth.) |
![]() | Integral(ImageTColor, Double, ImageTColor, Double) |
Calculates integral images for the source image
(Inherited from ImageTColor, TDepth.) |
![]() | Integral(ImageTColor, Double, ImageTColor, Double, ImageTColor, Double) |
Calculates one or more integral images for the source image
(Inherited from ImageTColor, TDepth.) |
![]() | Laplace |
Calculates Laplacian of the source image by summing second x- and y- derivatives calculated using Sobel operator.
Specifying aperture_size=1 gives the fastest variant that is equal to convolving the image with the following kernel:
|0 1 0|
|1 -4 1|
|0 1 0|
(Inherited from ImageTColor, TDepth.) |
![]() | Log |
Calculates natural logarithm of absolute value of every element of input array
(Inherited from ImageTColor, TDepth.) |
![]() | LogPolar |
Convert the image to log polar, simulating the human foveal vision
(Inherited from ImageTColor, TDepth.) |
![]() | MapPointToImagePoint(PointF) |
Map a point to a position in the internal image
|
![]() | MapPointToImagePoint(MCvPoint2D64f) |
Map a point to a position in the internal image
|
![]() | MatchTemplate |
The function slides through image, compares overlapped patches of size wxh with templ using the specified method and return the comparison results
(Inherited from ImageTColor, TDepth.) |
![]() | Max(Double) | Find the elementwise maximum value (Inherited from ImageTColor, TDepth.) |
![]() | Max(ImageTColor, TDepth) | Find the elementwise maximum value (Inherited from ImageTColor, TDepth.) |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() | Min(Double) | Find the elementwise minimum value (Inherited from ImageTColor, TDepth.) |
![]() | Min(ImageTColor, TDepth) | Find the elementwise minimum value (Inherited from ImageTColor, TDepth.) |
![]() | MinMax |
Returns the min / max location and values for the image
(Inherited from ImageTColor, TDepth.) |
![]() | MorphologyEx |
Perform advanced morphological transformations using erosion and dilation as basic operations.
(Inherited from ImageTColor, TDepth.) |
![]() | Mul(Double) | Elementwise multiply the current image with scale (Inherited from ImageTColor, TDepth.) |
![]() | Mul(ImageTColor, TDepth) | Elementwise multiply img2 with the current image (Inherited from ImageTColor, TDepth.) |
![]() | Mul(ImageTColor, TDepth, Double) | Elementwise multiply another image with the current image and the scale (Inherited from ImageTColor, TDepth.) |
![]() | Not |
Compute the complement image
(Inherited from ImageTColor, TDepth.) |
![]() | Or(ImageTColor, TDepth) | Perform an elementwise OR operation with another image and return the result (Inherited from ImageTColor, TDepth.) |
![]() | Or(ImageTColor, TDepth, ImageGray, Byte) | Perform an elementwise OR operation with another image, using a mask, and return the result (Inherited from ImageTColor, TDepth.) |
![]() | Pow |
Raises every element of input array to p
dst(I)=src(I)^p, if p is integer
dst(I)=abs(src(I))^p, otherwise
(Inherited from ImageTColor, TDepth.) |
![]() | PyrDown |
Performs downsampling step of Gaussian pyramid decomposition.
First it convolves this image with the specified filter and then downsamples the image
by rejecting even rows and columns.
(Inherited from ImageTColor, TDepth.) |
![]() | PyrUp |
Performs up-sampling step of Gaussian pyramid decomposition.
First it upsamples this image by injecting even zero rows and columns and then convolves
result with the specified filter multiplied by 4 for interpolation.
So the resulting image is four times larger than the source image.
(Inherited from ImageTColor, TDepth.) |
![]() | ReadXml |
Function to call when deserializing this object from XML
(Inherited from CvArrayTDepth.) |
![]() | ReduceTOtherDepth |
Reduces matrix to a vector by treating the matrix rows/columns as a set of 1D vectors and performing the specified operation on the vectors until a single row/column is obtained.
(Inherited from CvArrayTDepth.) |
![]() | ReleaseManagedResources |
Release the managed resources. This function will be called during the disposal of the current object.
override ride this function if you need to call the Dispose() function on any managed IDisposable object created by the current object
(Inherited from DisposableObject.) |
![]() | Resize(Double, Inter) |
Scale the image to the specific size: width *= scale; height *= scale
(Inherited from ImageTColor, TDepth.) |
![]() | Resize(Int32, Int32, Inter) |
Scale the image to the specific size
(Inherited from ImageTColor, TDepth.) |
![]() | Resize(Int32, Int32, Inter, Boolean) |
Scale the image to the specific size
(Inherited from ImageTColor, TDepth.) |
![]() | Rotate(Double, TColor) |
Rotate the image the specified angle cropping the result to the original size
(Inherited from ImageTColor, TDepth.) |
![]() | Rotate(Double, TColor, Boolean) |
Rotate this image the specified angle (Inherited from ImageTColor, TDepth.) |
![]() | Rotate(Double, PointF, Inter, TColor, Boolean) |
Rotate this image the specified angle (Inherited from ImageTColor, TDepth.) |
![]() | Save |
Save this image to the specific file.
(Inherited from ImageTColor, TDepth.) |
![]() | SetIdentity |
Initialize the identity matrix
(Inherited from CvArrayTDepth.) |
![]() | SetIdentity(MCvScalar) |
Initializes scaled identity matrix
(Inherited from CvArrayTDepth.) |
![]() | SetRandNormal |
Inplace fills Array with normally distributed random numbers
(Inherited from CvArrayTDepth.) |
![]() | SetRandUniform |
Inplace fills Array with uniformly distributed random numbers
(Inherited from CvArrayTDepth.) |
![]() | SetValue(TColor) |
Set every pixel of the image to the specific color
(Inherited from ImageTColor, TDepth.) |
![]() | SetValue(Double, CvArrayByte) |
Set the element of the Array to value, using the specific mask (Inherited from CvArrayTDepth.) |
![]() | SetValue(TColor, ImageGray, Byte) |
Set every pixel of the image to the specific color, using a mask
(Inherited from ImageTColor, TDepth.) |
![]() | SetValue(MCvScalar, CvArrayByte) |
Set the element of the Array to value, using the specific mask (Inherited from CvArrayTDepth.) |
![]() | SetZero |
Set the values to zero
(Inherited from CvArrayTDepth.) |
![]() | SmoothBilateral |
Applying bilateral 3x3 filtering
(Inherited from ImageTColor, TDepth.) |
![]() | SmoothBlur(Int32, Int32) |
Summation over a pixel param1 x param2 neighborhood with subsequent scaling by 1/(param1 x param2)
(Inherited from ImageTColor, TDepth.) |
![]() | SmoothBlur(Int32, Int32, Boolean) |
Summation over a pixel param1 x param2 neighborhood. If scale is true, the result is subsequent scaled by 1/(param1 x param2)
(Inherited from ImageTColor, TDepth.) |
![]() | SmoothGaussian(Int32) | Perform Gaussian Smoothing in the current image and return the result (Inherited from ImageTColor, TDepth.) |
![]() | SmoothGaussian(Int32, Int32, Double, Double) | Perform Gaussian Smoothing in the current image and return the result (Inherited from ImageTColor, TDepth.) |
![]() | SmoothMedian |
Finding median of sizexsize neighborhood
(Inherited from ImageTColor, TDepth.) |
![]() | Sobel |
Calculates the image derivative by convolving the image with the appropriate kernel
The Sobel operators combine Gaussian smoothing and differentiation so the result is more or less robust to the noise. Most often, the function is called with (xorder=1, yorder=0, aperture_size=3) or (xorder=0, yorder=1, aperture_size=3) to calculate first x- or y- image derivative.
(Inherited from ImageTColor, TDepth.) |
![]() | Split |
Split current Image into an array of gray scale images where each element
in the array represent a single color channel of the original image
(Inherited from ImageTColor, TDepth.) |
![]() | Sub(ImageTColor, TDepth) | Elementwise subtract another image from the current image (Inherited from ImageTColor, TDepth.) |
![]() | Sub(ImageTColor, TDepth, ImageGray, Byte) | Elementwise subtract another image from the current image, using a mask (Inherited from ImageTColor, TDepth.) |
![]() | SubR(TColor) |
result = val - this
(Inherited from ImageTColor, TDepth.) |
![]() | SubR(TColor, ImageGray, Byte) |
result = val - this, using a mask
(Inherited from ImageTColor, TDepth.) |
![]() | ThresholdAdaptive |
Transforms grayscale image to binary image.
Threshold calculated individually for each pixel.
For the method CV_ADAPTIVE_THRESH_MEAN_C it is a mean of blockSize x blockSize pixel
neighborhood, subtracted by param1.
For the method CV_ADAPTIVE_THRESH_GAUSSIAN_C it is a weighted sum (gaussian) of blockSize x blockSize pixel neighborhood, subtracted by param1.
(Inherited from ImageTColor, TDepth.) |
![]() | ThresholdBinary |
Threshold the image such that: dst(x,y) = max_value, if src(x,y)>threshold; 0, otherwise
(Inherited from ImageTColor, TDepth.) |
![]() | ThresholdBinaryInv | Threshold the image such that: dst(x,y) = 0, if src(x,y)>threshold; max_value, otherwise (Inherited from ImageTColor, TDepth.) |
![]() | ThresholdToZero | Threshold the image such that: dst(x,y) = src(x,y), if src(x,y)>threshold; 0, otherwise (Inherited from ImageTColor, TDepth.) |
![]() | ThresholdToZeroInv |
Threshold the image such that: dst(x,y) = 0, if src(x,y)>threshold; src(x,y), otherwise
(Inherited from ImageTColor, TDepth.) |
![]() | ThresholdTrunc |
Threshold the image such that: dst(x,y) = threshold, if src(x,y)>threshold; src(x,y), otherwise
(Inherited from ImageTColor, TDepth.) |
![]() | ToBitmap |
Convert this image into Bitmap, the pixel values are copied over to the Bitmap
(Inherited from ImageTColor, TDepth.) |
![]() | ToBitmap(Int32, Int32) | Create a Bitmap image of certain size (Inherited from ImageTColor, TDepth.) |
![]() | ToJpegData |
Get the jpeg representation of the image
(Inherited from ImageTColor, TDepth.) |
![]() | ToString | (Inherited from Object.) |
![]() | ToUMat |
Get the umat representation of this mat
(Inherited from CvArrayTDepth.) |
![]() | WarpAffine(Mat, Inter, Warp, BorderType, TColor) |
Transforms source image using the specified matrix
(Inherited from ImageTColor, TDepth.) |
![]() | WarpAffine(Mat, Int32, Int32, Inter, Warp, BorderType, TColor) |
Transforms source image using the specified matrix
(Inherited from ImageTColor, TDepth.) |
![]() | WarpPerspectiveTMapDepth(MatrixTMapDepth, Inter, Warp, BorderType, TColor) |
Transforms source image using the specified matrix
(Inherited from ImageTColor, TDepth.) |
![]() | WarpPerspectiveTMapDepth(MatrixTMapDepth, Int32, Int32, Inter, Warp, BorderType, TColor) |
Transforms source image using the specified matrix
(Inherited from ImageTColor, TDepth.) |
![]() | WriteXml |
Function to call when serializing this object to XML
(Inherited from CvArrayTDepth.) |
![]() | Xor(ImageTColor, TDepth) | Perform an elementwise XOR operation with another image and return the result (Inherited from ImageTColor, TDepth.) |
![]() | Xor(ImageTColor, TDepth, ImageGray, Byte) |
Perform an elementwise XOR operation with another image, using a mask, and return the result
(Inherited from ImageTColor, TDepth.) |
Name | Description | |
---|---|---|
![]() | _cvMat |
The Mat header that represent this CvArr
(Inherited from CvArrayTDepth.) |
![]() | _dataHandle |
The pinned GCHandle to _array;
(Inherited from CvArrayTDepth.) |
![]() | _ptr |
A pointer to the unmanaged object
(Inherited from UnmanagedObject.) |