MIL_ID SrcImageBufId, | //in |
MIL_ID DstImageBufOrResultImId, | //in |
MIL_DOUBLE ProjectionAxisAngle, | //in |
MIL_INT64 Operation, | //in |
MIL_DOUBLE OperationValue | //in |
This function projects a two-dimensional image into one dimension, based on the specified projection operation and projection axis angle, writing results to the specified projection image processing result buffer or a destination image buffer. The results are generated based on the specified operation and calculated along each lane of pixels in the image, perpendicular to the specified projection axis angle. The 90° projection of the image (lanes = rows) using a summation operation is known as the row profile; the 0° projection (lanes = columns) as the column profile.
Writing results to a projection image processing result buffer allows you to manipulate results using an array once you have retrieved the results using MimGetResult() or MimGetResult1d().
You can limit this function's results to a region of the source image buffer using a region of interest (ROI) set using MbufSetRegion().
Specifies the identifier of the source image buffer. The image buffer must be a 1-band buffer.
This image buffer can have an ROI set using MbufSetRegion(). The ROI must be defined in raster format (M_RASTER or M_VECTOR_AND_RASTER). An error is generated if the ROI is only in vector format (M_VECTOR).
Specifies the destination buffer in which to write the projection results.
For specifying the projection result buffer
identifier or a destination image buffer
|
|||||||||||||||||||||||||||||||||||||||
Value | Description | ||||||||||||||||||||||||||||||||||||||
Destination image buffer ID |
Specifies the identifier of an image buffer allocated with MbufAlloc...(). The destination image buffer must have the same data type (unsigned, signed, or float) as the source buffer. For an M_SUM operation, this image buffer must be of 32-bit depth. For a M_MAX, M_MEDIAN, or M_MIN operation, this image buffer can have a depth greater than or equal to that of the source image buffer. (summarize)Specifies the identifier of an image buffer allocated with MbufAlloc...(). (more details...) |
||||||||||||||||||||||||||||||||||||||
Destination result buffer ID |
Specifies the identifier of an image processing result buffer allocated using MimAllocResult() with M_PROJ_LIST. The buffer should have as many locations as there are lanes to project in the image perpendicular to the specified projection axis angle. You can read the projection values from the result buffer using MimGetResult1d() or MimGetResult() with M_VALUE. (summarize)Specifies the identifier of an image processing result buffer allocated using MimAllocResult() with M_PROJ_LIST. (more details...) |
Specifies the angle of the projection axis. Lanes are perpendicular to this angle. This parameter can be set to one of the following:
For specifying the angle of projection in
degrees
|
|||||||||||||||||||||||||||||||||||||||
Value | Description | ||||||||||||||||||||||||||||||||||||||
M_0_DEGREE |
Specifies a projection onto the axis at 0° (lanes = columns). |
||||||||||||||||||||||||||||||||||||||
M_90_DEGREE |
Specifies a projection onto the axis at 90° (lanes = rows). |
Specifies the operation to perform.
The following operations are supported.
For specifying the type of operation
|
|||||||||||||||||||||||||||||||||||||||
Value | Description | ||||||||||||||||||||||||||||||||||||||
M_DEFAULT |
Same as M_SUM. |
||||||||||||||||||||||||||||||||||||||
M_MAX |
Specifies to find the maximum pixel value along each lane. |
||||||||||||||||||||||||||||||||||||||
M_MEAN |
Specifies to find the mean pixel value along each lane. |
||||||||||||||||||||||||||||||||||||||
M_MEDIAN |
Specifies to find the median pixel value along each lane. |
||||||||||||||||||||||||||||||||||||||
M_MIN |
Specifies to find the minimum pixel value along each lane. |
||||||||||||||||||||||||||||||||||||||
M_SUM |
Specifies to sum all pixel values along each lane. Note that, if the sum of pixels in any lane is larger than the depth of the result buffer or destination image buffer, the result will be undefined. (summarize)Specifies to sum all pixel values along each lane. (more details...) |
Header | Include mil.h. |
Library | Use mil.lib; milim.lib. |
DLL | Requires mil.dll; milim.dll. |