Skip to content

Commit d66d808

Browse files
add inherited methods to the method list
1 parent 9dded6c commit d66d808

19 files changed

+259
-80
lines changed

programming/cplusplus/api-reference/core/basic-structures/file-image-tag.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ The `CFileImageTag` class represents an image tag that is associated with a file
1616

1717
*Assembly:* DynamsoftCore
1818

19+
*Inheritance:* [CImageTag]({{ site.dcvb_cpp_api }}core/basic-structures/image-tag.html) -> CFileImageTag
20+
1921
```cpp
2022
class CFileImageTag : public CImageTag
2123
```
@@ -29,10 +31,9 @@ class CFileImageTag : public CImageTag
2931
| [`GetTotalPages`](#gettotalpages) | Gets the total page number of the Multi-Page image file. |
3032
| [`CFileImageTag`](#cfileimagetag-constructor) | The constructor of the CFileImageTag class. |
3133
| [`~CFileImageTag`](#cfileimagetag-destructor) | The destructor of the CFileImageTag class. |
32-
33-
### Inherited Methods
34-
35-
{%- include inherited-methods/image-tag.md -%}
34+
| Inherited Methods from [CImageTag]({{ site.dcvb_cpp_api }}core/basic-structures/image-tag.html): | |
35+
| [`GetType`]({{ site.dcvb_cpp_api }}core/basic-structures/image-tag.html#gettype) | Gets the type of the image tag. |
36+
| [`Clone`]({{ site.dcvb_cpp_api }}core/basic-structures/image-tag.html#clone) | Creates a copy of the image tag. |
3637
3738
### GetFilePath
3839

programming/cplusplus/api-reference/core/basic-structures/original-image-result-item.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,25 @@ The `COriginalImageResultItem` class represents a captured original image result
1818

1919
*Assembly:* DynamsoftCore
2020

21+
*Inheritance:* [CCapturedResultItem]({{ site.dcvb_cpp_api }}core/basic-structures/captured-result-item.html) -> COriginalImageResultItem
22+
2123
```cpp
2224
class COriginalImageResultItem: public CCapturedResultItem
2325
```
2426
2527
## Methods Summary
2628
27-
| Method | Description |
28-
| ------------------------------- | ------------------------------------------------ |
29+
| Method | Description |
30+
|----------------------|-------------|
2931
| [`GetImageData`](#getimagedata) | Gets the image data for the `COriginalImageResultItem`. |
30-
31-
### Inherited Methods
32-
33-
{%- include inherited-methods/captured-result-item.md -%}
32+
| **Inherited Methods from [CCapturedResultItem]({{ site.dcvb_cpp_api }}core/basic-structures/captured-result-item.html):** | |
33+
| [`GetType`]({{ site.dcvb_cpp_api }}core/basic-structures/captured-result-item.html#gettype) | Gets the type of the captured result item. |
34+
| [`GetReferenceItem`]({{ site.dcvb_cpp_api }}core/basic-structures/captured-result-item.html#getreferenceitem) | Gets a pointer to the referenced item in the captured result item. |
35+
| [`GetTargetROIDefName`]({{ site.dcvb_cpp_api }}core/basic-structures/captured-result-item.html#gettargetroidefname) | Gets the name of the target ROI definition. |
36+
| [`GetTaskName`]({{ site.dcvb_cpp_api }}core/basic-structures/captured-result-item.html#gettaskname) | Gets the name of the task. |
37+
| [`Retain`]({{ site.dcvb_cpp_api }}core/basic-structures/captured-result-item.html#retain) | Increases the reference count of the captured result item. |
38+
| [`Release`]({{ site.dcvb_cpp_api }}core/basic-structures/captured-result-item.html#release) | Decreases the reference count of the captured result item. |
39+
| [`Clone`]({{ site.dcvb_cpp_api }}core/basic-structures/captured-result-item.html#clone) | Creates a copy of the captured result item. |
3440
3541
### GetImageData
3642

programming/cplusplus/api-reference/core/basic-structures/video-frame-tag.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ The `CVideoFrameTag` class represents a video frame tag, which is a type of imag
1616

1717
*Assembly:* DynamsoftCore
1818

19+
*Inheritance:* [CImageTag]({{ site.dcvb_cpp_api }}core/basic-structures/image-tag.html) -> CVideoFrameTag
20+
1921
```cpp
2022
class CVideoFrameTag: public CImageTag
2123
```
@@ -31,10 +33,9 @@ class CVideoFrameTag: public CImageTag
3133
| [`GetOriginalHeight`](#getoriginalheight) | Gets the original height of the video frame. |
3234
| [`CVideoFrameTag`](#cvideoframetag-constructor) | The constructor of the `CVideoFrameTag` class. |
3335
| [`~CVideoFrameTag`](#cvideoframetag-destructor) | The destructor of the `CVideoFrameTag` class. |
34-
35-
### Inherited Methods
36-
37-
{%- include inherited-methods/image-tag.md -%}
36+
| Inherited Methods from [CImageTag]({{ site.dcvb_cpp_api }}core/basic-structures/image-tag.html): | |
37+
| [`GetType`]({{ site.dcvb_cpp_api }}core/basic-structures/image-tag.html#gettype) | Gets the type of the image tag. |
38+
| [`Clone`]({{ site.dcvb_cpp_api }}core/basic-structures/image-tag.html#clone) | Creates a copy of the image tag. |
3839
3940
### GetVideoFrameQuality
4041

programming/cplusplus/api-reference/core/intermediate-results/binary-image-unit.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ The `CBinaryImageUnit` class represents a unit that contains a binary image. It
1616

1717
*Assembly:* DynamsoftCore
1818

19+
*Inheritance:* [CIntermediateResultUnit]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html) -> CBinaryImageUnit
20+
1921
```cpp
2022
class CBinaryImageUnit : public CIntermediateResultUnit
2123
```
@@ -26,10 +28,19 @@ class CBinaryImageUnit : public CIntermediateResultUnit
2628
|----------------------|-------------|
2729
| [`GetImageData`](#getimagedata) | Gets the binary image data. |
2830
| [`SetImageData`](#setimagedata) | Sets the binary image data. |
29-
30-
### Inherited Methods
31-
32-
{%- include inherited-methods/intermediate-result-unit.md -%}
31+
| Inherited Methods from [CIntermediateResultUnit]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html): | |
32+
| [`GetHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#gethashid) | Gets the hash ID of the unit.|
33+
| [`GetOriginalImageHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#getoriginalimagehashid) | Gets the hash ID of the original image. |
34+
| [`GetOriginalImageTag`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#getoriginalimagetag) | Gets the image tag of the original image. |
35+
| [`GetType`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#gettype) | Gets the type of the intermediate result unit. |
36+
| [`Clone`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#clone) | Creates a copy of the intermediate result unit. |
37+
| [`SetHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#sethashid) | Sets the hash ID of the unit. |
38+
| [`SetOriginalImageHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#setoriginalimagehashid) | Sets the hash ID of the original image. |
39+
| [`SetOriginalImageTag`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#setoriginalimagetag) | Sets the image tag of the original image. |
40+
| [`Retain`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#retain) | Increases the reference count of the unit. |
41+
| [`Release`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#release) | Decreases the reference count of the unit. |
42+
| [`GetTransformMatrix`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#gettransformmatrix) | Gets the transformation matrix via TransformMatrixType. |
43+
| [`SetTransformMatrix`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#settransformmatrix) | Sets the transformation matrix via TransformMatrixType. |
3344
3445
### GetImageData
3546

programming/cplusplus/api-reference/core/intermediate-results/colour-image-unit.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ The `CColourImageUnit` class represents a unit that contains color image. It is
1616

1717
*Assembly:* DynamsoftCore
1818

19+
*Inheritance:* [CIntermediateResultUnit]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html) -> CColourImageUnit
20+
1921
```cpp
2022
class CColourImageUnit : public CIntermediateResultUnit
2123
```
@@ -26,10 +28,19 @@ class CColourImageUnit : public CIntermediateResultUnit
2628
|----------------------|-------------|
2729
| [`GetImageData`](#getimagedata) | Gets the image data of the color image unit. |
2830
| [`SetImageData`](#setimagedata) | Sets the image data of the color image unit. |
29-
30-
### Inherited Methods
31-
32-
{%- include inherited-methods/intermediate-result-unit.md -%}
31+
| **Inherited Methods from [CIntermediateResultUnit]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html):** | |
32+
| [`GetHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#gethashid) | Gets the hash ID of the unit. |
33+
| [`GetOriginalImageHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#getoriginalimagehashid) | Gets the hash ID of the original image. |
34+
| [`GetOriginalImageTag`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#getoriginalimagetag) | Gets the tag of the original image. |
35+
| [`GetType`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#gettype) | Gets the type of the intermediate result unit. |
36+
| [`Clone`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#clone) | Creates a copy of the intermediate result unit. |
37+
| [`SetHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#sethashid) | Sets the hash ID of the unit. |
38+
| [`SetOriginalImageHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#setoriginalimagehashid) | Sets the hash ID of the original image. |
39+
| [`SetOriginalImageTag`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#setoriginalimagetag) | Sets the tag of the original image. |
40+
| [`Retain`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#retain) | Increases the reference count of the unit. |
41+
| [`Release`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#release) | Decreases the reference count of the unit. |
42+
| [`GetTransformMatrix`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#gettransformmatrix) | Gets the transformation matrix via `CTransformMatrixType`. |
43+
| [`SetTransformMatrix`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#settransformmatrix) | Sets the transformation matrix via `CTransformMatrixType`. |
3344
3445
### GetImageData
3546

programming/cplusplus/api-reference/core/intermediate-results/contours-unit.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ The `CContoursUnit` class represents a unit that contains contours as intermedia
1616

1717
*Assembly:* DynamsoftCore
1818

19+
*Inheritance:* [CIntermediateResultUnit]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html) -> CContoursUnit
20+
1921
```cpp
2022
class CContoursUnit : public CIntermediateResultUnit
2123
```
@@ -26,10 +28,19 @@ class CContoursUnit : public CIntermediateResultUnit
2628
|---------------------------|---------------------------------------------|
2729
| [`GetContours`](#getcontours) | Gets the contours. |
2830
| [`SetContours`](#setcontours) | Sets the contours. |
29-
30-
### Inherited Methods
31-
32-
{%- include inherited-methods/intermediate-result-unit.md -%}
31+
| **Inherited Methods from [CIntermediateResultUnit]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html):** | |
32+
| [`GetHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#gethashid) | Gets the hash ID of the unit. |
33+
| [`GetOriginalImageHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#getoriginalimagehashid) | Gets the hash ID of the original image. |
34+
| [`GetOriginalImageTag`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#getoriginalimagetag) | Gets the tag of the original image. |
35+
| [`GetType`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#gettype) | Gets the type of the intermediate result unit. |
36+
| [`Clone`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#clone) | Creates a copy of the intermediate result unit. |
37+
| [`SetHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#sethashid) | Sets the hash ID of the unit. |
38+
| [`SetOriginalImageHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#setoriginalimagehashid) | Sets the hash ID of the original image. |
39+
| [`SetOriginalImageTag`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#setoriginalimagetag) | Sets the tag of the original image. |
40+
| [`Retain`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#retain) | Increases the reference count of the unit. |
41+
| [`Release`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#release) | Decreases the reference count of the unit. |
42+
| [`GetTransformMatrix`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#gettransformmatrix) | Gets the transformation matrix via `CTransformMatrixType`. |
43+
| [`SetTransformMatrix`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#settransformmatrix) | Sets the transformation matrix via `CTransformMatrixType`. |
3344
3445
### GetContours
3546

programming/cplusplus/api-reference/core/intermediate-results/enhanced-grayscale-image-unit.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ The `CEnhancedGrayscaleImageUnit` class represents an intermediate result unit t
1616

1717
*Assembly:* DynamsoftCore
1818

19+
*Inheritance:* [CIntermediateResultUnit]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html) -> CEnhancedGrayscaleImageUnit
20+
1921
```cpp
2022
class CEnhancedGrayscaleImageUnit : public CIntermediateResultUnit
2123
```
@@ -26,10 +28,19 @@ class CEnhancedGrayscaleImageUnit : public CIntermediateResultUnit
2628
|----------------------|-------------|
2729
| [`GetImageData`](#getimagedata) | Gets the enhanced grayscale image data. |
2830
| [`SetImageData`](#setimagedata) | Sets the enhanced grayscale image data. |
29-
30-
### Inherited Methods
31-
32-
{%- include inherited-methods/intermediate-result-unit.md -%}
31+
| **Inherited Methods from [CIntermediateResultUnit]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html):** | |
32+
| [`GetHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#gethashid) | Gets the hash ID of the unit. |
33+
| [`GetOriginalImageHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#getoriginalimagehashid) | Gets the hash ID of the original image. |
34+
| [`GetOriginalImageTag`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#getoriginalimagetag) | Gets the tag of the original image. |
35+
| [`GetType`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#gettype) | Gets the type of the intermediate result unit. |
36+
| [`Clone`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#clone) | Creates a copy of the intermediate result unit. |
37+
| [`SetHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#sethashid) | Sets the hash ID of the unit. |
38+
| [`SetOriginalImageHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#setoriginalimagehashid) | Sets the hash ID of the original image. |
39+
| [`SetOriginalImageTag`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#setoriginalimagetag) | Sets the tag of the original image. |
40+
| [`Retain`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#retain) | Increases the reference count of the unit. |
41+
| [`Release`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#release) | Decreases the reference count of the unit. |
42+
| [`GetTransformMatrix`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#gettransformmatrix) | Gets the transformation matrix via `CTransformMatrixType`. |
43+
| [`SetTransformMatrix`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#settransformmatrix) | Sets the transformation matrix via `CTransformMatrixType`. |
3344
3445
### GetImageData
3546

programming/cplusplus/api-reference/core/intermediate-results/grayscale-image-unit.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ The `CGrayscaleImageUnit` class represents a grayscale image unit. It is derived
1616

1717
*Assembly:* DynamsoftCore
1818

19+
*Inheritance:* [CIntermediateResultUnit]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html) -> CGrayscaleImageUnit
20+
1921
```cpp
2022
class CGrayscaleImageUnit : public CIntermediateResultUnit
2123
```
@@ -26,10 +28,19 @@ class CGrayscaleImageUnit : public CIntermediateResultUnit
2628
|----------------------|-------------|
2729
| [`GetImageData`](#getimagedata) | Gets the grayscale image. |
2830
| [`SetImageData`](#setimagedata) | Sets the grayscale image. |
29-
30-
### Inherited Methods
31-
32-
{%- include inherited-methods/intermediate-result-unit.md -%}
31+
| **Inherited Methods from [CIntermediateResultUnit]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html):** | |
32+
| [`GetHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#gethashid) | Gets the hash ID of the unit. |
33+
| [`GetOriginalImageHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#getoriginalimagehashid) | Gets the hash ID of the original image. |
34+
| [`GetOriginalImageTag`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#getoriginalimagetag) | Gets the tag of the original image. |
35+
| [`GetType`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#gettype) | Gets the type of the intermediate result unit. |
36+
| [`Clone`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#clone) | Creates a copy of the intermediate result unit. |
37+
| [`SetHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#sethashid) | Sets the hash ID of the unit. |
38+
| [`SetOriginalImageHashId`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#setoriginalimagehashid) | Sets the hash ID of the original image. |
39+
| [`SetOriginalImageTag`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#setoriginalimagetag) | Sets the tag of the original image. |
40+
| [`Retain`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#retain) | Increases the reference count of the unit. |
41+
| [`Release`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#release) | Decreases the reference count of the unit. |
42+
| [`GetTransformMatrix`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#gettransformmatrix) | Gets the transformation matrix via `CTransformMatrixType`. |
43+
| [`SetTransformMatrix`]({{ site.dcvb_cpp_api }}core/intermediate-results/intermediate-result-unit.html#settransformmatrix) | Sets the transformation matrix via `CTransformMatrixType`. |
3344
3445
### GetImageData
3546

0 commit comments

Comments
 (0)