Research Institute of Uranium Geology,Beijing , China a

Size: px
Start display at page:

Download "Research Institute of Uranium Geology,Beijing , China a"

Transcription

1 Advanced Materials Research Online: ISSN: , Vols , pp doi: / Trans Tech Publications, Switzerland Discussion on Development of Mineral Identification System Based on IDL Yongfei Che 1,a,Yingjun Zhao 1,Wenhuan Wu 1 1 National Key Laboratory of Remote Sensing Information and Imagery Analyzing Technology Beijing Research Institute of Uranium Geology,Beijing , China a cheyongfei@163.com Keywords: hyperspectral remote sensing; mineral identification module; IDL Abstract. The traditional data processing and analysis method of remote sensing image processing system cannot meet the hyperspectral remote sensing mass data processing and the need of practical application in mineral resources exploration. By studying the systematical analysis and key technology on the hyperspectral mineral information identification module, and analyzing and thinking about the relevant theoretical methods and technical process, carried out the development of hyperspectral mineral information identification module based on IDL and integrated with ENVI software, providing the basic support platform for hyperspectral remote sensing mineral resources exploration. Meanwhile, the existing problems were discussed from the spectral characteristics mechanism analysis of rock and the hyperspectral mineral identification optimization algorithms. Introduction At present, the advantage of hyperspectral remote sensing image-spectrum merging has been applied to the geological field, producing a series of data processing and rock ore information extraction method, and formed a set of conventional process. Among them, the domestic and overseas professional remote sensing image processing system, the most representative of the ERDAS development of ERDAS ERDAS IMAGINE, the United States Exelis Visual Information Solutions company's flagship product ENVI, the Canadian company PCI development of PCI GEOMATICA [1, 2]and the Chinese academy of sciences institute of remote sensing applications independent research and development HIPAS have achieved some success in the processing of hyperspectral data. However, these traditional methods based on the analysis of remote sensing data processing have been difficult to meet in the application of mineral resources exploration, unable to realize the recognition of geological prospecting information effectively. The remote sensing image processing software platform, such as ENVI, PCI, ERDAS IMAGINE has the hyperspectral remote sensing data processing module, but the functions are not comprehensive. Moreover, ENVI software for the lack of special modules of the mineral and rock characteristics information extraction, it just extracted the rocks and minerals information directly by using hyperspectral images. Therefore, it is urgent to develop specially using of rocks and minerals information feature extraction of hyperspectral remote sensing information processing system. Based on the above analysis and the demand, combined with ENVI existing file processing functions, this paper was developed the mineral information extraction of hyperspectral remote sensing processing system, in the form of a plug-in to realize the seamless integration with ENVI remote sensing image processing platform. The main module functions include: spectral All rights reserved. No part of contents of this paper may be reproduced or transmitted in any form or by any means without the written permission of Trans Tech Publications, (ID: , Pennsylvania State University, University Park, USA-05/03/16,14:00:39)

2 1608 New Technologies for Engineering Research and Design in Industry characteristics analysis and mineral information extraction, which offered a new way and the implementation approach for rock and mineral information extraction. Analysis of Hyperspectral Mineral Identification Module Technical Process Analysis. In the process of systematic analysis, using the IDL language development hyperspectral mineral information identification module and seamlessly integrated with the ENVI platform become the special processing module of geological prospecting in ENVI. Based on the actual needs of hyperspectral remote sensing mineral information extraction, the main technological process of the system was designed (Fig. 1). Fig. 1 The System Function Design Functional Analysis. Based on the demand analysis and the technical process analysis, in the IDL language development environment, combining with ENVI file processing functions independently developed the hyperspectral mineral information identification module. In order to achieve these objectives, the analysis of the specific functional requirements as follows: (1)The spectral characteristics analysis sub-module. Analysising of the mineral spectral absorption width, the spectral absorption area, the spectral absorption depth, the spectral slope, the trough position and number, the peak position and number such as characteristic parameters and combined with chemical analysis parameter,construct spectrum relation model. (2) The minerals information extraction sub-module. Using spectral Angle mapping (SAM), spectral correlation coefficient mapping (SCM), spectral information divergence, spectrum waveform matching and spectral feature fitting such as recognition algorithms identified the mineral information. Data Input and Output Analysis.The hyperspectral mineral information identification module is relying on the ENVI platform running, so the data input and output is to use the existing mature technology of ENVI to deal with. Therefore, in this paper the key to consider data input and output is how to connect ENVI data input/output interface with the data processing interface of module, and make them in good state of compatible. Key Technology The main contents of the module function implementation stage include the implementation of the physical system, the program design and debugging and the algorithm implementation, etc. The implementation of the physical system generally refers to the implementation of the computer

3 Advanced Materials Research Vols hardware and software environment and network system. The developed module is a Stand-alone operation mode without network supporting in this paper, so it does not consider the implementation of the network system.in addition,the ENVI + IDL is not high to the requirement of computer hardware and software environment, the current mainstream of graphic image processing of hard and soft system can meet the operation of the software. Therefore, the implementation of the physical system is not be more discussion in this paper, and the emphasis is on two aspects of program design and debugging and algorithm implementation. Program Design. Automatically adding method is used to add customize menu. Using ENVI_DEFINE_MENU_BUTTON function adds a new menu item. Use this function should be noted that in the process of defining a new menu item file, must contain a named filename define buttons, the process of the new menu item is defined in the process, the filename is the program file file name. Using this function should be noted that Defining a new menu item program files must contain a named "filename_define_buttons" process, a new menu item on the definition in this process, where "filename" is the program files names. Data input and output part use ENVI's own functions to achieve in the process of module running, so we have to consider the design of interface between the module and the ENVI platform. Also said, how to open files with ENVI transferred to self-developed modules internal for processing, and the processed data how to save or export by ENVI. ENVI provides a series of file management functions and subroutines for secondary development, and using the document management functions and subroutines and their uses in this paper were summarized as follows: ENVI_GET_FILE_IDS(), this function returns an array containing the currently ID of each open file, and the file ID is a long integer greater than 0.If currently it didn't open the file, it returns 1; ENVI_FILE_QUERY() returns the data file information, including the row number and column number, the band number,the space dimension, the file name, the band name, the data type, etc; ENVI_GET_MAP_INFO() gets the data file of geographic information, etc; ENVI_ENTER_DATA,this subroutine will be transformed array into images, stored in memory calls in ENVI. ENVI_ENTER_DATA calls ENVI_SETUP_HEAD in the process of running, automatically create a header file and returns a file ID of the image memory. Band information has been added to the Available Bands List, which can be used as the use of any other ENVI images. Algorithm Implementation. Based on hyperspectral images with the characteristics of high spectral resolution, and a large amount of data, the SAI algorithm was designed with the ENVI image partition technology[3] and IDL matrix technology[4] in this paper. First of all, using the ENVI image partition technology the image can be divided into several sub-blocks, and reduces the amount of data reading into memory each calculation. A sub-block for (DIMS (2)-DIMS (1) +1) x NB two-dimensional matrix, DIMS is a five elements of long integer array, which defines the Spatial subsetting of the processing data, and NB is the number of bands. Secondly, the (DIMS (2) -DIMS (1) +1) x NB calculated for SAI. If using the traditional FOR loop through each pixel location (DIMS (2)-DIMS (1) +1), extracting its spectral curve (total NB matrix elements) of SAI calculations, this algorithm can only calculate a pixel location like SAI each access, and the computational efficiency is very low.idl is a computer language based on matrix. The data operations on all matrix elements rather than through cyclic matrix each element reduce the difficulty of interaction analysis, reducing the program running time. Using the IDL matrix

