read_regionread_regionReadRegionReadRegionread_region (算子名称)

名称

read_regionread_regionReadRegionReadRegionread_region — Read binary images or HALCON regions.

参数签名

read_region( : 区域 : FileName : )

Herror read_region(Hobject* 区域, const char* FileName)

Herror T_read_region(Hobject* 区域, const Htuple FileName)

void ReadRegion(HObject* 区域, const HTuple& FileName)

void HRegion::ReadRegion(const HString& FileName)

void HRegion::ReadRegion(const char* FileName)

void HRegion::ReadRegion(const wchar_t* FileName)   ( Windows only)

static void HOperatorSet.ReadRegion(out HObject 区域, HTuple fileName)

void HRegion.ReadRegion(string fileName)

def read_region(file_name: str) -> HObject

描述

The operator read_regionread_regionReadRegionReadRegionReadRegionread_region reads regions from a binary file.

The following formats are currently supported:

HALCON Iconic Object (HOBJ):

File format for iconic HALCON objects. The HOBJ file must contain only regions to be readable by read_regionread_regionReadRegionReadRegionReadRegionread_region. If other objects (e.g., images or XLDs) are stored in the file, an exception is raised. In this case read_objectread_objectReadObjectReadObjectReadObjectread_object can be used to read the corresponding HOBJ file. The HOBJ format is the default file format for regions. Therefore, the extension '.hobj'".hobj"".hobj"".hobj"".hobj"".hobj" does not have to be specified when reading or writing the file. See write_objectwrite_objectWriteObjectWriteObjectWriteObjectwrite_object for more information about the HOBJ format.

HALCON regions:

File format for HALCON regions. This file format supports multiple regions in a single file. The file extension is '.reg'".reg"".reg"".reg"".reg"".reg". This format is now legacy and the HOBJ format should be used instead.

Tiff:

Binary Tiff images with extension 'tiff'"tiff""tiff""tiff""tiff""tiff" or 'tif'"tif""tif""tif""tif""tif". A tiff image can contain any number of regions. The color white is used as foreground.

PNG:

Binary PNG images with extension 'png'"png""png""png""png""png". The result is always one region. The color white is used as foreground.

BMP:

Binary Windows bitmap images with extension 'bmp'"bmp""bmp""bmp""bmp""bmp". The result is always one region. The color white is used as foreground.

A search path ('image_dir'"image_dir""image_dir""image_dir""image_dir""image_dir") can be defined analogous to the operator read_imageread_imageReadImageReadImageReadImageread_image.

注意

The clipping based on the current image format is set via the operator set_system('clip_region',<'true'/'false'>)set_system("clip_region",<"true"/"false">)SetSystem("clip_region",<"true"/"false">)SetSystem("clip_region",<"true"/"false">)SetSystem("clip_region",<"true"/"false">)set_system("clip_region",<"true"/"false">). Consequently, if no image of sufficient size has been created before the call to read_regionread_regionReadRegionReadRegionReadRegionread_region, set_system('clip_region','false')set_system("clip_region","false")SetSystem("clip_region","false")SetSystem("clip_region","false")SetSystem("clip_region","false")set_system("clip_region","false") should be called before calling read_regionread_regionReadRegionReadRegionReadRegionread_region to ensure that the region is not being clipped.

运行信息

参数表

区域区域区域区域区域区域 (output_object)  region(-array) objectHRegionHObjectHRegionHobject *

Read region.

FileNameFileNameFileNameFileNamefileNamefile_name (input_control)  filename.read HTuplestrHTupleHtuple (string) (string) (HString) (char*)

Name of the region to be read.

File extension: .hobj, .reg, .tif, .tiff, .png, .bmp

例程 (HDevelop)

* Reading of regions and giving them gray values.
  read_image(Img,'ima_test')
  read_region(Regs,'reg_test')
  reduce_domain(Img,Regs,Res)

例程 (C)

/* Reading of regions and giving them gray values. */
  read_image(&Img,"ima_test");
  read_region(&Regs,"reg_test");
  reduce_domain(Img,Regs,&Res);

例程 (HDevelop)

* Reading of regions and giving them gray values.
  read_image(Img,'ima_test')
  read_region(Regs,'reg_test')
  reduce_domain(Img,Regs,Res)

例程 (HDevelop)

* Reading of regions and giving them gray values.
  read_image(Img,'ima_test')
  read_region(Regs,'reg_test')
  reduce_domain(Img,Regs,Res)

例程 (HDevelop)

* Reading of regions and giving them gray values.
  read_image(Img,'ima_test')
  read_region(Regs,'reg_test')
  reduce_domain(Img,Regs,Res)

结果

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

可能的前置算子

read_imageread_imageReadImageReadImageReadImageread_image

可能的后置算子

reduce_domainreduce_domainReduceDomainReduceDomainReduceDomainreduce_domain, disp_regiondisp_regionDispRegionDispRegionDispRegiondisp_region

参考其它

write_regionwrite_regionWriteRegionWriteRegionWriteRegionwrite_region, read_imageread_imageReadImageReadImageReadImageread_image, write_objectwrite_objectWriteObjectWriteObjectWriteObjectwrite_object

模块

Foundation