Delphi-OpenCV/source/ocv.mat.pas
Laentir Valetov 0735df3ea7 Update features2d
[+] clsMatcherSimple.dpr

Signed-off-by: Laentir Valetov <laex@bk.ru>
2015-01-24 01:07:17 +03:00

106 lines
3.8 KiB
ObjectPascal

(*
*****************************************************************
Delphi-OpenCV Demo
Copyright (C) 2013 Project Delphi-OpenCV
****************************************************************
Contributor:
Laentir Valetov
email:laex@bk.ru
Mikhail Grigorev
email:sleuthound@gmail.com
****************************************************************
You may retrieve the latest version of this file at the GitHub,
located at git://github.com/Laex/Delphi-OpenCV.git
****************************************************************
The contents of this file are used with permission, subject to
the Mozilla Public License Version 1.1 (the "License"); you may
not use this file except in compliance with the License. You may
obtain a copy of the License at
http://www.mozilla.org/MPL/MPL-1_1Final.html
Software distributed under the License is distributed on an
"AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
implied. See the License for the specific language governing
rights and limitations under the License.
*******************************************************************
*)
unit ocv.mat;
interface
uses
WinApi.Windows,
ocv.core.types_c,
ocv.core_c,
ocv.highgui_c;
Type
TccvMat = class
public
// similar to CV_ELEM_SIZE(cvmat->type)
function elemSize(): size_t; virtual; stdcall; abstract;
// ! returns the size of element channel in bytes.
function elemSize1(): size_t; virtual; stdcall; abstract;
// ! returns element type, similar to CV_MAT_TYPE(cvmat->type)
function _type: Integer; virtual; stdcall; abstract;
// ! returns element type, similar to CV_MAT_DEPTH(cvmat->type)
function depth: Integer; virtual; stdcall; abstract;
// ! returns element type, similar to CV_MAT_CN(cvmat->type)
function channels: Integer; virtual; stdcall; abstract;
// ! returns step/elemSize1()
function step1(i: Integer = 0): size_t; virtual; stdcall; abstract;
// ! returns true if matrix data is NULL
function empty: bool; virtual; stdcall; abstract;
// ! returns the total number of matrix elements
function total: size_t; virtual; stdcall; abstract;
// * ! includes several bit - fields: - the magic signature - continuity flag - depth - number of channels * /
function flags: Integer; virtual; stdcall; abstract;
// ! the matrix dimensionality, >= 2
function dims: Integer; virtual; stdcall; abstract;
// ! the number of rows and columns or (-1, -1) when the matrix has more than 2 dimensions
function rows: Integer; virtual; stdcall; abstract;
function cols: Integer; virtual; stdcall; abstract;
// ! pointer to the data
function data: pByte; virtual; stdcall; abstract;
procedure copyTo(Var m: TccvMat); virtual; stdcall; abstract;
// ------------------------------------------------
class function Create: TccvMat; overload;
class function Create(rows, cols, _type: Integer): TccvMat; overload;
class function Create(image: pcvImage): TccvMat; overload;
procedure Free; reintroduce;
end;
implementation
uses ocv.lib;
function CreateMat(rows, cols, _type: Integer): TccvMat; stdcall; external opencv_classes_lib name 'CreateMatRCT'; overload;
function CreateMat(m: pIplImage): TccvMat; stdcall; external opencv_classes_lib name 'CreateMatFromImage'; overload;
function CreateMat: TccvMat; stdcall; external opencv_classes_lib name 'CreateMat'; overload;
procedure ReleaseMat(ex: TccvMat); stdcall; external opencv_classes_lib;
{ TocvMat }
class function TccvMat.Create: TccvMat;
begin
Result := CreateMat;
end;
class function TccvMat.Create(rows, cols, _type: Integer): TccvMat;
begin
Result := CreateMat(rows, cols, _type);
end;
class function TccvMat.Create(image: pcvImage): TccvMat;
begin
Result := CreateMat(image);
end;
procedure TccvMat.Free;
begin
ReleaseMat(Self);
end;
end.