You are here: Start » FIL.NET » Function Reference » Image » Image Drawing » FIL.MakeHeatmap
Creates a new Heatmap object.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void MakeHeatmap ( FilNet.Image inImage, int inHeatmapLowerThreshold, int inHeatmapMiddleThreshold, int inHeatmapUpperThreshold, FilNet.Heatmap outHeatmap )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | FilNet.Image | Input image. | ||
![]() | inHeatmapLowerThreshold | int | <0, INF> | 0 | Default value: 0. |
![]() | inHeatmapMiddleThreshold | int | <0, INF> | 127 | Default value: 127. |
![]() | inHeatmapUpperThreshold | int | <0, INF> | 255 | Default value: 255. |
![]() | outHeatmap | FilNet.Heatmap |
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | inHeatmapLowerThreshold is greater than inHeatmapUpperThreshold in MakeHeatmap |
DomainError | inHeatmapMiddleThreshold is bigger than inHeatmapUpperThreshold in MakeHeatmap |
DomainError | inHeatmapMiddleThreshold is lower than inHeatmapLowerThreshold in MakeHeatmap |
DomainError | Not supported inImage pixel format in MakeHeatmap. Supported formats: 1xUInt8. |