亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? epr_api.h

?? Insar圖像處理軟件
?? H
?? 第 1 頁 / 共 4 頁
字號:
    /**     * The record info which describes a record of this dataset.     */    EPR_SRecordInfo* record_info;    /**     * A short description of the band's contents     */    char* description;};/** * The <code>EPR_DSD</code> structure contains information * about the propertier of a dataset properties and its location  * within an ENVISAT product file  * * @see epr_read_dsd */struct EPR_DSD{    /**     * The magic number for this structure.     * IMPORTANT: This must always be the first member of this structure.     */    EPR_Magic magic;    /**     * The index of this DSD (zero-based)     */        int index;    /**     * The dataset name.     */        char* ds_name;    /**     * The dataset type descriptor.     */    char* ds_type;    /**     * The filename in the DDDB with the description of this dataset.     */    char* filename;    /**     * The offset of dataset-information the product file.     */    uint ds_offset;    /**     * The size of dataset-information in dataset product file.     */    uint ds_size;    /**     * The number of dataset records for the given dataset name.     */    uint num_dsr;    /**     * The size of dataset record for the given dataset name.     */    uint dsr_size;};/** * The <code>EPR_Record</code> structure represents a  * record instance read from an ENVISAT dataset. * A record is composed of multiple fields. * * @see EPR_Field */struct EPR_Record{    /**     * The magic number for this structure.     * IMPORTANT: This must always be the first member of this structure.     */    EPR_Magic magic;    /**     * The corresponding record info for this record (a 'soft' pointer).     */    EPR_SRecordInfo* info;    /**     * The number of fields contained in this record.     * The value is always equal <code>info->field_infos->length</code> and is     * provided here for convenience only.     */    uint num_fields;    /**     * The record fields. An array of <code>EPR_Field*</code>     * of length <code>info->num_fields</code>     */    EPR_SField** fields;};/** * Represents a field within a record. A field is composed of  * one or more data elements of one of the types defined in the * in <code>field_info</code>. * * @see EPR_Record */struct EPR_Field {    /**     * The magic number for this structure.      * IMPORTANT: This must always be the first member of this structure.     */    EPR_Magic magic;    /**     * The corresponding field info for this field.     * @supplierCardinality 1     */    EPR_SFieldInfo* info;    /**     * The elements of this field.     *     * <p> In order to use the data, this member must be casted to one     * of the following array data types:     * <ol>     *   <li><code>unsigned char*</code> - array of unsigned 8-bit integer elements</li>     *   <li><code>char*</code> - array of signed 8-bit integer fields</li>     *   <li><code>unsigned short*</code> - array of unsigned 16-bit integer elements</li>     *   <li><code>short*</code> - array of signed 16-bit integer elements</li>     *   <li><code>unsigned long*</code> - array of unsigned 32-bit integer elements</li>     *   <li><code>long*</code> - array of signed 32-bit floating point elements</li>     *   <li><code>float*</code> - array of signed 32-bit floating point elements</li>     *   <li><code>double*</code> - array of signed 64-bit floating point elements</li>     *   <li><code>EPR_STime*</code> - array of MJD elements</li>     * </ol>     * Dedicated access routine are available     * The element type is given by <code>info->data_type_id</code> and the array length by     * <code>info->num_elems</code>.     */    void* elems;};/** * Represents a raster in which data will be stored. *   * All 'size' parameter are in PIXEL. */struct EPR_Raster {    /**     * The magic number for this structure.      * IMPORTANT: This must always be the first member of this structure.     */    EPR_Magic magic;    /**     * The data type of the band's pixel values.      * <br>All corresponding with EPR_DataTypeId types are possible     */    EPR_EDataTypeId data_type;    /**     * The width of the source .     */    ulong source_width;     /**     * The height of the source.      */    ulong source_height;     /**     * The sub-sampling for the across-track direction in pixel.      */    ulong source_step_x;     /**     * The sub-sampling for the along-track direction in pixel.     */    ulong source_step_y;     /**     * The width of the raster in pixel.      * <br>raster_width  = (source_width  - 1) / source_step_x + 1     */    ulong raster_width;     /**     * The height of the raster in pixel.      * <br>raster_height = (source_height - 1) / source_step_y + 1     */    ulong raster_height;     /**     * The elements of this raster.      * <br>Its volume is <b>raster_width * raster_height * sizeof(data_type) in bytes</b>.     */    void* buffer;};/** * The <code>EPR_DatasetRef</code> structure represents the information from <code>dddb</code> * <br>with the reference to data name (in dddb), field-name and index * of the element in field-array, in which (by name) searchable values are located. * Example for the search for a scaling_offset information: * This information for the <code>reflec_10</code> is described with the <code>Scaling_Factor_GADS.22.10</code> * In <code>dataset_id</code> the searched ENVISAT product name (e.g. <code>MER_RR__2P</code>) is located. * <br>In the corresponding file (e.g. <code>/product/MER_RR__2P.dd</code>) the path,  * how to find that information will be decribed. * In that file, in the field number <code>22</code> there is an information about the location  * of the searched value in the ENVISAT product data. * * @see EPR_SDatasetId */struct EPR_DatasetRef{    EPR_SDatasetId* dataset_id;    int             field_index; /* -1 if not used */    int             elem_index;  /* -1 if not used */};/** * Represents a flag-field within a flag-record. *  */struct EPR_FlagDef {    /**     * The magic number for this structure.      * IMPORTANT: This must always be the first member of this structure.     */    EPR_Magic magic;    /**     * The flag name.     */    char* name;     /**     * The bit number, where this flag can appear.     */    uint bit_index;     /**     * The flag description.     */    char* description;};/** * The <code>EPR_BandId</code> structure contains information * about a band within an ENVISAT product file which has been opened with the * <code>epr_open_product()</code> API function. * * A new <code>EPR_BandId</code> instance can be obtained with the * <code>epr_get_band_id()</code> API function. *  * @see epr_open_product * @see epr_get_band_id */struct EPR_BandId{    /**     * The magic number for this structure.      * IMPORTANT: This must always be the first member of this structure.     */    EPR_Magic magic;    /**     * The ID of the product to which this band belongs to.     */    EPR_SProductId* product_id;    /**     * The name as presented to the user in a band selection dialog     * (also known as spectral subset)     */    char* band_name;    /**     * The (zero-based) spectral band index. -1 if this is not a spectral band.     */    int spectr_band_index;    /**     * The reference of the source dataset containing the raw data used to     * create the band's pixel values. The external format used in the DDDB      * is <MDS-name>.<field>, where <field> is a one-based index (field=1      * corresponds to the first field)     */     EPR_SDatasetRef dataset_ref;     /**     * The sample model operation applied to the source dataset for getting the     * correct samples from the MDS (e.g. MERIS L2). Possible values are     * *  --> no operation (direct copy)     * 1OF2  --> first byte of 2-byte interleaved MDS     * 2OF2  --> second byte of 2-byte interleaved MDS     * 0123  --> combine 3-bytes interleaved to 4-byte integer     */     EPR_ESampleModel sample_model;     /**     * The data type of the band's pixel values. Possible values are:     * <p><ld>     * <li>*     --> the datatype remains unchanged.</li>     * UChar  --> 8-bit unsigned integer     * ULong  --> 32-bit unsigned integer     * Float  --> 32-bit IEEE floating point     * </ld>     */     EPR_EDataTypeId data_type;    /**     * The scaling method which must be applied to the raw source data in order     * to get the 'real' pixel values in geo-physical units. Possible values are:     * *            --> no scaling applied     * Linear_Scale --> linear scaling applied: y = offset + scale * x     * Log_Scale    --> logarithmic scaling applied: y = log10(offset + scale * x)     */     EPR_EScalingMethod scaling_method;     /**     * The scaling offset. Possible values are:     * *            --> no offset provided (implies scaling_method=*)     * <const.>     --> a floating point constant     * <GADS>.<field>[.<field2>]     *              --> value is provided in global annotation dataset with name     *                  <GADS> in field <field>. Optionally a second element index     *                  for multiple-element fields can be given too     */     float scaling_offset;    /**     * The scaling factor. Possible values are:     * *            --> no factor provided (implies scaling_method=*)     * const.       --> a floating point constant     * <GADS>.<field>[.<field2>]     *              --> value is provided in global annotation dataset with name     *                  <GADS> in field <field>. Optionally a second element index     *                  for multiple-element fields can be given too     */     float scaling_factor;    /**     * A bit-mask expression used to filter valid pixels. All others are set to zero.     */     char* bm_expr;    /**     * The flag coding is a list of EPR_SFlag instances. It determines each of the flags      * used in this band (= flags dataset).     * Each flag has a name, a bit-index and a description.     */    EPR_SPtrArray* flag_coding;     /**

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩精品一区二区三区 | 国产成人一区二区精品非洲| 综合久久久久综合| 日韩欧美一区在线观看| 色噜噜久久综合| 国模一区二区三区白浆| 亚洲一区二区免费视频| 中文字幕在线不卡一区| 精品日韩成人av| 欧美精品乱码久久久久久按摩| 成人自拍视频在线观看| 麻豆国产精品官网| 午夜欧美在线一二页| 亚洲欧美另类小说| 欧美国产在线观看| 久久综合成人精品亚洲另类欧美| 欧美剧在线免费观看网站| 播五月开心婷婷综合| 国产精华液一区二区三区| 老司机一区二区| 爽爽淫人综合网网站| 一区二区三区不卡视频在线观看| 国产精品久久精品日日| 中文av字幕一区| 国产欧美综合在线观看第十页| 久久综合久久久久88| 欧美一二三区精品| 7777精品伊人久久久大香线蕉的 | av在线这里只有精品| 国产69精品久久777的优势| 久久综合综合久久综合| 日本强好片久久久久久aaa| 亚洲成人激情自拍| 亚洲v精品v日韩v欧美v专区| 亚洲成人激情av| 午夜精品爽啪视频| 亚洲一区二区影院| 亚洲国产sm捆绑调教视频| 亚洲综合久久久| 午夜精品免费在线观看| 日韩精品91亚洲二区在线观看| 婷婷久久综合九色综合绿巨人| 午夜精品福利一区二区三区蜜桃| 亚洲www啪成人一区二区麻豆| 日韩不卡免费视频| 喷水一区二区三区| 国产综合色在线视频区| 国产99久久久精品| 99在线精品一区二区三区| 99re免费视频精品全部| 色八戒一区二区三区| 欧美日韩亚洲国产综合| 欧美一区二区三区的| xnxx国产精品| 国产精品白丝在线| 一区二区三区在线免费播放| 午夜日韩在线电影| 韩国三级在线一区| av电影天堂一区二区在线观看| 色综合久久中文字幕综合网| 欧美色老头old∨ideo| 日韩精品专区在线影院观看| 欧美国产综合一区二区| 亚洲综合色自拍一区| 蜜桃91丨九色丨蝌蚪91桃色| 国产成人一级电影| 欧美体内she精高潮| 欧美精品一区二区三区在线播放| 欧美激情一区二区三区四区 | 国产+成+人+亚洲欧洲自线| 成人aaaa免费全部观看| 欧美日韩精品三区| 国产丝袜美腿一区二区三区| 亚洲日本成人在线观看| 美国十次了思思久久精品导航| 国产成人av电影免费在线观看| 在线观看网站黄不卡| 欧美精品一区二区三区在线| 亚洲女同女同女同女同女同69| 午夜激情综合网| 成人爽a毛片一区二区免费| 欧美在线观看视频在线| 久久亚洲影视婷婷| 亚洲综合色在线| 国产精品2024| 69av一区二区三区| 中文字幕的久久| 美女一区二区三区在线观看| 91网站视频在线观看| 精品免费视频.| 一区二区三区av电影| 国产一区啦啦啦在线观看| 欧美视频一区二区在线观看| 日本一区二区三区高清不卡| 日韩激情在线观看| 不卡av在线网| 久久综合精品国产一区二区三区| 亚洲伊人伊色伊影伊综合网| 成人晚上爱看视频| 精品成人一区二区三区| 亚洲mv在线观看| 色悠悠亚洲一区二区| 久久综合色婷婷| 日韩高清在线观看| 欧美中文字幕一区二区三区 | 国产一区二区三区黄视频| 欧美怡红院视频| 国产精品灌醉下药二区| 国产一区在线看| 欧美一激情一区二区三区| 亚洲国产精品综合小说图片区| 成人高清免费在线播放| 久久久久国产精品人| 免费国产亚洲视频| 欧美日韩国产免费一区二区 | 色哟哟日韩精品| 日韩伦理电影网| 国产成人免费av在线| 欧美成人精品二区三区99精品| 偷拍自拍另类欧美| 欧美日韩国产电影| 五月婷婷综合网| 91福利国产成人精品照片| 亚洲美腿欧美偷拍| 91免费版在线看| 亚洲欧美成人一区二区三区| 99免费精品在线观看| 国产精品超碰97尤物18| 99久久久无码国产精品| 综合av第一页| 色一区在线观看| 亚洲一区二区视频在线观看| 欧美性受极品xxxx喷水| 亚洲一卡二卡三卡四卡五卡| 欧美伊人久久大香线蕉综合69 | 国产a区久久久| 中文字幕免费在线观看视频一区| 成人一区在线观看| 国产精品久久久久影院| 99久久99久久久精品齐齐| 亚洲同性同志一二三专区| 91小视频免费看| 亚洲伦在线观看| 欧美无砖砖区免费| 午夜av一区二区三区| 欧美丰满嫩嫩电影| 久久99国产精品麻豆| 久久无码av三级| 成人一区二区三区视频| 亚洲欧美日韩人成在线播放| 在线观看一区二区视频| 人妖欧美一区二区| www一区二区| 99久久免费精品| 亚洲成人一区二区| 欧美成人午夜电影| 成人午夜电影小说| 一区二区三区在线播放| 欧美精品v国产精品v日韩精品| 国产在线视频一区二区| 国产精品三级电影| 欧美色综合久久| 国产一区二区调教| 亚洲欧美偷拍卡通变态| 欧美日韩不卡一区| 国产在线播放一区三区四| 最新国产精品久久精品| 欧美日韩久久久| 国产精品亚洲人在线观看| 亚洲精品欧美综合四区| 欧美一级片在线观看| 国产精品99久久久久久宅男| 亚洲乱码中文字幕| 精品久久久久久亚洲综合网| 99精品桃花视频在线观看| 日本中文字幕不卡| 自拍av一区二区三区| 91精品黄色片免费大全| 不卡视频在线观看| 青青青爽久久午夜综合久久午夜| 国产欧美视频在线观看| 欧美日韩精品一区视频| 成人性视频免费网站| 日韩精品电影在线| 亚洲色图另类专区| 欧美成人三级电影在线| 欧美在线播放高清精品| 国产一区二区网址| 日韩专区欧美专区| 国产精品成人在线观看| 欧美不卡一二三| 欧美日韩一级二级| 大白屁股一区二区视频| 日韩黄色免费网站| 中文字幕一区三区| 久久综合色鬼综合色| 欧美喷潮久久久xxxxx| 99精品视频一区二区| 国产成人精品三级麻豆| 美女尤物国产一区|