Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5IM_IS_IMAGE

Inquires if a dataset is an image.

Procedure:

H5IM_IS_IMAGE(loc_id, dset_name)

Signature:

herr_t H5IMis_image ( hid_t loc_id, const char *dset_name )

integer function h5imis_image_f(loc_id, dset_name)
  implicit none
  integer(HID_T), intent(IN) :: loc_id         ! file or group identifier 
  character(LEN=*), intent(IN) :: dset_name    ! name of the dataset 
  integer :: errcode                           ! error code
end function h5imis_image_f

Parameters:
hid_t loc_idIN: Identifier of the file or group in which the dataset is located.
const char *dset_name    IN: The name of the dataset.

Description:

H5IMis_image inquires if a dataset  named dset_name, attached to the file or group specified by the identifier loc_id, is an image based on the HDF5 Image and Palette Specification.

Returns:

Returns true, false, fail.

Example:

Coming Soon!

--- Last Modified: December 04, 2017 | 07:19 AM