• Title/Summary/Keyword: Eigen-Vector

Search Result 67, Processing Time 0.023 seconds

Appearance-based Robot Visual Servo via a Wavelet Neural Network

  • Zhao, Qingjie;Sun, Zengqi;Sun, Fuchun;Zhu, Jihong
    • International Journal of Control, Automation, and Systems
    • /
    • 제6권4호
    • /
    • pp.607-612
    • /
    • 2008
  • This paper proposes a robot visual servo approach based on image appearance and a wavelet function neural network. The inputs of the wavelet neural network are changes of image features or the elements of image appearance vector, and the outputs are changes of robot joint angles. Image appearance vector is calculated by using eigen subspace transform algorithm. The proposed approach does not need a priori knowledge of the robot kinematics, hand-eye geometry and camera models. The experiment results on a real robot system show that the proposed method is practical and simple.

신호 분해능 향상을 위한 전력스펙트럼 알고리즘 연구 (A Study on Power Spectrum Algorithm for Signal Resolution Improvement)

  • 이관형
    • 한국정보전자통신기술학회논문지
    • /
    • 제13권2호
    • /
    • pp.153-158
    • /
    • 2020
  • 본 논문에서는 무선 통신 환경에서 잡음 및 간섭을 제거하여 원하는 목표물을 추정하는 알고리즘을 연구하였다. 잡음과 간섭이 포함된 정보신호가 수신기에 입사하면 원하는 목표물을 정확히 추정하기 어렵기 때문에 잡음 및 간섭 신호를 제거하는 방법이 필수적이다. 수신 신호영역을 두 공간으로 분리하기 위해서 상관행렬, 공분산, 고유특성벡터, 고유치를 분석하여 전력 스펙트럼을 획득한다. 제안한 전력 스펙트럼은 잡음을 제거할 수 있는 알고리즘으로서 목표물 추정성능을 분석하기 위해서 기존의 알고리즘과 모의실험을 통해서 확인한다. 모의실험 결과로, 기존 알고리즘의 목표물방향 추정 분해능은 10°이상이지만, 제안 알고리즘의 분해능은 10°미만을 나타내었다. 제안 알고리즘이 기존 알고리즘보다 약 5°의 분해능이 향상 되었다. 본 연구에서 제안된 알고리즘이 목표물 추정 정확도와 분해능이 기존 알고리즘보다 우수함을 입증하였다.

Eigen - Environment 잡음 보상 방법을 이용한 강인한 음성인식 (Robust Speech Recognition using Noise Compensation Method Based on Eigen - Environment)

  • 송화전;김형순
    • 대한음성학회지:말소리
    • /
    • 제52호
    • /
    • pp.145-160
    • /
    • 2004
  • In this paper, a new noise compensation method based on the eigenvoice framework in feature space is proposed to reduce the mismatch between training and testing environments. The difference between clean and noisy environments is represented by the linear combination of K eigenvectors that represent the variation among environments. In the proposed method, the performance improvement of speech recognition systems is largely affected by how to construct the noisy models and the bias vector set. In this paper, two methods, the one based on MAP adaptation method and the other using stereo DB, are proposed to construct the noisy models. In experiments using Aurora 2 DB, we obtained 44.86% relative improvement with eigen-environment method in comparison with baseline system. Especially, in clean condition training mode, our proposed method yielded 66.74% relative improvement, which is better performance than several methods previously proposed in Aurora project.

  • PDF

고유벡터를 이용한 필기체 숫자인식 (Recognition of Handwritten Numerals using Eigenvectors)

  • 박중조;김경민;송명현
    • 한국정보통신학회논문지
    • /
    • 제6권6호
    • /
    • pp.986-991
    • /
    • 2002
  • 본 논문에서는 고유벡터를 이용한 오프라인 필기체 숫자인식 기법을 제시한다. 본 기법에서는 KL 변환에 의한 고유벡터를 이용하여 통계적으로 숫자의 특징을 추출하며, 특징공간상에서 최소거리기법으로 숫자를 인식한다. 본 기법에서 제안된 특징추출 방법에서는 많은 표본 숫자영상에서 각 숫자들의 특징을 가장 잘 표현하는 기저벡터를 찾아내고 이로부터 숫자의 특징을 구한다. 제시된 기법의 성능 평가를 위해 Concordia대학의 무제약 필기체 숫자 데이터베이스를 사용하여 실험한 결과 96.2%의 인식률을 얻을 수 있었다.

CUDA 기반 GPU에서 효율적인 Power Method의 구현 (Implementation of Efficient Power Method on CUDA GPU)

  • 김정환;김진수
    • 한국컴퓨터정보학회논문지
    • /
    • 제16권2호
    • /
    • pp.9-16
    • /
    • 2011
  • GPU는 저렴한 비용으로 쉽게 대규모 데이터 병렬성을 활용할 수 있는 장점을 갖고 있어 많은 고성능 컴퓨팅 응용 분야에서 사용되고 있는 추세다. 행렬의 고유벡터를 구하는 power method는 웹 페이지의 중요도를 계산하는 PageRank 알고리즘 등 여러 응용 분야에서 활용되고 있는 방법으로써, 본 연구에서는 power method를 GPU에서 병렬화하여 구현하였으며, 성능을 최적화하기 위한 개선 방법을 제시하였다. Power method는 행렬과 벡터의 곱셈 연산이 반복적으로 수행되며 GPU에서 쉽게 병렬화가 가능하다. 그러나, 고유벡터의 수렴 여부 판단을 위한 연산 등의 작업과 다음 곱셈을 위한 벡터 크기의 조정 등의 작업이 부가적으로 필요하며, 이러한 작업은 GPU 내의 커널 코드를 여러 차례 호출하고 불필요한 데이터 이동을 유발하는 문제점이 있다. 본 연구에서는 커널 호출 회수를 줄이고 스레드 배치를 최적함과 동시에 수렴 여부 판단을 위한 연산을 최적함으로써 power method의 성능을 향상시켰다.