4 1610 New Technologies for Engineering Research and Design in Industry computation technology, an access can calculate the entire sub-block for SAI that DIMS(2)-DIMS(1)+1 pixels as SAI. The calculation efficiency is higher DIMS (2) -DIMS (1) +1 times than the FOR loop and with the size of DIMS (2)-DIMS (1) +1 continuing to improve. Issues and Discussion In this paper the development of hyperspectral mineral information identification module based on IDL and integrated with ENVI software provide the basic support platform for hyperspectral remote sensing mineral resources exploration. However, the module is just the prototype of the automatic identification of hyperspectral mineral, based on a combination with ENVI software secondary development and IDL, in the process of system development and integration, and it still exists the following problems that continue to improve and perfect. (1) For the spectral characteristics mechanism analysis of rock ore, especially the spectral characteristics research of mixed minerals both in theory and experiment need to be further strengthened and enhanced. This will directly affect the rock classification of the mineral resource exploration application, recognition algorithm design and application effect. (2) Strengthen the optimization algorithm of different mineral, how to adjust the parallel algorithm and design ideas based on the different application requirements and selecting the corresponding parallel implementation platform (such as cluster, GPU) still need to be further perfect. References [1] Boardman J W, Kruse F A. Automated spectral analysis: a geological example using AVIRIS data, north Grapevine Mountains, Nevada: Proceedings of the Thematic Conference on Geologic Remote Sensing, 1994[C]. Environmental Research Institute of Michigan. [2] Van Der Meer F, Bakker W. CCSM: Cross correlogram spectral matching[j]. International Journal of Remote Sensing, 1997,18(5): [3] Xie H, Hicks N, Randy Keller G, et al. An IDL/ENVI implementation of the FFT-based algorithm for automatic image registration[j].computers & Geosciences, 2003,29(8): [4] Marschallinger R. Three-dimensional reconstruction and visualization of geological materials with IDL examples and source code[j]. Computers & Geosciences, 2001,27(4):

5 New Technologies for Engineering Research and Design in Industry / Discussion on Development of Mineral Identification System Based on IDL / DOI References [2] Van Der Meer F, Bakker W. CCSM: Cross correlogram spectral matching[j]. International Journal of Remote Sensing, 1997, 18(5): /

Design and Implementation of unified Identity Authentication System Based on LDAP in Digital Campus

Design and Implementation of unified Identity Authentication System Based on LDAP in Digital Campus Advanced Materials Research Online: 2014-04-09 ISSN: 1662-8985, Vols. 912-914, pp 1213-1217 doi:10.4028/www.scientific.net/amr.912-914.1213 2014 Trans Tech Publications, Switzerland Design and Implementation

More information

Copyright 2005 Society of Photo-Optical Instrumentation Engineers.

Copyright 2005 Society of Photo-Optical Instrumentation Engineers. Copyright 2005 Society of Photo-Optical Instrumentation Engineers. This paper was published in the Proceedings, SPIE Symposium on Defense & Security, 28 March 1 April, 2005, Orlando, FL, Conference 5806

More information

ENVI Classic Tutorial: Basic Hyperspectral Analysis

ENVI Classic Tutorial: Basic Hyperspectral Analysis ENVI Classic Tutorial: Basic Hyperspectral Analysis Basic Hyperspectral Analysis 2 Files Used in this Tutorial 2 Define ROIs 3 Load AVIRIS Data 3 Create and Restore ROIs 3 Extract Mean Spectra from ROIs

More information

Shape Optimization Design of Gravity Buttress of Arch Dam Based on Asynchronous Particle Swarm Optimization Method. Lei Xu

Shape Optimization Design of Gravity Buttress of Arch Dam Based on Asynchronous Particle Swarm Optimization Method. Lei Xu Applied Mechanics and Materials Submitted: 2014-08-26 ISSN: 1662-7482, Vol. 662, pp 160-163 Accepted: 2014-08-31 doi:10.4028/www.scientific.net/amm.662.160 Online: 2014-10-01 2014 Trans Tech Publications,

More information

A design of real-time image processing platform based on TMS320C6678

A design of real-time image processing platform based on TMS320C6678 Advanced Materials Research Online: 2014-06-25 ISSN: 1662-8985, Vols. 971-973, pp 1454-1458 doi:10.4028/www.scientific.net/amr.971-973.1454 2014 Trans Tech Publications, Switzerland A design of real-time

More information

ENVI Tutorial: Basic Hyperspectral Analysis

ENVI Tutorial: Basic Hyperspectral Analysis ENVI Tutorial: Basic Hyperspectral Analysis Table of Contents OVERVIEW OF THIS TUTORIAL...2 DEFINE ROIS...3 Load AVIRIS Data...3 Create and Restore ROIs...3 Extract Mean Spectra from ROIs...4 DISCRIMINATE

More information

ENVI Tutorial: Geologic Hyperspectral Analysis

ENVI Tutorial: Geologic Hyperspectral Analysis ENVI Tutorial: Geologic Hyperspectral Analysis Table of Contents OVERVIEW OF THIS TUTORIAL...2 Objectives...2 s Used in This Tutorial...2 PROCESSING FLOW...3 GEOLOGIC HYPERSPECTRAL ANALYSIS...4 Overview

More information

A Toolbox for Teaching Image Fusion in Matlab

A Toolbox for Teaching Image Fusion in Matlab Available online at www.sciencedirect.com ScienceDirect Procedia - Social and Behavioral Sciences 197 ( 2015 ) 525 530 7th World Conference on Educational Sciences, (WCES-2015), 05-07 February 2015, Novotel

More information

ENVI Classic Tutorial: Multispectral Analysis of MASTER HDF Data 2

