Skip to content

gen_image_interleavedGenImageInterleavedGenImageInterleavedgen_image_interleavedgen_image_interleavedπŸ”—

Short descriptionπŸ”—

gen_image_interleavedGenImageInterleavedGenImageInterleavedgen_image_interleavedgen_image_interleaved β€” Create a three-channel image from a pointer to the interleaved pixels.

SignatureπŸ”—

gen_image_interleaved( out image ImageRGB, pointer PixelPointer, string ColorFormat, extent.x OriginalWidth, extent.y OriginalHeight, integer Alignment, string Type, rectangle.extent.x ImageWidth, rectangle.extent.y ImageHeight, rectangle.origin.y StartRow, rectangle.origin.x StartColumn, integer BitsPerChannel, integer BitShift )void GenImageInterleaved( HObject* ImageRGB, const HTuple& PixelPointer, const HTuple& ColorFormat, const HTuple& OriginalWidth, const HTuple& OriginalHeight, const HTuple& Alignment, const HTuple& Type, const HTuple& ImageWidth, const HTuple& ImageHeight, const HTuple& StartRow, const HTuple& StartColumn, const HTuple& BitsPerChannel, const HTuple& BitShift )static void HOperatorSet.GenImageInterleaved( out HObject imageRGB, HTuple pixelPointer, HTuple colorFormat, HTuple originalWidth, HTuple originalHeight, HTuple alignment, HTuple type, HTuple imageWidth, HTuple imageHeight, HTuple startRow, HTuple startColumn, HTuple bitsPerChannel, HTuple bitShift )def gen_image_interleaved( pixel_pointer: int, color_format: str, original_width: int, original_height: int, alignment: int, type: str, image_width: int, image_height: int, start_row: int, start_column: int, bits_per_channel: int, bit_shift: int ) -> HObject

Herror gen_image_interleaved( Hobject* ImageRGB, const Hlong PixelPointer, const char* ColorFormat, const Hlong OriginalWidth, const Hlong OriginalHeight, const Hlong Alignment, const char* Type, const Hlong ImageWidth, const Hlong ImageHeight, const Hlong StartRow, const Hlong StartColumn, const Hlong BitsPerChannel, const Hlong BitShift )

Herror T_gen_image_interleaved( Hobject* ImageRGB, const Htuple PixelPointer, const Htuple ColorFormat, const Htuple OriginalWidth, const Htuple OriginalHeight, const Htuple Alignment, const Htuple Type, const Htuple ImageWidth, const Htuple ImageHeight, const Htuple StartRow, const Htuple StartColumn, const Htuple BitsPerChannel, const Htuple BitShift )

void HImage::GenImageInterleaved( void* PixelPointer, const HString& ColorFormat, Hlong OriginalWidth, Hlong OriginalHeight, Hlong Alignment, const HString& Type, Hlong ImageWidth, Hlong ImageHeight, Hlong StartRow, Hlong StartColumn, Hlong BitsPerChannel, Hlong BitShift )

void HImage::GenImageInterleaved( void* PixelPointer, const char* ColorFormat, Hlong OriginalWidth, Hlong OriginalHeight, Hlong Alignment, const char* Type, Hlong ImageWidth, Hlong ImageHeight, Hlong StartRow, Hlong StartColumn, Hlong BitsPerChannel, Hlong BitShift )

void HImage::GenImageInterleaved( void* PixelPointer, const wchar_t* ColorFormat, Hlong OriginalWidth, Hlong OriginalHeight, Hlong Alignment, const wchar_t* Type, Hlong ImageWidth, Hlong ImageHeight, Hlong StartRow, Hlong StartColumn, Hlong BitsPerChannel, Hlong BitShift ) (Windows only)

void HImage.GenImageInterleaved( IntPtr pixelPointer, string colorFormat, int originalWidth, int originalHeight, int alignment, string type, int imageWidth, int imageHeight, int startRow, int startColumn, int bitsPerChannel, int bitShift )

DescriptionπŸ”—

The operator gen_image_interleavedGenImageInterleaved creates a three-channel image from an input image, whose pixels are stored line-sequentially in PixelPointerpixelPointerpixel_pointer. The size of the input image has to be passed in OriginalWidthoriginalWidthoriginal_width and OriginalHeightoriginalHeightoriginal_height, the format of the interleaved pixels in ColorFormatcolorFormatcolor_format.

The output image will be sized ImageWidthimageWidthimage_width * ImageHeightimageHeightimage_height. Together with the coordinates of upper left corner StartRowstartRowstart_row and StartColumnstartColumnstart_column any section of the input image can be extracted. When a 00 is passed to ImageWidthimageWidthimage_width, ImageHeightimageHeightimage_height, StartRowstartRowstart_row, and StartColumnstartColumnstart_column, the output image will have the same dimensions as the input image.

