Live broadcast mall platform, images are displayed side by side

On the live broadcast mall platform, the images show the relevant codes in the form of side-by-side
Halcon code

read_image (Image, 'claudia')                   //Read image
concat_obj (Image, Image, Images)               //Connect two iconic object tuples
tile_images (Images, TiledImage1, 1, 'vertical')  //Tile multiple image objects into a large image
tile_images (Images, TiledImage2, 2, 'horizontal')
scale_image (Image, ImageInverted, -1, 256)         //Scales the gray value of the image.
concat_obj (ImageInverted, ImageInverted, ImagesInverted) //Connect two iconic object tuples
concat_obj (Images, ImagesInverted, Images4)
tile_images (Images4, TiledImage3, 2, 'horizontal')
tile_images (Images4, TiledImage4, 2, 'vertical')
mirror_image (Image, ImageMirror, 'row')                  //mirror image
concat_obj (Images4, ImageMirror, Images5)
tile_images (Images5, TiledImage5, 3, 'horizontal')
tile_images (Images5, TiledImage6, 3, 'vertical')
mirror_image (Image, ImageMirror2, 'column')
concat_obj (ImageMirror2, ImageMirror2, ImagesMirror)
concat_obj (Images5, ImagesMirror, Images7)
tile_images (Images7, TiledImage7, 5, 'horizontal')
tile_images (Images7, TiledImage8, 5, 'vertical')

1.1 key function analysis
1.1.1 concat_obj (Operator)
concat_obj -- connecting two iconic object tuples

concat_obj(Objects1, Objects2 : ObjectsConcat : : )
//Objects1 (input_object)   	--Object tuple 1.
//Objects2 (input_object)   	--Object tuple 2.
//ObjectsConcat (output_object) --Concatenated objects. 

1.1.1.1 description
concat_obj connects the two tuples of the symbolic objects Objects1 and Objects2 into a new symbolic object ObjectsConcat tuple. Therefore, this tuple contains all symbolic objects of two input tuples:

ObjectsConcat = [Objects1,Objects2]

In ObjectsConcat, the objects of Objects1 are stored first, followed by the objects of Objects2, that is, the order of objects is preserved. Note that ObjectsConcat only stores references to the corresponding images and regions, that is, no new memory is allocated. In addition, this means modification of the input image, for example, using set_grayval,overpaint_gray or overpaint_region directly affects the image of the output tuple ObjectsConcat, and vice versa.

concat_obj should not be confused with union1 or union2. They merge regions, that is, they modify the number of objects.

concat_obj can be used to connect objects of different image object types (for example, image and XLD outline) into a single object. This is recommended only when accumulation is required in a single object variable, for example, the result of an image processing sequence. It should be noted that the only operator that can handle this mixed type object tuple is concat_obj,copy_obj,select_obj and disp_obj.

1.1.1 tile_images (Operator)
tile_images - tile multiple image objects into a large image.

tile_images(Images : TiledImage : NumColumns, TileOrder : )
//Images (input_object)     	--Input images.
//TiledImage (output_object)    --Tiled output image.
//NumColumns (input_control) -- the number of columns used to output the image
	Default value: 1
	Suggested values: 1, 2, 3, 4, 5, 6, 7
	Restriction: NumColumns >= 1
//TileOrder (input_control)    	-- The order of the input image in the output image.
	Default value: 'vertical'
	List of values: 'horizontal', 'vertical'

tile_images tiles multiple input image objects (which must contain the same number of channels) into a large image. The input image object images contains num images, which may have different sizes. The output image TiledImage contains as many channels as the input image. In the output image, the num input image is tiled into the NumColumns column. Each block has the same size, which is determined by the maximum width and height of all input images. If the input image is smaller than the block size, it is copied to the center of the corresponding block. When NumColumns has not been determined (that is, if NumColumns! = 1 and NumColumns! = Num), the parameter TileOrder determines the order in which images are copied into the output. If TileOrder = 'horizo ntal', the image will be copied horizontally, that is, the second image of the image will be to the right of the first image. If TileOrder = 'vertical', the image will be copied vertically, that is, the second image of the image will be below the first image. TiledImage's domain is obtained by copying the domains of images to the corresponding position in the output image. If num is not a multiple of NumColumns, the output image will have an undefined gray value in the lower right corner of the image. The output field will reflect this.
The above is the live shopping mall platform. The images show the relevant codes in the form of side-by-side. For more content, please pay attention to the following articles

Keywords: Python list virtualenv

Added by garethhall on Mon, 21 Feb 2022 08:27:10 +0200