ENVI Classic Tutorial: Multispectral Analysis of MASTER HDF Data 2 ENVI Classic Tutorial: Multispectral Analysis of MASTER HDF Data Multispectral Analysis of MASTER HDF Data 2 Files Used in This Tutorial 2 Background 2 Shortwave Infrared (SWIR) Analysis 3 Opening the

More information

Combining Hyperspectral and LiDAR Data for Building Extraction using Machine Learning Technique

Combining Hyperspectral and LiDAR Data for Building Extraction using Machine Learning Technique Combining Hyperspectral and LiDAR Data for Building Extraction using Machine Learning Technique DR SEYED YOUSEF SADJADI, SAEID PARSIAN Geomatics Department, School of Engineering Tafresh University Tafresh

More information

ENVI Tutorial: Vegetation Hyperspectral Analysis

ENVI Tutorial: Vegetation Hyperspectral Analysis ENVI Tutorial: Vegetation Hyperspectral Analysis Table of Contents OVERVIEW OF THIS TUTORIAL...1 HyMap Processing Flow...4 VEGETATION HYPERSPECTRAL ANALYSIS...4 Examine the Jasper Ridge HyMap Radiance

More information

Application of CAD/CAE/CAM Technology in Plastics Injection Mould Design and Manufacture. Ming He Dai,Zhi Dong Yun

Application of CAD/CAE/CAM Technology in Plastics Injection Mould Design and Manufacture. Ming He Dai,Zhi Dong Yun Advanced Materials Research Vols. 399-401 (2012) pp 2271-2275 Online available since 2011/Nov/22 at www.scientific.net (2012) Trans Tech Publications, Switzerland doi:10.4028/www.scientific.net/amr.399-401.2271

More information

ENVI Classic Tutorial: Introduction to Hyperspectral Data 2

ENVI Classic Tutorial: Introduction to Hyperspectral Data 2 ENVI Classic Tutorial: Introduction to Hyperspectral Data Introduction to Hyperspectral Data 2 Files Used in this Tutorial 2 Background: Imaging Spectrometry 4 Introduction to Spectral Processing in ENVI

More information

The Design of the Sensor Node of IOT Based on SIM20 KUANG Xinghong 1, a,yao Zheyi 1, b, Huo haibo 1, c, Li junjun 1, d, Wu yanxiang 1, e

The Design of the Sensor Node of IOT Based on SIM20 KUANG Xinghong 1, a,yao Zheyi 1, b, Huo haibo 1, c, Li junjun 1, d, Wu yanxiang 1, e Advanced Materials Research Online: 2012-12-13 ISSN: 1662-8985, Vols. 605-607, pp 2375-2378 doi:10.4028/www.scientific.net/amr.605-607.2375 2013 Trans Tech Publications, Switzerland The Design of the Sensor

More information

Serial Communication Based on LabVIEW for the Development of an ECG Monitor

Serial Communication Based on LabVIEW for the Development of an ECG Monitor Advanced Materials Research Online: 2013-08-16 ISSN: 1662-8985, Vols. 734-737, pp 3003-3006 doi:10.4028/www.scientific.net/amr.734-737.3003 2013 Trans Tech Publications, Switzerland Serial Communication

More information

Clustering Analysis based on Data Mining Applications Xuedong Fan

Clustering Analysis based on Data Mining Applications Xuedong Fan Applied Mechanics and Materials Online: 203-02-3 ISSN: 662-7482, Vols. 303-306, pp 026-029 doi:0.4028/www.scientific.net/amm.303-306.026 203 Trans Tech Publications, Switzerland Clustering Analysis based

More information

Storage Model of Graph Based on Variable Collection

Storage Model of Graph Based on Variable Collection Advanced Materials Research Online: 2013-09-04 ISSN: 1662-8985, Vols. 765-767, pp 1456-1460 doi:10.4028/www.scientific.net/amr.765-767.1456 2013 Trans Tech Publications, Switzerland Storage Model of Graph

More information

Hyperspectral Remote Sensing

Hyperspectral Remote Sensing Hyperspectral Remote Sensing Multi-spectral: Several comparatively wide spectral bands Hyperspectral: Many (could be hundreds) very narrow spectral bands GEOG 4110/5100 30 AVIRIS: Airborne Visible/Infrared

More information

Multi-DSP Parallel Processing Platform for Hyperspectral Anomaly Detection

Multi-DSP Parallel Processing Platform for Hyperspectral Anomaly Detection Multi-DSP Parallel Processing Platform for Hyperspectral Anomaly Detection GUO Wenji, MING Xing, ZENG Xiaoru, ZHANG Guifeng, LV Qunbo, ZHAO Baowei, and HUANG Min Key Laboratory of Computational Optical

More information

The Research of A multi-language supporting description-oriented Clustering Algorithm on Meta-Search Engine Result Wuling Ren 1, a and Lijuan Liu 2,b

The Research of A multi-language supporting description-oriented Clustering Algorithm on Meta-Search Engine Result Wuling Ren 1, a and Lijuan Liu 2,b Applied Mechanics and Materials Online: 2012-01-24 ISSN: 1662-7482, Vol. 151, pp 549-553 doi:10.4028/www.scientific.net/amm.151.549 2012 Trans Tech Publications, Switzerland The Research of A multi-language

More information

Research of 3D parametric design system of worm drive based on Pro/E. Hongbin Niu a, Xiaohua Li b

Research of 3D parametric design system of worm drive based on Pro/E. Hongbin Niu a, Xiaohua Li b Advanced Materials Research Online: 2013-06-27 ISSN: 1662-8985, Vols. 712-715, pp 1107-1110 doi:10.4028/www.scientific.net/amr.712-715.1107 2013 Trans Tech Publications, Switzerland Research of 3D parametric

More information

Utilizing Restricted Direction Strategy and Binary Heap Technology to Optimize Dijkstra Algorithm in WebGIS

Utilizing Restricted Direction Strategy and Binary Heap Technology to Optimize Dijkstra Algorithm in WebGIS Key Engineering Materials Online: 2009-10-08 ISSN: 1662-9795, Vols. 419-420, pp 557-560 doi:10.4028/www.scientific.net/kem.419-420.557 2010 Trans Tech Publications, Switzerland Utilizing Restricted Direction

More information

Design of the Software for Wirelessly Intercepting Voices

Design of the Software for Wirelessly Intercepting Voices Advanced Materials Research Online: 2014-05-23 ISSN: 1662-8985, Vols. 926-930, pp 2470-2473 doi:10.4028/www.scientific.net/amr.926-930.2470 2014 Trans Tech Publications, Switzerland Design of the Software

More information

Constructing an University Scientific Research Management Information System of NET Platform Jianhua Xie 1, a, Jian-hua Xiao 2, b