Note that the image type Typetypetype (see gen_image_constGenImageConst) of the output image ImageRGBimageRGBimage_rgb has to be chosen such that the whole range of possible color values of the input image can be represented. I.e. gen_image_interleavedGenImageInterleaved does not allow to create a byte image from an input image with ColorFormatcolorFormatcolor_format 'rgb48'"rgb48".

When the formats 'rgb48'"rgb48", 'bgr48'"bgr48", 'rgbx64'"rgbx64", and 'bgr64'"bgr64" do not use the full range of 16 bits per channel and pixel, the number of actually used bits should be passed in BitsPerChannelbitsPerChannelbits_per_channel. Furthermore, the pixel values of the input image can be shifted by BitShiftbitShiftbit_shift bits to the right.

The fourth channel of four-channel input images in the formats 'rgbx'"rgbx", 'bgrx'"bgrx", 'rgbx64'"rgbx64", and 'bgrx64'"bgrx64" is simply discarded.

The storage for the new image is newly created by HALCON. Thus, it can be released after the call. Note that how to pass a pointer value depends on the used operator signature and programming environment. Make sure to pass the actual memory address where the image data is stored, not the address of a pointer variable. Care must be taken not to truncate 64-bit pointers on 64-bit architectures.

Possible values for ColorFormatcolorFormatcolor_format:

  • β€˜rgb555’: 16 bit rgb triple (5 bit per pixel and channel), the padding bit (X) being the first bit. The bit pattern is XRRRRRGG|GGGBBBBB.

  • β€˜bgr555’: 16 bit bgr triple (5 bit per pixel and channel), the padding bit (X) being the first bit. The bit pattern is XBBBBBGG|GGGRRRRR.

  • β€˜rgb5551’: 16 bit rgb triple (5 bit per pixel and channel), the padding bit (X) being the last bit. The bit pattern is RRRRRGGG|GGBBBBBX.

  • β€˜bgr5551’: 16 bit bgr triple (5 bit per pixel and channel), the padding bit (X) being the last bit. The bit pattern is BBBBBGGG|GGRRRRRX.

  • β€˜rgb565’: 16 bit rgb triple (5 bit per pixel and channel, 6 bit for the green channel). The bit pattern is RRRRRGGG|GGGBBBBB.

  • β€˜bgr565’: 16 bit bgr triple (5 bit per pixel and channel, 6 bit for the green channel). The bit pattern is BBBBBGGG|GGGRRRRR.

  • β€˜rgb’: 24 bit rgb triple (8 bit per pixel and channel)

  • β€˜bgr’: 24 bit bgr triple (8 bit per pixel and channel)

  • β€˜rgbx’: 32 bit rgb quadruple (8 bit per pixel and channel)

  • β€˜bgrx’: 32 bit bgr quadruple (8 bit per pixel and channel)

  • β€˜rgb48’: 48 bit rgb triple (16 bit per pixel and channel)

  • β€˜bgr48’: 48 bit bgr triple (16 bit per pixel and channel)

  • β€˜rgbx64’: 64 bit rgb quadruple (16 bit per pixel and channel)

  • β€˜bgrx64’: 64 bit bgr quadruple (16 bit per pixel and channel)

The values 'rgb555'"rgb555", 'bgr555'"bgr555", 'rgb565'"rgb565", 'bgr565'"bgr565", 'rgb5551'"rgb5551" and 'bgr5551'"bgr5551" can be used with the suffix β€˜le’ (Little Endian: Lower byte is expected first) or - which is the default if the suffix is omitted - β€˜be’ (Big Endian: Higher byte is expected first). For example, the bit pattern for ColorFormatcolorFormatcolor_format = 'rgb555'"rgb555" is XRRRRRGG|GGGBBBBB, while the bit pattern for ColorFormatcolorFormatcolor_format = 'rgb555le'"rgb555le" is GGGBBBBB|XRRRRRGG.

AttentionπŸ”—

gen_image_interleavedGenImageInterleaved does not check whether the PixelPointerpixelPointerpixel_pointer is valid or not. Thus, it must be ensured by the user that it is valid. Otherwise, the program may crash!

Execution informationπŸ”—

Execution information
  • Multithreading type: reentrant (runs in parallel with non-exclusive operators).

  • Multithreading scope: global (may be called from any thread).

  • Automatically parallelized on internal data level.

ParametersπŸ”—

ImageRGBimageRGBimage_rgb (output_object) image β†’ object (byte / uint2)HObject (byte / uint2)HImage (byte / uint2)HObject (byte / uint2)Hobject * (byte / uint2)

Created image with new image matrix.

PixelPointerpixelPointerpixel_pointer (input_control) pointer β†’ (integer)HTuple (Hlong)HTuple (IntPtr)intHtuple (Hlong)