Damage detection of multi-storeyed shear structure using sparse and noisy modal data

  • Panigrahi, S.K.;Chakraverty, S.;Bhattacharyya, S.K.
    • Smart Structures and Systems
    • /
    • 제15권5호
    • /
    • pp.1215-1232
    • /
    • 2015
  • In the present paper, a method for identifying damage in a multi storeyed shear building structure is presented using minimum number of modal parameters of the structure. A damage at any level of the structure may lead to a major failure if the damage is not attended at appropriate time. Hence an early detection of damage is essential. The proposed identification methodology requires experimentally determined sparse modal data of any particular mode as input to detect the location and extent of damage in the structure. Here, the first natural frequency and corresponding partial mode shape values are used as input to the model and results are compared by changing the sensor placement locations at different floors to conclude the best location of sensors for accurate damage identification. Initially experimental data are simulated numerically by solving eigen value problem of the damaged structure with inclusion of random noise on the vibration characteristics. Reliability of the procedure has been demonstrated through a few examples of multi storeyed shear structure with different damage scenarios and various noise levels. Validation of the methodology has also been done using dynamic data obtained through experiment conducted on a laboratory scale steel structure.

KL변환에 의한 오프라인 필기체 숫자인식 (Recognition of Off-line Handwritten Numerals using KL Transformation)

  • 박중조;김경민;송명현
    • 한국정보통신학회:학술대회논문집
    • /
    • 한국해양정보통신학회 2002년도 추계종합학술대회
    • /
    • pp.912-915
    • /
    • 2002
  • 본 연구에서는 KL변환에 의한 고유벡터를 구하고, 이를 이용한 오프라인 필기체 숫자인식 기법을 제시하고자 한다. 본 기법에서는 KL 변환에 의한 고유벡터를 이용하여 통계적으로 숫자의 특징을 추출하며, 특징 공간상에서 최소거리 기법으로 숫자를 인식한다. 본 기법에서 제안된 특징추출 방법에서는 많은 표본 숫자영상에서 각 숫자들의 특징을 가장 잘 표현하는 기저벡터를 찾아내고 이로부터 필기체숫자의 특징을 구한다. 제안된 기법의 성능 평가를 위해 캐나다 Concordia 대학의 무제약 필기체 숫자 데이터베이스를 사용하였으며, 실험한 결과 인식률은 96.2%이었다.

  • PDF

조명조건이 다른 다수영상의 융합을 통한 영상의 분할기법 (Image segmentation by fusing multiple images obtained under different illumination conditions)

  • 전윤산;한헌수
    • 제어로봇시스템학회논문지
    • /
    • 제1권2호
    • /
    • pp.105-111
    • /
    • 1995
  • This paper proposes a segmentation algorithm using gray-level discontinuity and surface reflectance ratio of input images obtained under different illumination conditions. Each image is divided by a certain number of subregions based on the thresholds. The thresholds are determined using the histogram of fusion image which is obtained by ANDing the multiple input images. The subregions of images are projected on the eigenspace where their bases are the major eigenvectors of image matrix. Points in the eigenspace are classified into two clusters. Images associated with the bigger cluster are fused by revised ANDing to form a combined edge image. Missing edges are detected using surface reflectance ration and chain code. The proposed algorithm obtains more accurate edge information and allows to more efficiently recognize the environment under various illumination conditions.

  • PDF

다경로인 경우 Eigen 구조를 이용하는 공간 스펙트럼 추정 알고리듬의 성능비교 (Performance Comparisons of Eigenstructure Based Spatial Spectrum Estimation Algorithms in a Multipath Environment)

  • 이충용;차일환;윤대희
    • 대한전자공학회논문지
    • /
    • 제25권12호
    • /
    • pp.1522-1531
    • /
    • 1988
  • The purpose of this paper is to explain eigenstructure based spatial spectrum estimation algorithms computing better estimates than the other approaches. Also, as an approach to overcome performance degradations in a multipath environments, the notion of forward and backwark spatial smoothing is discussed. Intensive simulation results,which include the comparisons of the eigenbased spatial spectral estimation algorithms in the situations of faulty estimation of the number of signals, are presented. The simulation results have shown that overestimation of the number of signals is more desirable than underestimation in using EV (Eigen Vector) and MUSIC (Multiple Signal Classification) algorithms and that underestimation of the number of signals is better strategy than overestimation in using eigenstructure based LP(Linear Prediction) algorithms.

  • PDF

가중치를 이용한 CDMA 시스템 성능분석 (On the Performance CDMA System Using Weighted Value)

  • 이관형;김학윤;송우영
    • 한국컴퓨터정보학회논문지
    • /
    • 제11권3호
    • /
    • pp.213-219
    • /
    • 2006
  • 이동통신시스템에서 사용자의 신호는 다른 방향에서 도래하는 신호로부터 간섭이 발생한다. 간섭을 제거하기위해서 다이버시티, 등화기 등 다양한 연구가 진행되었다. 본 논문에서는 배열안테나의 가중치을 구하여 신호대잡음비를 향상시키고자 한다. 가중치는 신호의 상관계수에 의해서 고유값과 고유벡터로부터 구한다. 구한 가중치를 CDMA시스템에 적용하여 시스템성능과 용량을 증가시켰다. 변조방식은 QPSK와 OQPSK를 시스템에 적용시켜 성능을 분석하였다.

  • PDF