Constructing an University Scientific Research Management Information System of NET Platform Jianhua Xie 1, a, Jian-hua Xiao 2, b Applied Mechanics and Materials Online: 2013-12-04 ISSN: 1662-7482, Vol. 441, pp 984-988 doi:10.4028/www.scientific.net/amm.441.984 2014 Trans Tech Publications, Switzerland Constructing an University

More information

AN IMPROVED ENDMEMBER EXTRACTION ALGORITHM BY INVERSING LINEAR MIXING MODEL

AN IMPROVED ENDMEMBER EXTRACTION ALGORITHM BY INVERSING LINEAR MIXING MODEL AN IMPROVED ENDMEMBER EXTRACTION ALGORITHM BY INVERSING LINEAR MIXING MODEL LI Shanshan, TIAN Qingjiu International Institute for Earth System Science, Nanjing University, Nanjing, 210093, China lisslee@163.com

More information

Research and Design of Laser Accurate Displacement Measurement System Xiaogang Wang 1, a, Yuewei Bai 1,b and Kai Liu 1,c

Research and Design of Laser Accurate Displacement Measurement System Xiaogang Wang 1, a, Yuewei Bai 1,b and Kai Liu 1,c Advanced Materials Research Online: 2011-07-27 ISSN: 1662-8985, Vols. 301-303, pp 1289-1292 doi:10.4028/www.scientific.net/amr.301-303.1289 2011 Trans Tech Publications, Switzerland Research and Design

More information

A Template-Matching-Based Fast Algorithm for PCB Components Detection Haiming Yin

A Template-Matching-Based Fast Algorithm for PCB Components Detection Haiming Yin Advanced Materials Research Online: 2013-05-14 ISSN: 1662-8985, Vols. 690-693, pp 3205-3208 doi:10.4028/www.scientific.net/amr.690-693.3205 2013 Trans Tech Publications, Switzerland A Template-Matching-Based

More information

Research on Remote Sensing Image Template Processing Based on Global Subdivision Theory

Research on Remote Sensing Image Template Processing Based on Global Subdivision Theory www.ijcsi.org 388 Research on Remote Sensing Image Template Processing Based on Global Subdivision Theory Xiong Delan 1, Du Genyuan 1 1 International School of Education, Xuchang University Xuchang, Henan,

More information

Marine fuel boiler system design platform. Hou Ying-ying

Marine fuel boiler system design platform. Hou Ying-ying Advanced Materials Research Submitted: 2014-05-11 ISSN: 1662-8985, Vols. 986-987, pp 1218-1221 Accepted: 2014-05-19 doi:10.4028/www.scientific.net/amr.986-987.1218 Online: 2014-07-18 2014 Trans Tech Publications,

More information

Research Of Data Model In Engineering Flight Simulation Platform Based On Meta-Data Liu Jinxin 1,a, Xu Hong 1,b, Shen Weiqun 2,c

Research Of Data Model In Engineering Flight Simulation Platform Based On Meta-Data Liu Jinxin 1,a, Xu Hong 1,b, Shen Weiqun 2,c Applied Mechanics and Materials Online: 2013-06-13 ISSN: 1662-7482, Vols. 325-326, pp 1750-1753 doi:10.4028/www.scientific.net/amm.325-326.1750 2013 Trans Tech Publications, Switzerland Research Of Data

More information

RESEARCH ON THE VISUALIZATION SYSTEM AND APPLICATIONS OF UNCERTAINTY IN REMOTE SENSING DATA CLASSIFICATION

RESEARCH ON THE VISUALIZATION SYSTEM AND APPLICATIONS OF UNCERTAINTY IN REMOTE SENSING DATA CLASSIFICATION RESEARCH ON THE VISUALIZATION SYSTEM AND APPLICATIONS OF UNCERTAINTY IN REMOTE SENSING DATA CLASSIFICATION YanLiu a, Yanchen Bo b a National Geomatics Center of China, no1. Baishengcun,Zhizhuyuan, Haidian

More information

Spatial Enhancement Definition

Spatial Enhancement Definition Spatial Enhancement Nickolas Faust The Electro- Optics, Environment, and Materials Laboratory Georgia Tech Research Institute Georgia Institute of Technology Definition Spectral enhancement relies on changing

More information

Hyperspectral Processing II Adapted from ENVI Tutorials #14 & 15

Hyperspectral Processing II Adapted from ENVI Tutorials #14 & 15 CEE 615: Digital Image Processing Lab 14: Hyperspectral Processing II p. 1 Hyperspectral Processing II Adapted from ENVI Tutorials #14 & 15 In this lab we consider various types of spectral processing:

More information

Figure 1: Workflow of object-based classification

Figure 1: Workflow of object-based classification Technical Specifications Object Analyst Object Analyst is an add-on package for Geomatica that provides tools for segmentation, classification, and feature extraction. Object Analyst includes an all-in-one

More information

The Design of Wireless Data Collector based on WIA-PA Ligang Li 1,2,a, Zhongfeng Wang 1,2,b, Jianlong Huang 1,2,c

The Design of Wireless Data Collector based on WIA-PA Ligang Li 1,2,a, Zhongfeng Wang 1,2,b, Jianlong Huang 1,2,c Advanced Materials Research Online: 04-06-5 ISSN: 66-8985, Vols. 97-97, pp 79-794 doi:0.408/www.scientific.net/amr.97-97.79 04 Trans Tech Publications, Switzerland The Design of Wireless Data Collector

More information

Research On DB2 Performance Testing Automation

Research On DB2 Performance Testing Automation Advanced Materials Research Online: 2013-09-18 ISSN: 1662-8985, Vols. 756-759, pp 2204-2208 doi:10.4028/www.scientific.net/amr.756-759.2204 2013 Trans Tech Publications, Switzerland Research On DB2 Performance

More information

Self-formation, Development and Reproduction of the Artificial System

Self-formation, Development and Reproduction of the Artificial System Solid State Phenomena Vols. 97-98 (4) pp 77-84 (4) Trans Tech Publications, Switzerland Journal doi:.48/www.scientific.net/ssp.97-98.77 Citation (to be inserted by the publisher) Copyright by Trans Tech

More information

A CNC equipment distributed monitoring system based on cloud computing technology RangYong Zhang a, Geng Ma b, GuangHe Cheng c

A CNC equipment distributed monitoring system based on cloud computing technology RangYong Zhang a, Geng Ma b, GuangHe Cheng c Advanced Materials Research Submitted: 2014-07-26 ISSN: 1662-8985, Vol. 1022, pp 392-395 Accepted: 2014-07-28 doi:10.4028/www.scientific.net/amr.1022.392 Online: 2014-08-28 2014 Trans Tech Publications,

More information