Pointer to interleaved pixels.

ColorFormatcolorFormatcolor_format (input_control) string β†’ (string)HTuple (HString)HTuple (string)strHtuple (char*)

Format of the input pixels.

Default: 'rgb'"rgb"
List of values: 'bgr', 'bgr48', 'bgr555', 'bgr5551', 'bgr5551be', 'bgr5551le', 'bgr555be', 'bgr555le', 'bgr565', 'bgr565be', 'bgr565le', 'bgrx', 'bgrx64', 'rgb', 'rgb48', 'rgb555', 'rgb5551', 'rgb5551be', 'rgb5551le', 'rgb555be', 'rgb555le', 'rgb565', 'rgb565be', 'rgb565le', 'rgbx', 'rgbx64'"bgr", "bgr48", "bgr555", "bgr5551", "bgr5551be", "bgr5551le", "bgr555be", "bgr555le", "bgr565", "bgr565be", "bgr565le", "bgrx", "bgrx64", "rgb", "rgb48", "rgb555", "rgb5551", "rgb5551be", "rgb5551le", "rgb555be", "rgb555le", "rgb565", "rgb565be", "rgb565le", "rgbx", "rgbx64"

OriginalWidthoriginalWidthoriginal_width (input_control) extent.x β†’ (integer)HTuple (Hlong)HTuple (int / long)intHtuple (Hlong)

Width of input image.

Default: 512512
Suggested values: 128, 256, 512, 1024128, 256, 512, 1024
Value range: 1 ≀ OriginalWidth (lin)
Minimum increment: 1
Recommended increment: 10

OriginalHeightoriginalHeightoriginal_height (input_control) extent.y β†’ (integer)HTuple (Hlong)HTuple (int / long)intHtuple (Hlong)

Height of input image.

Default: 512512
Suggested values: 128, 256, 512, 1024128, 256, 512, 1024
Value range: 1 ≀ OriginalHeight (lin)
Minimum increment: 1
Recommended increment: 10

Alignmentalignmentalignment (input_control) integer β†’ (integer)HTuple (Hlong)HTuple (int / long)intHtuple (Hlong)

Reserved.

Typetypetype (input_control) string β†’ (string)HTuple (HString)HTuple (string)strHtuple (char*)

Pixel type of output image.

Default: 'byte'"byte"
List of values: 'byte', 'uint2'"byte", "uint2"

ImageWidthimageWidthimage_width (input_control) rectangle.extent.x β†’ (integer)HTuple (Hlong)HTuple (int / long)intHtuple (Hlong)

Width of output image.

Default: 00
Suggested values: 128, 256, 512, 1024128, 256, 512, 1024
Value range: 0 ≀ ImageWidth (lin)
Minimum increment: 1
Recommended increment: 10

ImageHeightimageHeightimage_height (input_control) rectangle.extent.y β†’ (integer)HTuple (Hlong)HTuple (int / long)intHtuple (Hlong)

Height of output image.

Default: 00
Suggested values: 128, 256, 512, 1024128, 256, 512, 1024
Value range: 0 ≀ ImageHeight (lin)
Minimum increment: 1
Recommended increment: 10

StartRowstartRowstart_row (input_control) rectangle.origin.y β†’ (integer)HTuple (Hlong)HTuple (int / long)intHtuple (Hlong)

Line number of upper left corner of desired image part.

Default: 00
Suggested values: -1, 0-1, 0

StartColumnstartColumnstart_column (input_control) rectangle.origin.x β†’ (integer)HTuple (Hlong)HTuple (int / long)intHtuple (Hlong)

Column number of upper left corner of desired image part.

Default: 00
Suggested values: -1, 0-1, 0

BitsPerChannelbitsPerChannelbits_per_channel (input_control) integer β†’ (integer)HTuple (Hlong)HTuple (int / long)intHtuple (Hlong)

Number of used bits per pixel and channel of the output image (-1: All bits are used).

Default: -1-1
Suggested values: 5, 8, 10, 12, 16, -15, 8, 10, 12, 16, -1

BitShiftbitShiftbit_shift (input_control) integer β†’ (integer)HTuple (Hlong)HTuple (int / long)intHtuple (Hlong)

Number of bits that the color values of the input pixels are shifted to the right (only uint2 images).

Default: 00
Suggested values: 0, 2, 4, 60, 2, 4, 6

ResultπŸ”—

If the parameter values are correct, the operator gen_image_interleavedGenImageInterleaved returns the value 2 (H_MSG_TRUE). Otherwise an exception is raised.

Combinations with other operatorsπŸ”—

Combinations

Possible successors

disp_colorDispColor

See also

reduce_domainReduceDomain, paint_grayPaintGray, paint_regionPaintRegion, set_grayvalSetGrayval, gen_image_constGenImageConst

ModuleπŸ”—

Foundation