The Design of CAN Bus Communication System Based on MCP2515 and S3C2440 Jinmei Liu, Junhong Wang, Donghui Sun

The Design of CAN Bus Communication System Based on MCP2515 and S3C2440 Jinmei Liu, Junhong Wang, Donghui Sun Advanced Materials Research Online: 2014-05-21 ISSN: 1662-8985, Vol. 933, pp 516-520 doi:10.4028/www.scientific.net/amr.933.516 2014 Trans Tech Publications, Switzerland The Design of CAN Bus Communication

More information

Research on Geo-information Data Model for Preselected Areas of Geological Disposal of Highlevel Radioactive Waste

Research on Geo-information Data Model for Preselected Areas of Geological Disposal of Highlevel Radioactive Waste IOP Conference Series: Earth and Environmental Science PAPER OPEN ACCESS Research on Geo-information Data Model for Preselected Areas of Geological Disposal of Highlevel Radioactive Waste To cite this

More information

Geometric Rectification Using Feature Points Supplied by Straight-lines

Geometric Rectification Using Feature Points Supplied by Straight-lines Available online at www.sciencedirect.com Procedia Environmental Sciences (0 ) 00 07 Geometric Rectification Using Feature Points Supplied by Straight-lines Tengfei Long, Weili Jiao, Wei Wang Center for

More information

Multi-Source Spatial Data Distribution Model and System Implementation

Multi-Source Spatial Data Distribution Model and System Implementation Communications and Network, 2013, 5, 93-98 http://dx.doi.org/10.4236/cn.2013.51009 Published Online February 2013 (http://www.scirp.org/journal/cn) Multi-Source Spatial Data Distribution Model and System

More information

DIGITAL IMAGE ANALYSIS. Image Classification: Object-based Classification

DIGITAL IMAGE ANALYSIS. Image Classification: Object-based Classification DIGITAL IMAGE ANALYSIS Image Classification: Object-based Classification Image classification Quantitative analysis used to automate the identification of features Spectral pattern recognition Unsupervised

More information

The Analysis of the Loss Rate of Information Packet of Double Queue Single Server in Bi-directional Cable TV Network

The Analysis of the Loss Rate of Information Packet of Double Queue Single Server in Bi-directional Cable TV Network Applied Mechanics and Materials Submitted: 2014-06-18 ISSN: 1662-7482, Vol. 665, pp 674-678 Accepted: 2014-07-31 doi:10.4028/www.scientific.net/amm.665.674 Online: 2014-10-01 2014 Trans Tech Publications,

More information

Department of Mechatronics Engineering, International Islamic University Malaysia Jalan Gombak, 53100, Kuala Lumpur, Malaysia

Department of Mechatronics Engineering, International Islamic University Malaysia Jalan Gombak, 53100, Kuala Lumpur, Malaysia Advanced Materials Research Online: 2012-10-08 ISSN: 1662-8985, Vol. 576, pp 777-780 doi:10.4028/www.scientific.net/amr.576.777 2012 Trans Tech Publications, Switzerland Parallel Manipulator for Auto Tracking

More information

Applied mechanics and applied technology in fuel injection pump bench. Rotational speed measurement system design based on CPLD

Applied mechanics and applied technology in fuel injection pump bench. Rotational speed measurement system design based on CPLD Advanced Materials Research Online: 2014-03-24 ISSN: 1662-8985, Vol. 910, pp 316-319 doi:10.4028/www.scientific.net/amr.910.316 2014 Trans Tech Publications, Switzerland Applied mechanics and applied technology

More information

Keywords: truck frame, parametric modeling, cross-section.

Keywords: truck frame, parametric modeling, cross-section. Key Engineering Materials Online: 2011-01-20 ISSN: 1662-9795, Vols. 460-461, pp 534-539 doi:10.4028/www.scientific.net/kem.460-461.534 2011 Trans Tech Publications, Switzerland A Research and Application

More information

Study on the Quantitative Vulnerability Model of Information System based on Mathematical Modeling Techniques. Yunzhi Li

Study on the Quantitative Vulnerability Model of Information System based on Mathematical Modeling Techniques. Yunzhi Li Applied Mechanics and Materials Submitted: 2014-08-05 ISSN: 1662-7482, Vols. 651-653, pp 1953-1957 Accepted: 2014-08-06 doi:10.4028/www.scientific.net/amm.651-653.1953 Online: 2014-09-30 2014 Trans Tech

More information

A video-based theodolite simulation system

A video-based theodolite simulation system Advanced Materials Research Online: 2013-09-10 ISSN: 1662-8985, Vols. 798-799, pp 272-275 doi:10.4028/www.scientific.net/amr.798-799.272 2013 Trans Tech Publications, Switzerland A video-based theodolite

More information

Optimal Design of the Data Center Environmental Temperature Monitoring ZhiXiang Yuan 1,2, a, ShuangBo Lai 2,b, Ming Liu 1,c, HuiYi Zhang 1,2, d

Optimal Design of the Data Center Environmental Temperature Monitoring ZhiXiang Yuan 1,2, a, ShuangBo Lai 2,b, Ming Liu 1,c, HuiYi Zhang 1,2, d Applied Mechanics and Materials Online: 2014-05-23 ISSN: 1662-7482, Vols. 556-562, pp 2810-2815 doi:10.4028/www.scientific.net/amm.556-562.2810 2014 Trans Tech Publications, Switzerland Optimal Design

More information

Nearest Clustering Algorithm for Satellite Image Classification in Remote Sensing Applications

Nearest Clustering Algorithm for Satellite Image Classification in Remote Sensing Applications Nearest Clustering Algorithm for Satellite Image Classification in Remote Sensing Applications Anil K Goswami 1, Swati Sharma 2, Praveen Kumar 3 1 DRDO, New Delhi, India 2 PDM College of Engineering for

More information

Research on a Remote Sensing Image Classification Algorithm Based on Decision Table Dehui Zhang1, a, Yong Yang1, b, Kai Song2, c, Deyu Zhang2, d

Research on a Remote Sensing Image Classification Algorithm Based on Decision Table Dehui Zhang1, a, Yong Yang1, b, Kai Song2, c, Deyu Zhang2, d 4th National Conference on Electrical, Electronics and Computer Engineering (NCEECE 205) Research on a Remote Sensing Image Classification Algorithm Based on Decision Table Dehui Zhang, a, Yong Yang, b,

More information

Fast Image Matching on Web Pages

Fast Image Matching on Web Pages Fast Image Matching on Web Pages HAZEM M. EL-BAKRY Faculty of Computer Science & Information Systems, Mansoura University, EGYPT E-mail: helbakry20@yahoo.com NIKOS MASTORAKIS Technical University of Sofia,

More information

The Design of Distributed File System Based on HDFS Yannan Wang 1, a, Shudong Zhang 2, b, Hui Liu 3, c

The Design of Distributed File System Based on HDFS Yannan Wang 1, a, Shudong Zhang 2, b, Hui Liu 3, c Applied Mechanics and Materials Online: 2013-09-27 ISSN: 1662-7482, Vols. 423-426, pp 2733-2736 doi:10.4028/www.scientific.net/amm.423-426.2733 2013 Trans Tech Publications, Switzerland The Design of Distributed

More information

Image Compression with Singular Value Decomposition & Correlation: a Graphical Analysis

Image Compression with Singular Value Decomposition & Correlation: a Graphical Analysis ISSN -7X Volume, Issue June 7 Image Compression with Singular Value Decomposition & Correlation: a Graphical Analysis Tamojay Deb, Anjan K Ghosh, Anjan Mukherjee Tripura University (A Central University),

More information

Applied Mechanics and Materials Vol

Applied Mechanics and Materials Vol Applied Mechanics and Materials Online: 2014-02-27 ISSN: 1662-7482, Vol. 532, pp 280-284 doi:10.4028/www.scientific.net/amm.532.280 2014 Trans Tech Publications, Switzerland A Practical Real-time Motion

More information

Extraction and Analysis of Farmland Objects in Hyperspectral Images

Extraction and Analysis of Farmland Objects in Hyperspectral Images 1946 JOURNAL OF COMPUTERS, VOL. 9, NO. 8, AUGUST 2014 Extraction and Analysis of Farmland Objects in Hyperspectral Images Jinglei Tang College of Information Engineering, Northwest A&F University, Yangling

More information

Spatially variant dimensionality reduction for the visualization of multi/hyperspectral images

Spatially variant dimensionality reduction for the visualization of multi/hyperspectral images Author manuscript, published in "International Conference on Image Analysis and Recognition, Burnaby : Canada (2011)" DOI : 10.1007/978-3-642-21593-3_38 Spatially variant dimensionality reduction for the

More information

Band Selection Method for Retrieving Soil Lead Content with. Hyperspectral Remote Sensing Data

Band Selection Method for Retrieving Soil Lead Content with. Hyperspectral Remote Sensing Data Band Selection Method for Retrieving Soil Lead Content with Hyperspectral Remote Sensing Data Xia Zhang *, Jianting Wen, Dong Zhao Institute of Remote Sensing Applications, Chinese Academy of Sciences,

More information

Telemetry Data Acquisition and Analysis in Integrated Baseband System Based on TCP/IP Protocol

Telemetry Data Acquisition and Analysis in Integrated Baseband System Based on TCP/IP Protocol Applied Mechanics and Materials Online: 12-08-30 ISSN: 1662-7482, Vols. 195-196, pp 1175-1179 doi:10.4028/www.scientific.net/amm.195-196.1175 12 Trans Tech Publications, Switzerland Telemetry Data Acquisition

More information

Understanding FFT- based algorithm to calculate image displacements with IDL programming language Cynthia Rodriguez University of Texas at San Antonio

Understanding FFT- based algorithm to calculate image displacements with IDL programming language Cynthia Rodriguez University of Texas at San Antonio Understanding FFT- based algorithm to calculate image displacements with IDL programming language Cynthia Rodriguez University of Texas at San Antonio ABSTRACT There are many ways automatic image registration

More information

Design of PC Remote Monitoring System for Standby Generators Chuanhong Zhou 1,a,Jinjie Xiao 1,b, Wei Ren 1,c

Design of PC Remote Monitoring System for Standby Generators Chuanhong Zhou 1,a,Jinjie Xiao 1,b, Wei Ren 1,c Advanced Materials Research Submitted: 2014-06-03 ISSN: 1662-8985, Vol. 1039, pp 197-202 Accepted: 2014-07-14 doi:10.4028/www.scientific.net/amr.1039.197 Online: 2014-10-31 2014 Trans Tech Publications,

More information

Design and Implementation of Archives Query System Based on B/S Structure Lianfeng Zhao

Design and Implementation of Archives Query System Based on B/S Structure Lianfeng Zhao Applied Mechanics and Materials Online: 2012-12-13 ISSN: 1662-7482, Vols. 241-244, pp 3098-3102 doi:10.4028/www.scientific.net/amm.241-244.3098 2013 Trans Tech Publications, Switzerland Design and Implementation

More information

Wavelength Estimation Method Based on Radon Transform and Image Texture

Wavelength Estimation Method Based on Radon Transform and Image Texture Journal of Shipping and Ocean Engineering 7 (2017) 186-191 doi 10.17265/2159-5879/2017.05.002 D DAVID PUBLISHING Wavelength Estimation Method Based on Radon Transform and Image Texture LU Ying, ZHUANG

More information

INCREASING CLASSIFICATION QUALITY BY USING FUZZY LOGIC

INCREASING CLASSIFICATION QUALITY BY USING FUZZY LOGIC JOURNAL OF APPLIED ENGINEERING SCIENCES VOL. 1(14), issue 4_2011 ISSN 2247-3769 ISSN-L 2247-3769 (Print) / e-issn:2284-7197 INCREASING CLASSIFICATION QUALITY BY USING FUZZY LOGIC DROJ Gabriela, University

More information

Research on Measuring and Optimization Method of Dynamic Accuracy of CNC Machine Tools

Research on Measuring and Optimization Method of Dynamic Accuracy of CNC Machine Tools Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com Research on Measuring and Optimization Method of Dynamic Accuracy of CNC Machine Tools 1, 2 Zhiming FENG, 2 Guofu YIN,

More information

Level Set Hyperspectral Segmentation:

Level Set Hyperspectral Segmentation: Level Set Hyperspectral Segmentation: Near-Optimal Speed Functions using Best Band Analysis and Scaled Spectral Angle Mapper John E. Ball, student member, IEEE, and L. M. Bruce, senior member, IEEE Department

More information

Improvement of the Expert System Shell Pro/3 Sentence Input Function and Exploration of Batch Computers Security Assessment

Improvement of the Expert System Shell Pro/3 Sentence Input Function and Exploration of Batch Computers Security Assessment Advanced Materials Research Online: 2013-04-24 ISSN: 1662-8985, Vol. 684, pp 555-558 doi:10.4028/www.scientific.net/amr.684.555 2013 Trans Tech Publications, Switzerland Improvement of the Expert System

More information

Simulation Technology of Light Effect Based on Catia and Workbench Software HongXia Hu

Simulation Technology of Light Effect Based on Catia and Workbench Software HongXia Hu Applied Mechanics and Materials Online: 2014-03-24 ISSN: 1662-7482, Vols. 543-547, pp 3218-3221 doi:10.4028/www.scientific.net/amm.543-547.3218 2014 Trans Tech Publications, Switzerland Simulation Technology

More information

Art College, Hainan University, Haikou, China. 2. School of Information Management, Sun Yat-sen University, Guangzhou, China. 3

Art College, Hainan University, Haikou, China. 2. School of Information Management, Sun Yat-sen University, Guangzhou, China. 3 Advanced Materials Research Online: 2014-03-24 ISSN: 1662-8985, Vol. 908, pp 526-530 doi:10.4028/www.scientific.net/amr.908.526 2014 Trans Tech Publications, Switzerland Applied-information Technology

More information

The Application of Programmable Controller to Chip Design. Shihong Lan 1, Jian Zhang 2

The Application of Programmable Controller to Chip Design. Shihong Lan 1, Jian Zhang 2 Applied Mechanics and Materials Online: 2013-01-11 ISSN: 1662-7482, Vol. 273, pp 722-725 doi:10.4028/www.scientific.net/amm.273.722 2013 Trans Tech Publications, Switzerland The Application of Programmable

More information

SPACEFLIGHT HYPERION DATA RADIATION CALIBRATION PRELIMINARY STUDY

SPACEFLIGHT HYPERION DATA RADIATION CALIBRATION PRELIMINARY STUDY SPACEFLIGHT HYPERION DATA RADIATION CALIBRATION PRELIMINARY STUDY Shufang Tian a, Jianping Chen a, Ming Jiang a a CUGB, School of Geosciences and Resources,10083 Haidian District, Beijing, China-(sftian,3s,jming)@cugb.edu.cn

More information

Adaptive Doppler centroid estimation algorithm of airborne SAR

Adaptive Doppler centroid estimation algorithm of airborne SAR Adaptive Doppler centroid estimation algorithm of airborne SAR Jian Yang 1,2a), Chang Liu 1, and Yanfei Wang 1 1 Institute of Electronics, Chinese Academy of Sciences 19 North Sihuan Road, Haidian, Beijing

More information

Spectral Classification

Spectral Classification Spectral Classification Spectral Classification Supervised versus Unsupervised Classification n Unsupervised Classes are determined by the computer. Also referred to as clustering n Supervised Classes

More information

Adaptive Zoom Distance Measuring System of Camera Based on the Ranging of Binocular Vision

Adaptive Zoom Distance Measuring System of Camera Based on the Ranging of Binocular Vision Adaptive Zoom Distance Measuring System of Camera Based on the Ranging of Binocular Vision Zhiyan Zhang 1, Wei Qian 1, Lei Pan 1 & Yanjun Li 1 1 University of Shanghai for Science and Technology, China

More information

Determining satellite rotation rates for unresolved targets using temporal variations in spectral signatures

Determining satellite rotation rates for unresolved targets using temporal variations in spectral signatures Determining satellite rotation rates for unresolved targets using temporal variations in spectral signatures Joseph Coughlin Stinger Ghaffarian Technologies Colorado Springs, CO joe.coughlin@sgt-inc.com

More information

The RTP Encapsulation based on Frame Type Method for AVS Video

The RTP Encapsulation based on Frame Type Method for AVS Video Applied Mechanics and Materials Online: 2012-12-27 ISSN: 1662-7482, Vols. 263-266, pp 1803-1808 doi:10.4028/www.scientific.net/amm.263-266.1803 2013 Trans Tech Publications, Switzerland The RTP Encapsulation

More information

Hyperspectral Remote Sensing in Acquisition of Geospatial Information for the Modern Warfare. Dr M R Bhutiyani,

Hyperspectral Remote Sensing in Acquisition of Geospatial Information for the Modern Warfare. Dr M R Bhutiyani, Hyperspectral Remote Sensing in Acquisition of Geospatial Information for the Modern Warfare Dr M R Bhutiyani, Ex-Director, DTRL, New Delhi Chairman, ISRS, Delhi Chapter Air photo-interpretation Multi-spectral

More information

Design and Realization of Agricultural Information Intelligent Processing and Application Platform

Design and Realization of Agricultural Information Intelligent Processing and Application Platform Design and Realization of Agricultural Information Intelligent Processing and Application Platform Dan Wang 1,2 1 Institute of Agricultural Information, Chinese Academy of Agricultural Sciences, Beijing

More information

Fractional Discrimination for Texture Image Segmentation

Fractional Discrimination for Texture Image Segmentation Fractional Discrimination for Texture Image Segmentation Author You, Jia, Sattar, Abdul Published 1997 Conference Title IEEE 1997 International Conference on Image Processing, Proceedings of the DOI https://doi.org/10.1109/icip.1997.647743

More information

How to Apply the Geospatial Data Abstraction Library (GDAL) Properly to Parallel Geospatial Raster I/O?

How to Apply the Geospatial Data Abstraction Library (GDAL) Properly to Parallel Geospatial Raster I/O? bs_bs_banner Short Technical Note Transactions in GIS, 2014, 18(6): 950 957 How to Apply the Geospatial Data Abstraction Library (GDAL) Properly to Parallel Geospatial Raster I/O? Cheng-Zhi Qin,* Li-Jun

More information

CALIBRATION OF DIFFRACTOMETERS: A TEST METHOD TO MONITOR THE PERFORMANCE OF INSTRUMENTS. G. Berti, U. Bartoli, M. D Acunto and F.

CALIBRATION OF DIFFRACTOMETERS: A TEST METHOD TO MONITOR THE PERFORMANCE OF INSTRUMENTS. G. Berti, U. Bartoli, M. D Acunto and F. Materials Science Forum Online: 004-01-15 ISSN: 166-975, Vols. 443-444, pp 7-30 doi:10.408/www.scientific.net/msf.443-444.7 004 Trans Tech Publications, Switzerland CALIBRATION OF DIFFRACTOMETERS: A TEST

More information

Construction of the Library Management System Based on Data Warehouse and OLAP Maoli Xu 1, a, Xiuying Li 2,b

Construction of the Library Management System Based on Data Warehouse and OLAP Maoli Xu 1, a, Xiuying Li 2,b Applied Mechanics and Materials Online: 2013-08-30 ISSN: 1662-7482, Vols. 380-384, pp 4796-4799 doi:10.4028/www.scientific.net/amm.380-384.4796 2013 Trans Tech Publications, Switzerland Construction of

More information

Edge Detection for Dental X-ray Image Segmentation using Neural Network approach

Edge Detection for Dental X-ray Image Segmentation using Neural Network approach Volume 1, No. 7, September 2012 ISSN 2278-1080 The International Journal of Computer Science & Applications (TIJCSA) RESEARCH PAPER Available Online at http://www.journalofcomputerscience.com/ Edge Detection

More information

Visual Secret Sharing Scheme with Autostereogram*

Visual Secret Sharing Scheme with Autostereogram* Visual Secret Sharing Scheme with Autostereogram* Feng Yi, Daoshun Wang** and Yiqi Dai Department of Computer Science and Technology, Tsinghua University, Beijing, 100084, China Abstract. Visual secret

More information

A Framework of Hyperspectral Image Compression using Neural Networks

A Framework of Hyperspectral Image Compression using Neural Networks A Framework of Hyperspectral Image Compression using Neural Networks Yahya M. Masalmah, Ph.D 1, Christian Martínez-Nieves 1, Rafael Rivera-Soto 1, Carlos Velez 1, and Jenipher Gonzalez 1 1 Universidad

More information

Standard and Convex NMF in Clustering UCI wine and sonar data

Standard and Convex NMF in Clustering UCI wine and sonar data Standard and Convex NMF in Clustering UCI wine and sonar data ACS AISBITS 2016, October 19-21, Miȩdzyzdroje. Anna M. Bartkowiak aba@cs.uni.wroc.pl Institute of Computer Science, University of Wroclaw PL

More information

Realization of Automatic Keystone Correction for Smart mini Projector Projection Screen

Realization of Automatic Keystone Correction for Smart mini Projector Projection Screen Applied Mechanics and Materials Online: 2014-02-06 ISSN: 1662-7482, Vols. 519-520, pp 504-509 doi:10.4028/www.scientific.net/amm.519-520.504 2014 Trans Tech Publications, Switzerland Realization of Automatic

More information

Research on function and design of virtual instrument based on LabVIEW Technology

Research on function and design of virtual instrument based on LabVIEW Technology Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2014, 6(6):1099-1104 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Research on function and design of virtual instrument

More information

Cluster Validity Classification Approaches Based on Geometric Probability and Application in the Classification of Remotely Sensed Images

Cluster Validity Classification Approaches Based on Geometric Probability and Application in the Classification of Remotely Sensed Images Sensors & Transducers 04 by IFSA Publishing, S. L. http://www.sensorsportal.com Cluster Validity ification Approaches Based on Geometric Probability and Application in the ification of Remotely Sensed

More information

International Journal of Multidisciplinary Research and Modern Education (IJMRME) ISSN (Online): ( Volume I, Issue

International Journal of Multidisciplinary Research and Modern Education (IJMRME) ISSN (Online): (  Volume I, Issue HYPERSPECTRAL IMAGE COMPRESSION USING 3D SPIHT, SPECK AND BEZW ALGORITHMS D. Muthukumar Assistant Professor in Software Systems, Kamaraj College of Engineering and Technology, Virudhunagar, Tamilnadu Abstract:

More information

AN WIRELESS COLLECTION AND MONITORING SYSTEM DESIGN BASED ON ARDUINO. Lu Shaokun 1,e*

AN WIRELESS COLLECTION AND MONITORING SYSTEM DESIGN BASED ON ARDUINO. Lu Shaokun 1,e* Advanced Materials Research Online: 2014-06-25 ISSN: 1662-8985, Vols. 971-973, pp 1076-1080 doi:10.4028/www.scientific.net/amr.971-973.1076 2014 Trans Tech Publications, Switzerland AN WIRELESS COLLECTION

More information

Design and Implementation of MP3 Player Based on FPGA Dezheng Sun

Design and Implementation of MP3 Player Based on FPGA Dezheng Sun Applied Mechanics and Materials Online: 2013-10-31 ISSN: 1662-7482, Vol. 443, pp 746-749 doi:10.4028/www.scientific.net/amm.443.746 2014 Trans Tech Publications, Switzerland Design and Implementation of

More information

Visual Information Solutions. E3De. The interactive software environment for extracting 3D information from LiDAR data.

Visual Information Solutions. E3De. The interactive software environment for extracting 3D information from LiDAR data. Visual Information Solutions E3De. The interactive software environment for extracting 3D information from LiDAR data. Photorealistic Visualizations. 3D Feature Extraction. Versatile Geospatial Products.

More information

Application of Geometry Rectification to Deformed Characters Recognition Liqun Wang1, a * and Honghui Fan2

Application of Geometry Rectification to Deformed Characters Recognition Liqun Wang1, a * and Honghui Fan2 6th International Conference on Electronic, Mechanical, Information and Management (EMIM 2016) Application of Geometry Rectification to Deformed Characters Liqun Wang1, a * and Honghui Fan2 1 School of

More information

HyperDB: A Hyperspectral Land Class Database Designed for an Image Processing System

HyperDB: A Hyperspectral Land Class Database Designed for an Image Processing System TSINGHUA SCIENCE AND TECHNOLOGY ISSNll1007-0214ll11/11llpp112 118 Volume 22, Number 1, February 2017 HyperDB: A Hyperspectral Land Class Database Designed for an Image Processing System Yizhou Fan, Ding

More information

Fast Anomaly Detection Algorithms For Hyperspectral Images

Fast Anomaly Detection Algorithms For Hyperspectral Images Vol. Issue 9, September - 05 Fast Anomaly Detection Algorithms For Hyperspectral Images J. Zhou Google, Inc. ountain View, California, USA C. Kwan Signal Processing, Inc. Rockville, aryland, USA chiman.kwan@signalpro.net

More information

A Novel Image Super-resolution Reconstruction Algorithm based on Modified Sparse Representation

A Novel Image Super-resolution Reconstruction Algorithm based on Modified Sparse Representation , pp.162-167 http://dx.doi.org/10.14257/astl.2016.138.33 A Novel Image Super-resolution Reconstruction Algorithm based on Modified Sparse Representation Liqiang Hu, Chaofeng He Shijiazhuang Tiedao University,

More information

The Application Analysis and Network Design of wireless VPN for power grid. Wang Yirong,Tong Dali,Deng Wei

The Application Analysis and Network Design of wireless VPN for power grid. Wang Yirong,Tong Dali,Deng Wei Applied Mechanics and Materials Online: 2013-09-27 ISSN: 1662-7482, Vols. 427-429, pp 2130-2133 doi:10.4028/www.scientific.net/amm.427-429.2130 2013 Trans Tech Publications, Switzerland The Application

More information

PoS(CENet2017)005. The Classification of Hyperspectral Images Based on Band-Grouping and Convolutional Neural Network. Speaker.

PoS(CENet2017)005. The Classification of Hyperspectral Images Based on Band-Grouping and Convolutional Neural Network. Speaker. The Classification of Hyperspectral Images Based on Band-Grouping and Convolutional Neural Network 1 Xi an Hi-Tech Institute Xi an 710025, China E-mail: dr-f@21cnl.c Hongyang Gu Xi an Hi-Tech Institute

More information