DBPIA-NURIMEDIA

Size: px
Start display at page:

Download "DBPIA-NURIMEDIA"

Transcription

1 2007 년 11 월전자공학회논문지제 44 권 SP 편제 6 호 9 논문 SP-6-2 GPU 를이용한 DWT 및 JPEG2000 의고속연산 (Fast Computation of DWT and JPEG2000 using GPU ) 이만희 *, 박인규 **, 원석진 ***, 조성대 *** * (Man Hee Lee, In Kyu Park, Seok Jin Won, and Sungdae Cho ) 요 약 본논문에서는 GPU (Graphics Processing Unit) 를이용하여 JPEG2000 정지영상압축알고리즘의 DWT (Discrete Wavelet Transform) 연산을고속으로수행하기위한효율적인구조와방법을제안한다. DWT 연산은 JPEG2000 에서 EBCOT (embedded block coding with optimized truncation) 과더불어많은계산량을소모하는부분이기때문에, 본논문에서는 DWT 알고리즘을 GPU 의화소쉐이더에서고속으로수행하기위하여 Render-To-Texture (RTT) 를활용한구조를설계하였다. 실제구현을통해비슷한등급의 CPU 에서의처리에비해 DWT 자체는 10 배이상의수행속도의향상을, 기존의 JPEG2000 참조소프트웨어인 JasPer 의 DWT 를대치하였을때 2~16 배의수행속도의향상을보였으며해상도가증가할수록향상폭이크다. 본논문에서제시된프레임버퍼객체 (Frame Buffer Object) 를이용한 render-to-texture 수행구조는 GPU 기반영상처리의기본틀을제공하며, 이를응용하여일반적인영상처리와컴퓨터비전처리를 GPU 상에서고속수행할수있다. Abstract In this paper, we propose an efficient method for processing DWT (Discrete Wavelet Transform) on GPU (Graphics Processing Unit). Since the DWT and EBCOT (embedded block coding with optimized truncation) are the most complicated submodules in JPEG2000, we design a high-performance processing framework for performing DWT using the fragment shader of GPU based on the render-to-texture (RTT) architecture. Experimental results show that the performance increases significantly, in which DWT running on modern GPU is more than 10 times faster than on modern CPU. Furthermore, by replacing the DWT part of Jasper which is the JPEG2000 reference software, the overall processing is 2~16 times faster than the original JasPer. The GPU-driven render-to-texture architecture proposed in this paper can be used in the general image and computer vision processing for high-speed processing. Keywords : GPU, JPEG2000, DWT, 화소쉐이더, JasPer, 프레임버퍼객체 Ⅰ. 서론 최근그래픽가속기 (Graphics Processing Unit: GPU) 의성능이급격히발전하고 GPU 자체의프로그래밍가능한특성이점차확대됨에따라 3차원그래픽스이외의범용목적으로 GPU를활용할수있는가능 ** * 학생회원, 평생회원, 인하대학교정보통신공학부 (Inha University) *** 정회원, ( 주 ) 삼성전자정보통신총괄정보통신연구소 (Samsung Electronics) 본논문의초기결과는제19회영상처리및이해에관한워크샵 [15] 에서발표되었음. 본연구는 ( 주 ) 삼성전자의지원에의해수행되었음. 접수일자 : 2007년2월15일, 수정완료일 : 2007년10월31일 성이대두되었다. 최신 GPU의연산처리속도는대응되는최신 CPU의성능을수배능가한다. 예를들어, 최신 GPU 코어인 NVIDIA G80 (GeForce 8800GTX) 의경우 7억개의트랜지스터집적도와 350 GFLOPS 에근접하는초고속연산이가능한것에비하여, 최신 CPU 코어인 Intel Core2 Duo 3.0GHz는약 50 GFLOPS 가량의연산을처리할수있다 [1~2]. 또한, 최근 GPU의발전추세의다른하나는 GPU 내부파이프라인의기능을사용자가프로그래밍할수있도록허용한다는것이다. 이것은 GPU를범용으로사용할수있는가능성을제공하며, 현재는제한적이지만궁극적으로는 GPU를 CPU처럼사용할수있게한다 [3~ 4]. 이러한방법은정점쉐이더 (vertex shader) 와화소 (625)

2 10 GPU 를이용한 DWT 및 JPEG2000 의고속연산이만희외 [7, 10] 그림 1. JPEG2000의구조 Fig. 1. The structure of JPEG2000. [7, 10] 쉐이더 (pixel/fragment shader) 등의기법으로알려져있다. 최근 DirectX 9.0과 OpenGL 2.0 [5] 이발표되었고 HLSL (high-level shading language) 과 GLSL (GL shading language) [6] 이라는고급 shading 언어가표준사양에포함됨에따라 GPU의고성능연산을이용한범용어플리케이션의개발이보다가속화될전망이다. 범용목적 (general purpose) 으로의 GPU의응용, 즉 GPGPU를위해컴퓨터그래픽스이외에서최근가장각광을받는응용분야가영상처리와컴퓨터비전분야이다. 대부분의알고리즘은동일한명령의많은양의영상데이터로의동시실행, 즉 SIMD (single instruction multiple data) 방식의접근을필요로하며이들은 3차원그래픽알고리즘과의공통적인특징이기도하다. 또한, GPU가 PC뿐만아니라핸드폰, PDA와같은모바일기기용으로개발되고있고이러한것들이실제적용되는기술동향을볼때, 향후동영상처리등과같은멀티미디어프로세서의역할을 GPU가담당할수있을것으로기대된다. 본논문에서는고급 shading 언어를이용한 GPU의범용활용을통해 JPEG2000 정지영상의고속압축알고리즘을구현한다. 특히, JPEG2000 알고리즘의핵심모듈이되는 DWT 알고리즘을 GPU에서의 fragment shader에서수행하기위한 Render-to-Texture를활용한구조를설계하였으며, 이것이실제 JPEG2000에적용이가능한지를테스트하기위하여기존의 JPEG2000 을구현한 JasPer [7~8] 코드의해당부분을대치하여전체 JPEG2000 변환과정을테스트하였다. 본논문에서제시된프레임버퍼객체를이용한 Render-to-Texture 수행구조는 GPU 기반영상처리의기본틀을제공하며, 일반적인영상처리와컴퓨터비전처리를 GPU상에서고속수행을가능하게한다. 본논문의구성은다음과같다. 제Ⅱ장에서는 JPEG2000의구조를간략히설명한다. 제Ⅲ장에서는 DWT를 GPU가수행하도록하기위한 Render-to- Texture 수행구조를제시한다. 제 Ⅳ장에서는실험결과를보이고, 제Ⅴ장에서결론을제시한다. Ⅱ. JPEG2000 JPEG2000 [7, 9~10] 은기존의 JPEG 방식에비해점진적전송과관심영역코딩등의새로운기능을확보하고낮은전송률에서화질을향상시킨정지영상압축알고리즘이며 ISO/IEC 및 ITU의국제표준으로등록되어있다. 최근디지털카메라, 모바일기기, 의료영상기기, 원격탐사영상기기등다양한응용분야에서사용하기위한새로운영상포맷으로많은관심을받고있다. 그림 1에 JPEG2000의기본적인인코딩과정을제시하였다. 입력된원본영상에대하여타일링 (tiling) 과같은전처리 (preprocessing) 과정을거치게되고, RGB 영상을 YCrCb로변환하는컬러변환을수행하게된다. 그후 DWT 변환을수행하고, 양자화과정과 Tier-1, Tier-2 코딩과정을거치게되면최종적으로 JPEG2000 압축영상을얻을수있다. 한편, 디코딩과정은인코딩과정의역순으로생각할수있다. Ⅲ. GPU 에서의 DWT 알고리즘의구현 1. Discrete Wavelet Transform JPEG2000에서는 DWT를이용하여 intracomponent transform 을수행한다. 본논문에서는 DWT를구현하기위하여일반적으로잘알려져있는두가지방법인 convolution 기법과 lifting [11] 기법을구현하여성능의비교를수행한다. Convolution 기반의 DWT는일반적인신호처리에서의 convolution 방법과마찬가지로, 이미정해져있는저주파대역필터와고주파대역필터의값을입력신호에곱하여저주파성분과고주파성분을구분하게된다. 식 (1) 과 (2) 는 convolution 기반의 DWT의수행수식을나타낸다. 입 (626)

3 2007 년 11 월전자공학회논문지제 44 권 SP 편제 6 호 11,, 그림 2. Lifting 기반의 DWT 수행구조 [10] Fig. 2. Structure of the lifting-based DWT [10]. 력신호 에대하여저주파필터 와고주파필터 를이용하여입력신호의저주파성분 과고주파성분 을구할수있다. (1) (2) 본논문에서는 DWT를수행하기위한보다효율적인방법으로 lifting 기반의 DWT를구현한다. Lifting 기반의 DWT는 convolution 기반의 DWT보다연산의수를줄임으로써좀더빠른수행시간을제공한다. 그림 2에 lifting 기반의 DWT 과정중분석부 (analysis part) 의신호흐름도를도시하였다. Irreversible transform 을의미하는 Daubechies 9/7 탭필터의 polyphase matrix는식 (3) 과같다 [11]. (3) 이때, 식 (3) 의연산을다음과같이 6단계의과정으로연산을수행할수있다. 표 1에 convolution과 lifting 기반의 DWT의연산수의비교하였다. 표1에제시된바와같이, lifting 기반의 DWT가 convolution 기반에비하여 1/3 정도의곱셈연산이감소하는것을확인할수있다. 2. GPU 기반의영상처리프레임워크그림 3은본논문에서제안하는 GPU와 fragment shader를이용한영상처리프레임워크의기본구조를나타낸다. 영상처리의대상이되는입력영상은채널당 32bit 부동소수점형식의텍스처데이터 [12] 로비디오메모리로로딩되며, fragment shader 에서는영상처리의특정알고리즘을입력영상에대해수행하여그결과를 Frame Buffer Object (FBO) [13] 라고불리는또다른텍스처메모리로출력한다. 이과정을 Off-Screen Rendering 또는 Render-To-Texture라고하는데, fragment shader의처리결과를기본출력대상인 frame buffer로전달하는것이아니고텍스처메모리로보내어재사용이가능하도록하는되먹임 (feedback) 구조이다. CPU가수행하는응용프로그램에서는화면전체와일치하는사각형의영역에대하여렌더링을수행하고 FBO의내용을텍스처로바인딩하게되면, 결국 fragment shader가수행한영상처리의결과가텍스처로렌더링되는것이다. 또한, 입력텍스처와출력텍스처를부동소수점형식으로지정하여영상처리과정에서생성되는중간결과를정확히표현할수있다. 그리고 FBO의유용한특징들중하나인입력텍스처와 단계 단계 단계 단계 단계 단계 여기서,,, 그림 3. GPU 기반영상처리프레임워크의기본구조 Fig. 3. Basic framework of GPU-based image processing framework. (627)

4 12 GPU 를이용한 DWT 및 JPEG2000 의고속연산이만희외 표 1. Convolution 기반의 DWT와 lifting 기반의 DWT 의연산수비교 Table 1. Comparison of computations between convolution-based and lifting-based DWT. Convolution Lifting Scheme Filter 곱셈수 덧셈수 곱셈수 덧셈수 5/ / 출력텍스처를동일하게지정할수있는방법을이용하여부가적인과정없이출력결과를그대로입력으로이용함으로써수행시간을단축할수있으며비디오메모리의사용량또한감소시킬수있다. 3. GPU 에서의 DWT 구현 GPU를이용하여 convolution 기반의 DWT와 lifting 기반의 DWT 구현과정을살펴보았을때, 두개의과정모두입력영상은부동소수점형식의텍스처로지정된다. 우선 convolution의경우가로방향과세로방향의 DWT를위하여총두번의렌더링이수행이되고, 각각의렌더링과정중 J. Wang [14] 과유사한방법으로모든픽셀에대해서현재픽셀을기준으로인접한픽셀들의값을텍스처로부터얻어와곱셈과덧셈연산을수행한다. 반면 lifting의경우식 (3) 의여섯단계의과정중마지막세단계를한번의렌더링으로수행할수있으므로가로방향과세로방향에대하여각각네번씩의렌더링이이루어지게된다. 이때각각의렌더링과정에서 출력텍스처와입력텍스처를동일하게지정함으로써메모리간데이터이동에소요되는수행시간을감소시키고, 모든픽셀에대하여현재픽셀을기준으로좌우의두픽셀들의값을텍스처로부터얻어와곱셈과덧셈연산을수행한다. Ⅳ. 실험결과본논문에서는다양한환경에서의성능평가를위하여각각두가지의 GPU와 CPU상에서의실험을통하여수행속도차이를측정하였다. 즉, 본실험은 (1) (AMD Athlon GHz CPU + NVIDIA GeForce 8800GTX (G80) GPU (756MB)) (2) (Intel Pentium D GHz CPU + NVIDIA GeForce 8800GTS (G80) GPU (646MB)) 조합의컴퓨터환경에서수행되었다. 수행속도측정에있어 GeForce 8800 GTX는 128개의픽셀파이프라인을장착하고있고, GTS는 96개의파이프라인을가지고있으므로 GTX 모델에서의수행속도가전반적으로우수하게관측될것이다. 또한마찬가지로 Athlon 64에비해듀얼펜티엄프로세서가보다좋은성능을보일것이다. 1. DWT 실험결과그림 4에실험의수행순서도를나타내었으며, 표 2 에 convolution 기반의 DWT의수행속도를제시하였다. DWT의레벨은 1, 3, 5의 3단계에대해실험하였으 영상읽기 OpenGL 텍스처쉐이더 초기화과정 컬러변환 렌더링 n 단계 DWT 렌더링결과를시스템메모리로복사 그림 4. 실험에이용된 DWT 의수행순서도. GPU 가수행하는블록은음영으로표시. Fig. 4. Block diagram of experimental procedure of DWT. Shaded blocks are performed on GPU. 영상읽기 OpenGL및쉐이더초기화 영상을 JasPer의형식에맞추어변환 Preprocessing Color Transform JasPer 의자료구조를시스템메모리로복사 텍스처바인딩 렌더링 렌더링결과를시스템메모리로복사 시스템메모리의데이터를 JasPer 의자료구조로복사 JPEG2000 변환과정의나머지부분수행 파일로저장 그림 5. 실험에이용된 Jasper의 JPEG2000 인코딩순서도. GPU가수행하는블록은음영으로표시. Fig. 5. Block diagram of Jasper's JPEG2000 encoding procedure in the experiment. Shaded blocks are performed on GPU. (628)

5 2007 년 11 월전자공학회논문지제 44 권 SP 편제 6 호 13 표 2. Convolution 기반 DWT의수행속도비교 Table 2. Comparison of DWT processing time using convolution. 해상도및결과분류 해상도및결과분류 프로세서 GPU (Level=1) GPU (Level=3) GPU (Level=5) CPU(Level=1) 8800GTS 8800GTX 8800GTS 8800GTX 8800GTS 8800GTX AMD Athlon64 INTEL Pentium D 수행시간 % 2% 5% 3% 5% 3% - - 수행시간 % 2% 4% 2% 4% 2% - - 수행시간 % 2% 4% 2% 4% 2% - - 표 3. Lifting 기반 DWT의수행속도비교 Table 3. Comparison of DWT processing time using lifting. 프로세서 GPU (Level=1) GPU (Level=3) GPU (Level=5) CPU(Level=1) 8800GTS 8800GTX 8800GTS 8800GTX 8800GTS 8800GTX AMD Athlon64 INTEL Pentium D 수행시간 % 3% 9% 4% 9% 4% - - Convolution 수행시간대비비율 89% 95% 85% 91% 84% 89% 56% 46% 수행시간 % 3% 9 4% 9% 4% - - Convolution 수행시간대비비율 92% 101% 90 99% 89% 98% 58% 45% 수행시간 % 3% 9 4% 9% 4% - - Convolution 수행시간대비비율 94% 103% % 92% 101% 54% 45% 표 4. JPEG2000의인코딩수행시간비교. 퍼센트수치는동일한 CPU로전체과정을수행하는경우에대한수행시간의비율을의미. Table 4. Comparison of JPEG2000 encoding time. Percent value denotes the ratio to the running time when the whole encoding is perform on the same CPU. Device GPU CPU Resolution 8800GTS (with INTEL Pentium D) 8800GTX (with AMD Athlon 64) AMD Athlon 64 INTEL Pentium D % % % % % % (629)

6 14 GPU 를이용한 DWT 및 JPEG2000 의고속연산이만희외 며제시된바와같이고사양의 GPU 일수록, 그리고고사양의 CPU 일수록수행시간이단축되었음을알수있다. CPU와의수행시간비교는 DWT의분할레벨이 1 회인경우와수행하였고, CPU 수행시간대비 5% 이하로대폭감소하였음을알수있다. 다음으로 lifting 기반의 DWT에대한수행속도측정및비교분석을수행하였으며그결과는표 3에도시한바와같다. CPU에서 lifting을수행했을때와비교하였을때 90% 이상의수행시간이감소함을알수있다. Convolution 기반의 DWT 수행시간과비교해보았을때, GPU상에서의수행은 5~10% 내외로다소감소하였으나전반적으로유사한수행시간을보인다고할수있다. 이는 lifting을 GPU상에서 shader로구현하였을때발생하는렌더링회수가 convolution에비해 6 회많기때문인데, 현재 FBO를이용한렌더링에서는 fragment shader의병렬처리에서공유메모리가존재하지않는근본적인문제에기인한다. 다만, 추후새로운 GPU와 shader 모델에서는이와같은제한조건을완화시키려는요구를반영할예정이므로, lifting 기반의 DWT 수행속도는향후개선될수있다고할수있다. 2. JasPer와의통합본논문에서구현된 DWT가실제 JPEG2000에적용이가능한지의여부와성능평가를위하여본논문에서구현된영상처리프레임워크에기존의 JPEG2000 공개소프트웨어를통합하였다. 이때이용된공개소프트웨어는 JasPer 로불리는 JPEG 표준화단체의표준소프트웨어이다 [7~8]. 또한, 기존의 DWT 부분을본연구에서개발한 lifting 기반의 DWT 구현으로변경하여전체 JPEG2000의변환과정을테스트하였다. 그림 5에실험의수행순서도를나타내었다. 표 4에입력영상에대해 JPEG2000의비트열을생성하는인코딩과정에대한실험결과를제시하였다. 제안하는 GPU 기반의 DWT 수행이이용된경우, CPU로전체과정을수행하는것에비해 의고해상도영상기준 5~8% 로계산량이대폭감소하였다. 이때, 상대적인성능비교는동일한 CPU가사용된경우에대해측정되었다. 또한, 8800GTX의수행시간이 GTS의수행시간보다다소크게측정된것은 DWT를제외한부분을수행한 CPU의성능차이에서기인한다. 표 4에제시된결과에의하면, 해상도가증가할수록전체인코딩과정에서 DWT가차지하는비중이증가하기때문에계산량감소폭이크다는것을알수있으며, 이는매우유용한결과라고할수있다. 즉, JPEG2000 이고해상도영상의압축에주로이용된다는점을생각하면, DWT 부분의 GPU 구현을통해얻어진상당한수준의계산량감소가큰의미를지닌다. Ⅴ. 결론 본논문에서는 GPU를사용하여 JPEG2000 정지영상압축알고리즘의 DWT 연산을고속으로수행하기위한효율적인구조와방법을제안하였다. 본논문에서는 DWT 알고리즘을 GPU에서의 fragment shader에서수행하기위한 Render-to-Texture 구조를설계하였으며, 실험결과 CPU에서의처리에비해 GPU에서구현된 DWT의경우 10배이상의수행속도의향상을보였다. 또한기존의 JasPer와성능을비교하였을때, 제안하는기법으로 DWT 부분을대치하는경우전체과정을 CPU로처리하는것에비하여수행시간이 52~5% 로감소함을보였다. 본연구에서이용된 GPU는 NVIDIA사의최신 GPU 를이용하였는데, GPU의성능은또한개발사가지원하는드라이버의성능에좌우된다고할수있다. 지속적으로 NVIDIA사는개선된드라이버를제공하므로본논문에서제시된결과는이에따라보다더개선될수있을것이다. 향후연구방향으로본논문에서개발된 GPU 기반의영상처리프레임워크를동영상으로확장하여실시간동영상및비전알고리즘처리를수행하는것을고려하고있다. 또한, NVIDIA 의차세대 GPU 구조인 CUDA (compute unified device architecture) 를이용하여, 보다자유로운병렬처리와다양한형태의메모리사용을통해 JPEG2000에서 DWT의다음단계인 BPC (bit-plane coding) 와 BAC (Binary arithmetic coding) 부분을 GPU로가속함으로써보다확장된 JPEG2000의가속을위한효율적인 GPU 기반의영상처리프레임워크의구축이필요하다고할수있다. 참고문헌 [1] ml [2] [3] R. Fernando (editor), GPU Gems: Programming Techniques, Tips, and Tricks for Real-Time Graphics, Addison-Wesley, (630)

7 2007 년 11 월전자공학회논문지제 44 권 SP 편제 6 호 15 [4] M. Pharr (editor), GPU Gems 2: Programming Techniques for High-Performance Graphics and General-Purpose Computation, Addison-Wesley, [5] [6] R. Rost, OpenGL Shading Language Second Edition, Addison-Wesley, [7] Information Technology JPEG2000 Image Coding System, ISO/IEC International Standard , ITU Recommendation T.800, [8] M. D. Adams and F. Kossentini, JasPer: A software-based JPEG-2000 codec implementation, Proc. IEEE International Conference on Image Processing, September [9] M. Rabbani and R. Joshi, An overview of the JPEG 2000 still image compression standard, Signal Processing: Image Communication, vol. 17, no. 1, pp. 3-48, January [10] T. Acharya and P. Tsai, JPEG2000 Standard for Image Compression, Wiley-Interscience, [11] W. Sweldens, The Lifting scheme: a new philosophy in biorthogonal wavelet constructions, Proc. SPIE, vol. 2569: Wavelet Applications in Signal and Image Processing III, pp , September [12] /GL_ARB_texture_float.txt [13] /GL_EXT_framebuffer_object.txt [14] J. Wang, T. T. Wang, P. A. Heng and J. Wang, Discrete Wavelet Transform on GPU, Proc. ACM Workshop on General Purpose Computing on Graphics Processors, pp. C-41, August [15] 이만희, 박인규, 원석진, 조성대, JPEG2000 에서 GPU 를이용한 DWT 의가속, 제 19 회영상처리및이해에관한워크샵, pp , 2007 년 2 월. 저자소개 이만희 ( 학생회원 ) 2006 년 2 월인하대학교컴퓨터공학과공학사 년 3 월 ~ 현재인하대학교정보통신공학부석사과정 년 4 월 ~ 현재한국전자통신연구원 (ETRI) 위촉연구원. < 주관심분야 : 영상기반모델링및렌더링, sketch-based interface, GPGPU> 박인규 ( 정회원 ) 1995 년 2 월서울대학교제어계측공학과공학사 년 2 월서울대학교제어계측공학과공학석사 년 8 월서울대학교전기컴퓨터공학부공학박사 년 9 월 ~2004 년 3 월삼성종합기술원 (SAIT) 멀티미디어랩전문연구원 년 3 월 ~ 현재인하대학교정보통신공학부조교수 년 1 월 ~ 현재 Mitsubishi Electric Research Laboratories (MERL) 방문연구원. < 주관심분야 : 컴퓨터그래픽스및비전, 영상기반모델링및렌더링, 3D 얼굴모델링, computational photography, GPGPU> 원석진 ( 정회원 ) 1995 년 2 월서울대학교제어계측공학과공학사 년 2 월서울대학교제어계측공학과공학석사 년 ~2002 년대우전자디지털연구소 년 ~2003 년액토즈소프트게임개발실 년 ~ 현재 ( 주 ) 삼성전자통신연구소. < 주관심분야 : 멀티미디어, 그래픽스, 디지털콘텐츠 > 조성대 ( 정회원 ) 1996 년숭실대학교전자계산학과공학사 년 Rensselaer Polytechnic Institute 전자컴퓨터공학공학석사 년 Rensselaer Polytechnic Institute 전자컴퓨터공학공학박사 년 RPI 영상처리센터박사후연구원 년 9 월 ~ 현재 ( 주 ) 삼성전자정보통신연구소. < 주관심분야 : 멀티미디어영상처리, 컬러처리, 압축, 통신 > (631)

Ⅱ. Embedded GPU 모바일 프로세서의 발전방향은 저전력 고성능 컴퓨팅이다. 이 러한 목표를 달성하기 위해서 모바일 프로세서 기술은 멀티코 어 형태로 발전해 가고 있다. 예를 들어 NVIDIA의 최신 응용프 로세서인 Tegra3의 경우 쿼드코어 ARM Corte

Ⅱ. Embedded GPU 모바일 프로세서의 발전방향은 저전력 고성능 컴퓨팅이다. 이 러한 목표를 달성하기 위해서 모바일 프로세서 기술은 멀티코 어 형태로 발전해 가고 있다. 예를 들어 NVIDIA의 최신 응용프 로세서인 Tegra3의 경우 쿼드코어 ARM Corte 스마트폰을 위한 A/V 신호처리기술 편집위원 : 김홍국 (광주과학기술원) 스마트폰에서의 영상처리를 위한 GPU 활용 박인규, 최호열 인하대학교 요 약 본 기고에서는 최근 스마트폰에서 요구되는 다양한 멀티미 디어 어플리케이션을 embedded GPU(Graphics Processing Unit)를 이용하여 고속 병렬처리하기 위한 GPGPU (General- Purpose

More information

19_9_767.hwp

19_9_767.hwp (Regular Paper) 19 6, 2014 11 (JBE Vol. 19, No. 6, November 2014) http://dx.doi.org/10.5909/jbe.2014.19.6.866 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) RGB-Depth - a), a), b), a) Real-Virtual Fusion

More information

01이국세_ok.hwp

01이국세_ok.hwp x264 GPU 3 a), a), a) Fast Stereoscopic 3D Broadcasting System using x264 and GPU Jung-Ah Choi a), In-Yong Shin a), and Yo-Sung Ho a) 3 2. 2 3. H.264/AVC x264. GPU(Graphics Processing Unit) CUDA API, GPU

More information

3 : OpenCL Embedded GPU (Seung Heon Kang et al. : Parallelization of Feature Detection and Panorama Image Generation using OpenCL and Embedded GPU). e

3 : OpenCL Embedded GPU (Seung Heon Kang et al. : Parallelization of Feature Detection and Panorama Image Generation using OpenCL and Embedded GPU). e (JBE Vol. 19, No. 3, May 2014) (Special Paper) 19 3, 2014 5 (JBE Vol. 19, No. 3, May 2014) http://dx.doi.org/10.5909/jbe.2014.19.3.316 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) OpenCL Embedded GPU

More information

À±½Â¿í Ãâ·Â

À±½Â¿í Ãâ·Â Representation, Encoding and Intermediate View Interpolation Methods for Multi-view Video Using Layered Depth Images The multi-view video is a collection of multiple videos, capturing the same scene at

More information

[ReadyToCameral]RUF¹öÆÛ(CSTA02-29).hwp

[ReadyToCameral]RUF¹öÆÛ(CSTA02-29).hwp RUF * (A Simple and Efficient Antialiasing Method with the RUF buffer) (, Byung-Uck Kim) (Yonsei Univ. Depth of Computer Science) (, Woo-Chan Park) (Yonsei Univ. Depth of Computer Science) (, Sung-Bong

More information

6.24-9년 6월

6.24-9년 6월 리눅스 환경에서Solid-State Disk 성능 최적화를 위한 디스크 입출력요구 변환 계층 김태웅 류준길 박찬익 Taewoong Kim Junkil Ryu Chanik Park 포항공과대학교 컴퓨터공학과 {ehoto, lancer, cipark}@postech.ac.kr 요약 SSD(Solid-State Disk)는 여러 개의 낸드 플래시 메모리들로 구성된

More information

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Nov.; 25(11),

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Nov.; 25(11), THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2014 Nov.; 25(11), 11351141. http://dx.doi.org/10.5515/kjkiees.2014.25.11.1135 ISSN 1226-3133 (Print)ISSN 2288-226X (Online)

More information

45-51 ¹Ú¼ø¸¸

45-51 ¹Ú¼ø¸¸ A Study on the Automation of Classification of Volume Reconstruction for CT Images S.M. Park 1, I.S. Hong 2, D.S. Kim 1, D.Y. Kim 1 1 Dept. of Biomedical Engineering, Yonsei University, 2 Dept. of Radiology,

More information

03홍성욱.hwp

03홍성욱.hwp (JBE Vol. 18, No. 6, November 2013) (Special Paper) 18 6, 2013 11 (JBE Vol. 18, No. 6, November 2013) http://dx.doi.org/10.5909/jbe.2013.18.6.816 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) HEVC UHD

More information

Microsoft PowerPoint - 권장 사양

Microsoft PowerPoint - 권장 사양 Autodesk 제품컴퓨터사양 PRONETSOFT.CO 박경현 1 AutoCAD 시스템사양 시스템요구사양 32 비트 AutoCAD 2009 를위한시스템요구사항 Intel Pentium 4 프로세서 2.2GHz 이상, 또는 Intel 또는 AMD 듀얼 코어프로세서 16GH 1.6GHz 이상 Microsoft Windows Vista, Windows XP Home

More information

09권오설_ok.hwp

09권오설_ok.hwp (JBE Vol. 19, No. 5, September 2014) (Regular Paper) 19 5, 2014 9 (JBE Vol. 19, No. 5, September 2014) http://dx.doi.org/10.5909/jbe.2014.19.5.656 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) a) Reduction

More information

03이승호_ok.hwp

03이승호_ok.hwp (JBE Vol. 19, No. 2, March 2014) (Special Paper) 19 2, 2014 3 (JBE Vol. 19, No. 2, March 2014) http://dx.doi.org/10.5909/jbe.2014.19.2.158 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) Rough Mode Decision

More information

63-69±è´ë¿µ

63-69±è´ë¿µ Study on the Shadow Effect of 3D Visualization for Medical Images ased on the Texture Mapping D.Y. Kim, D.S. Kim, D.K. Shin, D.Y. Kim 1 Dept. of iomedical Engineering, Yonsei University = bstract = The

More information

1 : HEVC Rough Mode Decision (Ji Hun Jang et al.: Down Sampling for Fast Rough Mode Decision for a Hardware-based HEVC Intra-frame encoder) (Special P

1 : HEVC Rough Mode Decision (Ji Hun Jang et al.: Down Sampling for Fast Rough Mode Decision for a Hardware-based HEVC Intra-frame encoder) (Special P 1 : HEVC Rough Mode Decision (Ji Hun Jang et al.: Down Sampling for Fast Rough Mode Decision for a Hardware-based HEVC Intra-frame encoder) (Special Paper) 21 3, 2016 5 (JBE Vol. 21, No. 3, May 2016) http://dx.doi.org/10.5909/jbe.2016.21.3.341

More information

(JBE Vol. 20, No. 5, September 2015) (Special Paper) 20 5, (JBE Vol. 20, No. 5, September 2015) ISS

(JBE Vol. 20, No. 5, September 2015) (Special Paper) 20 5, (JBE Vol. 20, No. 5, September 2015)   ISS (Special Paper) 20 5, 2015 9 (JBE Vol. 20, No. 5, September 2015) http://dx.doi.org/10.5909/jbe.2015.20.5.676 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) 4 Light Field Dictionary Learning a), a) Dictionary

More information

MPEG-4 Visual & 응용 장의선 삼성종합기술원멀티미디어랩

MPEG-4 Visual & 응용 장의선 삼성종합기술원멀티미디어랩 MPEG-4 Visual & 응용 장의선 esjang@sait.samsung.co.kr 삼성종합기술원멀티미디어랩 MPEG? MPEG! Moving Picture Experts Group ISO/IEC JTC1/SC29/WG11 1988년 15명으로출발! 2001년 3백여명의동영상전문가집단으로성장 MPEG History 101 MPEG-1,2,4,7,21 멀티미디어압축표준

More information

(JBE Vol. 21, No. 1, January 2016) (Regular Paper) 21 1, (JBE Vol. 21, No. 1, January 2016) ISSN 228

(JBE Vol. 21, No. 1, January 2016) (Regular Paper) 21 1, (JBE Vol. 21, No. 1, January 2016)   ISSN 228 (JBE Vol. 1, No. 1, January 016) (Regular Paper) 1 1, 016 1 (JBE Vol. 1, No. 1, January 016) http://dx.doi.org/10.5909/jbe.016.1.1.60 ISSN 87-9137 (Online) ISSN 16-7953 (Print) a), a) An Efficient Method

More information

High Resolution Disparity Map Generation Using TOF Depth Camera In this paper, we propose a high-resolution disparity map generation method using a lo

High Resolution Disparity Map Generation Using TOF Depth Camera In this paper, we propose a high-resolution disparity map generation method using a lo High Resolution Disparity Map Generation Using TOF Depth Camera In this paper, we propose a high-resolution disparity map generation method using a low-resolution Time-Of- Flight (TOF) depth camera and

More information

08김현휘_ok.hwp

08김현휘_ok.hwp (Regular Paper) 21 3, 2016 5 (JBE Vol. 21, No. 3, May 2016) http://dx.doi.org/10.5909/jbe.2016.21.3.369 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) a), a) An Audio Coding Technique Employing the Inter-channel

More information

1. 서 론

1. 서 론 두 장의 영상을 이용한 저조도 환경에서의 실용적 계산 사진 기법과 Mosaic 에의 응용 Practical Computational Photography with A Pair of Images under Low Illumination and Its Application to Mosaic 안택현 O, 홍기상 포항공과대학교 정보통신학과 O, 포항공과대학교 전자전기공학과

More information

08이규형_ok.hwp

08이규형_ok.hwp (JBE Vol. 18, No. 2, March 2013) (Regular Paper) 18 2, 2013 3 (JBE Vol. 18, No. 2, March 2013) http://dx.doi.org/10.5909/jbe.2013.18.2.204 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) DVB-T GPU FFT a),

More information

Microsoft PowerPoint - NV40_Korea_KR_2.ppt

Microsoft PowerPoint - NV40_Korea_KR_2.ppt NV40의 진화 크리스 세이츠 (Chris Seitz) 그래픽의 진보 버츄어 파이터 NV1 1백만 삼각형 Wanda NV1x 2천 2백만 삼각형 Dawn NV3x 1억 3천만 삼각형 Wolfman NV2x 6천 3백만 삼각형 Nalu NV4x 2억 2천 2백만 95-98: 매핑과 Z-버퍼 CPU GPU 어플리케이션 / Geometry Stage Rasterization

More information

3. 클라우드 컴퓨팅 상호 운용성 기반의 서비스 평가 방법론 개발.hwp

3. 클라우드 컴퓨팅 상호 운용성 기반의 서비스 평가 방법론 개발.hwp 보안공학연구논문지 Journal of Security Engineering Vol.11, No.4 (2014), pp.299-312 http://dx.doi.org/10.14257/jse.2014.08.03 클라우드 컴퓨팅 상호 운용성 기반의 서비스 평가 방법론 개발 이강찬 1), 이승윤 2), 양희동 3), 박철우 4) Development of Service

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA 논문 10-35-03-03 한국통신학회논문지 '10-03 Vol. 35 No. 3 원활한 채널 변경을 지원하는 효율적인 IPTV 채널 관리 알고리즘 준회원 주 현 철*, 정회원 송 황 준* Effective IPTV Channel Control Algorithm Supporting Smooth Channel Zapping HyunChul Joo* Associate

More information

차분 이미지 히스토그램을 이용한 이중 레벨 블록단위 가역 데이터 은닉 기법 1. 서론 멀티미디어 기술과 인터넷 환경의 발달로 인해 현대 사회에서 디지털 콘텐츠의 이용이 지속적 으로 증가하고 있다. 이러한 경향과 더불어 디지털 콘텐츠에 대한 소유권 및 저작권을 보호하기

차분 이미지 히스토그램을 이용한 이중 레벨 블록단위 가역 데이터 은닉 기법 1. 서론 멀티미디어 기술과 인터넷 환경의 발달로 인해 현대 사회에서 디지털 콘텐츠의 이용이 지속적 으로 증가하고 있다. 이러한 경향과 더불어 디지털 콘텐츠에 대한 소유권 및 저작권을 보호하기 보안공학연구논문지 (Journal of Security Engineering), 제 10권 제 2호 2013년 4월 차분 이미지 히스토그램을 이용한 이중 레벨 블록단위 가역 데이터 은닉 기법 조성환 1), 윤은준 2), 유기영 3) Twice Level Block-based Reversible Data Hiding Scheme using Difference

More information

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Jun.; 27(6),

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Jun.; 27(6), THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2016 Jun.; 276), 504511. http://dx.doi.org/10.5515/kjkiees.2016.27.6.504 ISSN 1226-3133 Print)ISSN 2288-226X Online) Near-Field

More information

,. 3D 2D 3D. 3D. 3D.. 3D 90. Ross. Ross [1]. T. Okino MTD(modified time difference) [2], Y. Matsumoto (motion parallax) [3]. [4], [5,6,7,8] D/3

,. 3D 2D 3D. 3D. 3D.. 3D 90. Ross. Ross [1]. T. Okino MTD(modified time difference) [2], Y. Matsumoto (motion parallax) [3]. [4], [5,6,7,8] D/3 Depth layer partition 2D 3D a), a) 3D conversion of 2D video using depth layer partition Sudong Kim a) and Jisang Yoo a) depth layer partition 2D 3D. 2D (depth map). (edge directional histogram). depth

More information

<353420B1C7B9CCB6F52DC1F5B0ADC7F6BDC7C0BB20C0CCBFEBC7D120BEC6B5BFB1B3C0B0C7C1B7CEB1D7B7A52E687770>

<353420B1C7B9CCB6F52DC1F5B0ADC7F6BDC7C0BB20C0CCBFEBC7D120BEC6B5BFB1B3C0B0C7C1B7CEB1D7B7A52E687770> Journal of the Korea Academia-Industrial cooperation Society Vol. 13, No. 2 pp. 866-871, 2012 http://dx.doi.org/10.5762/kais.2012.13.2.866 증강현실을 이용한 아동교육프로그램 모델제안 권미란 1*, 김정일 2 1 나사렛대학교 아동학과, 2 한세대학교 e-비즈니스학과

More information

06( ) CPLV 페이지로수정.hwp

06( ) CPLV 페이지로수정.hwp 96 정보과학회논문지 : 컴퓨팅의실제및레터제 20 권제 2 호 (2014.2) 모바일 GPU 를이용한실시간병렬영상처리라이브러리 (Real-Time Parallel Image Processing Library using Mobile GPU) 이종환 강승헌 (Jonghwan Lee) (Seung Heon Kang) 이만희 이성철 (Man Hee Lee) (Shengzhe

More information

Microsoft PowerPoint - gpgpu_proximity.ppt

Microsoft PowerPoint - gpgpu_proximity.ppt Fast Geometric Computations using GPUs 김영준 http://graphics.ewha.ac.kr 이화여자대학교컴퓨터학과 Topics Collision detection Closest point query Approximate arrangement computation Ewha Womans University http://graphics.ewha.ac.kr

More information

05(533-537) CPLV12-04.hwp

05(533-537) CPLV12-04.hwp 모바일 OS 환경의 사용자 반응성 향상 기법 533 모바일 OS 환경의 사용자 반응성 향상 기법 (Enhancing Interactivity in Mobile Operating Systems) 배선욱 김정한 (Sunwook Bae) 엄영익 (Young Ik Eom) (Junghan Kim) 요 약 사용자 반응성은 컴퓨팅 시스템에서 가장 중요 한 요소 중에 하나이고,

More information

2 : (JEM) QTBT (Yong-Uk Yoon et al.: A Fast Decision Method of Quadtree plus Binary Tree (QTBT) Depth in JEM) (Special Paper) 22 5, (JBE Vol. 2

2 : (JEM) QTBT (Yong-Uk Yoon et al.: A Fast Decision Method of Quadtree plus Binary Tree (QTBT) Depth in JEM) (Special Paper) 22 5, (JBE Vol. 2 (Special Paper) 22 5, 2017 9 (JBE Vol. 22, No. 5, Sepember 2017) https://doi.org/10.5909/jbe.2017.22.5.541 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) (JEM) a), a), a) A Fast Decision Method of Quadtree

More information

<31325FB1E8B0E6BCBA2E687770>

<31325FB1E8B0E6BCBA2E687770> 88 / 한국전산유체공학회지 제15권, 제1호, pp.88-94, 2010. 3 관내 유동 해석을 위한 웹기반 자바 프로그램 개발 김 경 성, 1 박 종 천 *2 DEVELOPMENT OF WEB-BASED JAVA PROGRAM FOR NUMERICAL ANALYSIS OF PIPE FLOW K.S. Kim 1 and J.C. Park *2 In general,

More information

28 저전력복합스위칭기반의 0.16mm 2 12b 30MS/s 0.18um CMOS SAR ADC 신희욱외 Ⅰ. 서론 Ⅱ. 제안하는 SAR ADC 구조및회로설계 1. 제안하는 SAR ADC의전체구조

28 저전력복합스위칭기반의 0.16mm 2 12b 30MS/s 0.18um CMOS SAR ADC 신희욱외 Ⅰ. 서론 Ⅱ. 제안하는 SAR ADC 구조및회로설계 1. 제안하는 SAR ADC의전체구조 Journal of The Institute of Electronics and Information Engineers Vol.53, NO.7, July 2016 http://dx.doi.org/10.5573/ieie.2016.53.7.027 ISSN 2287-5026(Print) / ISSN 2288-159X(Online) 논문 2016-53-7-4 c Abstract

More information

2005CG01.PDF

2005CG01.PDF Computer Graphics # 1 Contents CG Design CG Programming 2005-03-10 Computer Graphics 2 CG science, engineering, medicine, business, industry, government, art, entertainment, advertising, education and

More information

2 : (Jaeyoung Kim et al.: A Statistical Approach for Improving the Embedding Capacity of Block Matching based Image Steganography) (Regular Paper) 22

2 : (Jaeyoung Kim et al.: A Statistical Approach for Improving the Embedding Capacity of Block Matching based Image Steganography) (Regular Paper) 22 (Regular Paper) 22 5, 2017 9 (JBE Vol. 22, No. 5, September 2017) https://doi.org/10.5909/jbe.2017.22.5.643 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) a), a), b) A Statistical Approach for Improving

More information

이도경, 최덕재 Dokyeong Lee, Deokjai Choi 1. 서론

이도경, 최덕재 Dokyeong Lee, Deokjai Choi 1. 서론 이도경, 최덕재 Dokyeong Lee, Deokjai Choi 1. 서론 2. 관련연구 2.1 MQTT 프로토콜 Fig. 1. Topic-based Publish/Subscribe Communication Model. Table 1. Delivery and Guarantee by MQTT QoS Level 2.1 MQTT-SN 프로토콜 Fig. 2. MQTT-SN

More information

비디오 / 그래픽 아답터 네트워크 만약에 ArcGolbe를 사용하는 경우, 추가적인 디스크 공간 필요. ArcGlobe는 캐시파일을 생성하여 사용 24 비트 그래픽 가속기 Oepn GL 2.0 이상을 지원하는 비디오카드 최소 64 MB 이고 256 MB 이상을 메모리

비디오 / 그래픽 아답터 네트워크 만약에 ArcGolbe를 사용하는 경우, 추가적인 디스크 공간 필요. ArcGlobe는 캐시파일을 생성하여 사용 24 비트 그래픽 가속기 Oepn GL 2.0 이상을 지원하는 비디오카드 최소 64 MB 이고 256 MB 이상을 메모리 ArcGIS for Desktop 10.4 Single Use 설치가이드 Software: ArcGIS for Desktop 10.4 Platforms: Windows 10, 8.1, 7, Server 2012, Server 2008 ArcGIS for Desktop 10.4 시스템 요구사항 1. 지원 플랫폼 운영체제 최소 OS 버전 최대 OS 버전 Windows

More information

` Companies need to play various roles as the network of supply chain gradually expands. Companies are required to form a supply chain with outsourcing or partnerships since a company can not

More information

Windows Embedded Compact 2013 [그림 1]은 Windows CE 로 알려진 Microsoft의 Windows Embedded Compact OS의 history를 보여주고 있다. [표 1] 은 각 Windows CE 버전들의 주요 특징들을 담고

Windows Embedded Compact 2013 [그림 1]은 Windows CE 로 알려진 Microsoft의 Windows Embedded Compact OS의 history를 보여주고 있다. [표 1] 은 각 Windows CE 버전들의 주요 특징들을 담고 OT S / SOFTWARE 임베디드 시스템에 최적화된 Windows Embedded Compact 2013 MDS테크놀로지 / ES사업부 SE팀 김재형 부장 / jaei@mdstec.com 또 다른 산업혁명이 도래한 시점에 아직도 자신을 떳떳이 드러내지 못하고 있는 Windows Embedded Compact를 오랫동안 지켜보면서, 필자는 여기서 그와 관련된

More information

룩업테이블기반비선형렌즈플레어실시간렌더링방법 (Real-Time Nonlinear Lens-Flare Rendering Method Based on Look-Up Table) 조성훈 정유나 이성길 (Sunghun Jo) (Yuna Jeong) (Sungkil Lee) 요

룩업테이블기반비선형렌즈플레어실시간렌더링방법 (Real-Time Nonlinear Lens-Flare Rendering Method Based on Look-Up Table) 조성훈 정유나 이성길 (Sunghun Jo) (Yuna Jeong) (Sungkil Lee) 요 룩업테이블기반비선형렌즈플레어실시간렌더링방법 (Real-Time Nonlinear Lens-Flare Rendering Method Based on Look-Up Table) 조성훈 정유나 이성길 (Sunghun Jo) (Yuna Jeong) (Sungkil Lee) 요약.,,. /.,,. :,,,, Abstract In computer graphics, high-quality

More information

(JBE Vol. 23, No. 5, September 2018) (Special Paper) 23 5, (JBE Vol. 23, No. 5, September 2018) ISSN

(JBE Vol. 23, No. 5, September 2018) (Special Paper) 23 5, (JBE Vol. 23, No. 5, September 2018)   ISSN (JBE Vol. 23, No. 5, September 2018) (Special Paper) 23 5, 2018 9 (JBE Vol. 23, No. 5, September 2018) https://doi.org/10.5909/jbe.2018.23.5.614 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) Generative

More information

스타크래프트 II: 자유의 날개 TM 빠른 시작을 위한 안내서 시작하기 시스템 최소 요구 사항 PC운영 체제: 최신 서비스 팩과 DirectX 9.0c가 설치된 Windows XP/Windows Vista /Windows 7 CPU: 그래픽 카드: Intel Pentium 4 2.6 GHz 또는 동급의 AMD Athlon 프로세서 128 MB PCIe NVIDIA

More information

APOGEE Insight_KR_Base_3P11

APOGEE Insight_KR_Base_3P11 Technical Specification Sheet Document No. 149-332P25 September, 2010 Insight 3.11 Base Workstation 그림 1. Insight Base 메인메뉴 Insight Base Insight Insight Base, Insight Base Insight Base Insight Windows

More information

13김상민_ok.hwp

13김상민_ok.hwp 3 : HEVC GPU (Sangmin Kim et al. : Adaptive Search Range Decision for Accelerating GPU-based Integer-pel Motion Estimation in HEVC Encoders) (Regular Paper) 19 5, 2014 9 (JBE Vol. 19, No. 5, September

More information

학습영역의 Taxonomy에 기초한 CD-ROM Title의 효과분석

학습영역의 Taxonomy에 기초한 CD-ROM Title의 효과분석 ,, Even the short history of the Web system, the techniques related to the Web system have b een developed rapidly. Yet, the quality of the Webbased application software has not improved. For this reason,

More information

(JBE Vol. 7, No. 4, July 0)., [].,,. [4,5,6] [7,8,9]., (bilateral filter, BF) [4,5]. BF., BF,. (joint bilateral filter, JBF) [7,8]. JBF,., BF., JBF,.

(JBE Vol. 7, No. 4, July 0)., [].,,. [4,5,6] [7,8,9]., (bilateral filter, BF) [4,5]. BF., BF,. (joint bilateral filter, JBF) [7,8]. JBF,., BF., JBF,. : 565 (Special Paper) 7 4, 0 7 (JBE Vol. 7, No. 4, July 0) http://dx.doi.org/0.5909/jbe.0.7.4.565 a), b), a) Depth Map Denoising Based on the Common Distance Transform Sung-Yeol Kim a), Manbae Kim b),

More information

04_오픈지엘API.key

04_오픈지엘API.key 4. API. API. API..,.. 1 ,, ISO/IEC JTC1/SC24, Working Group ISO " (Architecture) " (API, Application Program Interface) " (Metafile and Interface) " (Language Binding) " (Validation Testing and Registration)"

More information

<313120C0AFC0FCC0DA5FBECBB0EDB8AEC1F2C0BB5FC0CCBFEBC7D15FB1E8C0BAC5C25FBCF6C1A42E687770>

<313120C0AFC0FCC0DA5FBECBB0EDB8AEC1F2C0BB5FC0CCBFEBC7D15FB1E8C0BAC5C25FBCF6C1A42E687770> 한국지능시스템학회 논문지 2010, Vol. 20, No. 3, pp. 375-379 유전자 알고리즘을 이용한 강인한 Support vector machine 설계 Design of Robust Support Vector Machine Using Genetic Algorithm 이희성 홍성준 이병윤 김은태 * Heesung Lee, Sungjun Hong,

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA 무선 센서 네트워크 환경에서 링크 품질에 기반한 라우팅에 대한 효과적인 싱크홀 공격 탐지 기법 901 무선 센서 네트워크 환경에서 링크 품질에 기반한 라우팅에 대한 효과적인 싱크홀 공격 탐지 기법 (A Effective Sinkhole Attack Detection Mechanism for LQI based Routing in WSN) 최병구 조응준 (Byung

More information

<B1D7B7A1C7C8C4ABB5E5BBE7BEE72E786C7378>

<B1D7B7A1C7C8C4ABB5E5BBE7BEE72E786C7378> Gyro3D 의운용을위한 PC, 노트북사양 ( 신규구매기준 ) 2009. 4. 기준 / 자이로소프트 ( 주 ) 1) 그래픽카드모델 ( 시리즈별분류 ) - Gyro3D 는그래픽카드성능에영향을많이미치므로그래픽카드사양을반드시점검 구분 낮은사양 노트북 데스크탑 Nvidia Geforce ATI Radeon Nvidia Geforce ATI Radeon X1250 Geforce

More information

04 최진규.hwp

04 최진규.hwp THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2015 Aug.; 26(8), 710717. http://dx.doi.org/10.5515/kjkiees.2015.26.8.710 ISSN 1226-3133 (Print)ISSN 2288-226X (Online) RF ESPAR

More information

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. vol. 29, no. 10, Oct ,,. 0.5 %.., cm mm FR4 (ε r =4.4)

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. vol. 29, no. 10, Oct ,,. 0.5 %.., cm mm FR4 (ε r =4.4) THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2018 Oct.; 29(10), 799 804. http://dx.doi.org/10.5515/kjkiees.2018.29.10.799 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) Method

More information

06_ÀÌÀçÈÆ¿Ü0926

06_ÀÌÀçÈÆ¿Ü0926 182 183 184 / 1) IT 2) 3) IT Video Cassette Recorder VCR Personal Video Recorder PVR VCR 4) 185 5) 6) 7) Cloud Computing 8) 186 VCR P P Torrent 9) avi wmv 10) VCR 187 VCR 11) 12) VCR 13) 14) 188 VTR %

More information

2 : HEVC (Young-Ho Seo et al.: H.265/HEVC Video Watermarking Method with High Image Quality) (Regular Paper) 24 1, (JBE Vol. 24, No. 1, January

2 : HEVC (Young-Ho Seo et al.: H.265/HEVC Video Watermarking Method with High Image Quality) (Regular Paper) 24 1, (JBE Vol. 24, No. 1, January 2: HEVC (Young-Ho Seo et al.: H.265/HEVC Video Watermarking Method with High Image Quality) (Regular Paper) 24 1, 2019 1 (JBE Vol. 24, No. 1, January 2019) https://doi.org/10.5909/jbe.2019.24.1.97 ISSN

More information

(JBE Vol. 20, No. 6, November 2015) (Regular Paper) 20 6, (JBE Vol. 20, No. 6, November 2015) ISSN

(JBE Vol. 20, No. 6, November 2015) (Regular Paper) 20 6, (JBE Vol. 20, No. 6, November 2015)   ISSN (JBE Vol. 20, No. 6, November 2015) (Regular Paper) 20 6, 2015 11 (JBE Vol. 20, No. 6, November 2015) http://dx.doi.org/10.5909/jbe.2015.20.6.880 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) a), a) Frame

More information

07변성우_ok.hwp

07변성우_ok.hwp 2 : (Regular Paper) 19 5, 2014 9 (JBE Vol. 19, No. 5, September 2014) http://dx.doi.org/10.5909/jbe.2014.19.5.631 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) a), a), b) Metadata Management System Implementation

More information

<30312DC2F7BCBCB4EBC4C4C7BBC6C32DBED5BACEBAD0283130B1C731C8A3292E687770>

<30312DC2F7BCBCB4EBC4C4C7BBC6C32DBED5BACEBAD0283130B1C731C8A3292E687770> 디바이스 소셜리티에서의 GPGPU 자원 공유를 위한 오프로딩 프레임워크 Offloading Framework for Sharing GPGPU Resources in Device Sociality 마정현, 박세진, 박찬익 Jeonghyeon Ma, Sejin Park, Chanik Park (790-784) 경북 포항시 남구 효자동 산 31번지 포항공과대학교

More information

untitled

untitled NV40 (Chris Seitz) NV1 1 Wanda NV1x 2 2 Wolfman NV2x 6 3 Dawn NV3x 1 3 Nalu NV4x 2 2 2 95-98: Z- CPU GPU / Geometry Stage Rasterization Unit Raster Operations Unit 2D Triangles Bus (PCI) 2D Triangles (Multitexturing)

More information

Journal of Educational Innovation Research 2017, Vol. 27, No. 2, pp DOI: : Researc

Journal of Educational Innovation Research 2017, Vol. 27, No. 2, pp DOI:   : Researc Journal of Educational Innovation Research 2017, Vol. 27, No. 2, pp.251-273 DOI: http://dx.doi.org/10.21024/pnuedi.27.2.201706.251 : 1997 2005 Research Trend Analysis on the Korean Alternative Education

More information

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Feb.; 29(2), IS

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Feb.; 29(2), IS THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2018 Feb.; 29(2), 93 98. http://dx.doi.org/10.5515/kjkiees.2018.29.2.93 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) UHF-HF

More information

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Nov.; 26(11),

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Nov.; 26(11), THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2015 Nov.; 26(11), 985991. http://dx.doi.org/10.5515/kjkiees.2015.26.11.985 ISSN 1226-3133 (Print)ISSN 2288-226X (Online) Analysis

More information

Sequences with Low Correlation

Sequences with Low Correlation 레일리페이딩채널에서의 DPC 부호의성능분석 * 김준성, * 신민호, * 송홍엽 00 년 7 월 1 일 * 연세대학교전기전자공학과부호및정보이론연구실 발표순서 서론 복호화방법 R-BP 알고리즘 UMP-BP 알고리즘 Normalied-BP 알고리즘 무상관레일리페이딩채널에서의표준화인수 모의실험결과및고찰 결론 Codig ad Iformatio Theory ab /15

More information

19_9_767.hwp

19_9_767.hwp (Special Paper) 19 6, 2014 11 (JBE Vol. 19, No. 6, November 2014) http://dx.doi.org/10.5909/jbe.2014.19.6.836 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) HEVC a), a) Scheme for Reducing HEVC Intra Coding

More information

05안용조.hwp

05안용조.hwp (Regular Paper) 18 6, 2013 11 (JBE Vol. 18, No. 6, November 2013) http://dx.doi.org/10.5909/jbe.2013.18.6.835 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) HEVC a), a), b), b), b), a) Study of Parallelization

More information

디지털TV솔루션 브로셔

디지털TV솔루션 브로셔 개요 [ADC] [DDC] [DAC] [VSC] 영상 / 음성 변환및압축 Ethernet Stream 전송및전시 저장및재생 입력 - SD 급영상동시 4CH - 디지털영상동시 2CH - Analog Audio 동시 2CH 영상 : H.264 압축 음성 : PCM 16bit HW 방식 Encoding 지원 Gigabit 이더넷전송 / 수신 낮은지연시간 ( 최대

More information

2 : 3 (Myeongah Cho et al.: Three-Dimensional Rotation Angle Preprocessing and Weighted Blending for Fast Panoramic Image Method) (Special Paper) 23 2

2 : 3 (Myeongah Cho et al.: Three-Dimensional Rotation Angle Preprocessing and Weighted Blending for Fast Panoramic Image Method) (Special Paper) 23 2 (Special Paper) 232, 2018 3 (JBE Vol. 23, No. 2, March 2018) https://doi.org/10.5909/jbe.2018.23.2.235 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) 3 a), a), a) Three-Dimensional Rotation Angle Preprocessing

More information

À¯Çõ Ãâ·Â

À¯Çõ Ãâ·Â Network Virtualization Techniques for Future Internet Services in cloud computing are based on network virtualization that provides both flexibility and network isolation. Network virtualization consists

More information

방송공학회 논문지_최정아_심사용.hwp

방송공학회 논문지_최정아_심사용.hwp 본 논문은 한국방송공학회 논문지 투고본입니다. 1. 제목 (국문) x264와 GPU를 이용한 실시간 양안식 3차원 방송 시스템 (영문) Real-time Stereoscopic 3D Broadcasting System using x264 and GPU 2. 연구 분야 3차원 방송 시스템 3. 저자 1) 최정아(Jung-Ah Choi) (500-712) 광주광역시

More information

Æ÷Àå½Ã¼³94š

Æ÷Àå½Ã¼³94š Cho, Mun Jin (E-mail: mjcho@ex.co.kr) ABSTRACT PURPOSES : The performance of tack coat, commonly used for layer interface bonding, is affected by application rate and curing time. In this study, bonding

More information

1 : (Sunmin Lee et al.: Design and Implementation of Indoor Location Recognition System based on Fingerprint and Random Forest)., [1][2]. GPS(Global P

1 : (Sunmin Lee et al.: Design and Implementation of Indoor Location Recognition System based on Fingerprint and Random Forest)., [1][2]. GPS(Global P (JBE Vol. 23, No. 1, January 2018) (Regular Paper) 23 1, 2018 1 (JBE Vol. 23, No. 1, January 2018) https://doi.org/10.5909/jbe.2018.23.1.154 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) a), a) Design

More information

그림 2. 최근 출시된 스마트폰의 최대 확장 가능한 내장 및 외장 메모리 용량 원한다. 예전의 피쳐폰에 비해 대용량 메모리를 채택하고 있지 만, 아직 데스크톱 컴퓨터 에 비하면 턱없이 부족한 용량이다. 또한, 대용량 외장 메모리는 그 비용이 비싼 편이다. 그러므로 기존

그림 2. 최근 출시된 스마트폰의 최대 확장 가능한 내장 및 외장 메모리 용량 원한다. 예전의 피쳐폰에 비해 대용량 메모리를 채택하고 있지 만, 아직 데스크톱 컴퓨터 에 비하면 턱없이 부족한 용량이다. 또한, 대용량 외장 메모리는 그 비용이 비싼 편이다. 그러므로 기존 스마트폰을 위한 A/V 신호처리기술 편집위원 : 김홍국 (광주과학기술원) 스마트폰을 위한 동영상 압축 기술 호요성, 최정아 광주과학기술원 요 약 스마트폰이 대중화되면서 이동통신 시장은 일대 혁신을 맞이 했다. 최근 출시되는 스마트폰이 크고 선명한 화면과 빠른 프로 세서를 잇따라 탑재하면서 고해상도 및 고품질 영상에 대한 사 용자들의 수요가 급증하고 있다. 하지만

More information

<35335FBCDBC7D1C1A42DB8E2B8AEBDBAC5CDC0C720C0FCB1E2C0FB20C6AFBCBA20BAD0BCAE2E687770>

<35335FBCDBC7D1C1A42DB8E2B8AEBDBAC5CDC0C720C0FCB1E2C0FB20C6AFBCBA20BAD0BCAE2E687770> Journal of the Korea Academia-Industrial cooperation Society Vol. 15, No. 2 pp. 1051-1058, 2014 http://dx.doi.org/10.5762/kais.2014.15.2.1051 멤리스터의 전기적 특성 분석을 위한 PSPICE 회로 해석 김부강 1, 박호종 2, 박용수 3, 송한정 1*

More information

227-233Â÷¼øÁÖ

227-233Â÷¼øÁÖ 227 228 Table 1. The Results of PSNR (db) for Various Compression Rate Modality Case 5:1 10:1 20:1 40:1 80:1 MR 9 71.68 2.37 60.54 2.51 52.85 2.53 48.54 2.29 44.09 2.47 CT 9 51.90 1.67 63.70 2.02 57.32

More information

지능정보연구제 16 권제 1 호 2010 년 3 월 (pp.71~92),.,.,., Support Vector Machines,,., KOSPI200.,. * 지능정보연구제 16 권제 1 호 2010 년 3 월

지능정보연구제 16 권제 1 호 2010 년 3 월 (pp.71~92),.,.,., Support Vector Machines,,., KOSPI200.,. * 지능정보연구제 16 권제 1 호 2010 년 3 월 지능정보연구제 16 권제 1 호 2010 년 3 월 (pp.71~92),.,.,., Support Vector Machines,,., 2004 5 2009 12 KOSPI200.,. * 2009. 지능정보연구제 16 권제 1 호 2010 년 3 월 김선웅 안현철 社 1), 28 1, 2009, 4. 1. 지능정보연구제 16 권제 1 호 2010 년 3 월 Support

More information

02손예진_ok.hwp

02손예진_ok.hwp (JBE Vol. 20, No. 1, January 2015) (Special Paper) 20 1, 2015 1 (JBE Vol. 20, No. 1, January 2015) http://dx.doi.org/10.5909/jbe.2015.20.1.16 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) UHD MMT a),

More information

8-VSB (Vestigial Sideband Modulation)., (Carrier Phase Offset, CPO) (Timing Frequency Offset),. VSB, 8-PAM(pulse amplitude modulation,, ) DC 1.25V, [2

8-VSB (Vestigial Sideband Modulation)., (Carrier Phase Offset, CPO) (Timing Frequency Offset),. VSB, 8-PAM(pulse amplitude modulation,, ) DC 1.25V, [2 VSB a), a) An Alternative Carrier Phase Independent Symbol Timing Offset Estimation Methods for VSB Receivers Sung Soo Shin a) and Joon Tae Kim a) VSB. VSB.,,., VSB,. Abstract In this paper, we propose

More information

example code are examined in this stage The low pressure pressurizer reactor trip module of the Plant Protection System was programmed as subject for

example code are examined in this stage The low pressure pressurizer reactor trip module of the Plant Protection System was programmed as subject for 2003 Development of the Software Generation Method using Model Driven Software Engineering Tool,,,,, Hoon-Seon Chang, Jae-Cheon Jung, Jae-Hack Kim Hee-Hwan Han, Do-Yeon Kim, Young-Woo Chang Wang Sik, Moon

More information

1

1 1 2 3 4 5 6 b b t P A S M s R B 7 m P P 8 t P A S M s R 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 Chapter 1 27 1 2 3 4 5 6 5 7 8 9 1 t P A S M s R B 2 7 8 9 10 11 12 13 13 12 11 10 3 4 5 6 28 11

More information

°í¼®ÁÖ Ãâ·Â

°í¼®ÁÖ Ãâ·Â Performance Optimization of SCTP in Wireless Internet Environments The existing works on Stream Control Transmission Protocol (SCTP) was focused on the fixed network environment. However, the number of

More information

SchoolNet튜토리얼.PDF

SchoolNet튜토리얼.PDF Interoperability :,, Reusability: : Manageability : Accessibility :, LMS Durability : (Specifications), AICC (Aviation Industry CBT Committee) : 1988, /, LMS IMS : 1997EduCom NLII,,,,, ARIADNE (Alliance

More information

<333820B1E8C8AFBFEB2D5A6967626565B8A620C0CCBFEBC7D120BDC7BFDC20C0A7C4A1C3DFC1A42E687770>

<333820B1E8C8AFBFEB2D5A6967626565B8A620C0CCBFEBC7D120BDC7BFDC20C0A7C4A1C3DFC1A42E687770> Journal of the Korea Academia-Industrial cooperation Society Vol. 13, No. 1 pp. 306-310, 2012 http://dx.doi.org/10.5762/kais.2012.13.1.306 Zigbee를 이용한 실외 위치추정 시스템 구현 김환용 1*, 임순자 1 1 원광대학교 전자공학과 Implementation

More information

슬라이드 1

슬라이드 1 강력한성능! 인터넷 / 업무용데스크탑 PC NX-H Series Desktop PC NX1- H700/H800/H900 NX2- H700/H800/H900 NX1-H Series 사양 Series 제품설명 ( 모델명 ) NX1-H Series, 슬림타입 기본형모델중보급형모델고급형모델 NX1-H800:112SN NX1-H800:324SN NX1-H800:534MS

More information

. 고성능마이크로프로세서 LU 와레지스터 파일의구조 (2.). 직접디지털주파수합성기 (FS) 의구조 3. 고성능마이크로프로세서부동소수점연산기 (Floating-Point Unit) 구조 (2) (2.) (2.) 2. 암호화를위한 VLSI 구조와설계의개요 (2.) 다음참

. 고성능마이크로프로세서 LU 와레지스터 파일의구조 (2.). 직접디지털주파수합성기 (FS) 의구조 3. 고성능마이크로프로세서부동소수점연산기 (Floating-Point Unit) 구조 (2) (2.) (2.) 2. 암호화를위한 VLSI 구조와설계의개요 (2.) 다음참 이비디오교재는정보통신부의 999년도정보통신학술진흥지원사업에의하여지원되어연세대학교전기전자공학과이용석교수연구실에서제작되었습니다 고성능마이크로프로세서 LU ( rithmetic Logic Unit) 와 Register File의구조 2. 연세대학교전기전자공학과이용석교수 Homepage: http://mpu.yonsei.ac.kr E-mail: yonglee@yonsei.ac.kr

More information

1_12-53(김동희)_.hwp

1_12-53(김동희)_.hwp 본논문은 2012년전력전자학술대회우수추천논문임 Cascaded BuckBoost 컨버터를 이용한 태양광 모듈 집적형 저전압 배터리 충전 장치 개발 472 강압이 가능한 토폴로지를 이용한 연구도 진행되었지만 제어 알고리즘의 용의성과 구조의 간단함 때문에 BuckBoost 컨버터 또는 Sepic 컨버터를 이용하여 연구 가 진행되었다[10][13]. 태양광 발전

More information

03-최신데이터

03-최신데이터 Database Analysis II,,. II.. 3 ( ),.,..,, ;. (strong) (weak), (identifying relationship). (required) (optional), (simple) (composite), (single-valued) (multivalued), (derived), (identifier). (associative

More information

09È«¼®¿µ 5~152s

09È«¼®¿µ5~152s Korean Journal of Remote Sensing, Vol.23, No.2, 2007, pp.45~52 Measurement of Backscattering Coefficients of Rice Canopy Using a Ground Polarimetric Scatterometer System Suk-Young Hong*, Jin-Young Hong**,

More information

PowerPoint Presentation

PowerPoint Presentation GPU-based Keylogger Jihwan yoon 131ackcon@gmail.com Index Who am I Keylogger, GPU GPU based Keylogging - Locating the keyboard buffer - Capturing KEYSTROKES Demo About me Who am I 윤지환 CERT-IS reader BOB

More information

비트와바이트 비트와바이트 비트 (Bit) : 2진수값하나 (0 또는 1) 를저장할수있는최소메모리공간 1비트 2비트 3비트... n비트 2^1 = 2개 2^2 = 4개 2^3 = 8개... 2^n 개 1 바이트는 8 비트 2 2

비트와바이트 비트와바이트 비트 (Bit) : 2진수값하나 (0 또는 1) 를저장할수있는최소메모리공간 1비트 2비트 3비트... n비트 2^1 = 2개 2^2 = 4개 2^3 = 8개... 2^n 개 1 바이트는 8 비트 2 2 비트연산자 1 1 비트와바이트 비트와바이트 비트 (Bit) : 2진수값하나 (0 또는 1) 를저장할수있는최소메모리공간 1비트 2비트 3비트... n비트 2^1 = 2개 2^2 = 4개 2^3 = 8개... 2^n 개 1 바이트는 8 비트 2 2 진수법! 2, 10, 16, 8! 2 : 0~1 ( )! 10 : 0~9 ( )! 16 : 0~9, 9 a, b,

More information

<33312D312D313220C0CCC7D1C1F820BFB0C3A2BCB12E687770>

<33312D312D313220C0CCC7D1C1F820BFB0C3A2BCB12E687770> Journal of the Society of Korea Industrial and Systems Engineering Vol No pp March 8 Scatter Search를 이용한 신뢰성 있는 네트워크의 경제적 설계 * ** * ** Economic Design of Reliable Networks Using Scatter Search HanJin Lee*

More information

(JBE Vol. 23, No. 5, September 2018) (Regular Paper) 23 5, (JBE Vol. 23, No. 5, September 2018) ISSN

(JBE Vol. 23, No. 5, September 2018) (Regular Paper) 23 5, (JBE Vol. 23, No. 5, September 2018)   ISSN (Regular Paper) 23 5, 2018 9 (JBE Vol. 23, No. 5, September 2018) https://doi.org/10.5909/jbe.2018.23.5.682 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) MMT ARQ a), a), a), a), a) ARQ Packet Error Control

More information

0125_ 워크샵 발표자료_완성.key

0125_ 워크샵 발표자료_완성.key WordPress is a free and open-source content management system (CMS) based on PHP and MySQL. WordPress is installed on a web server, which either is part of an Internet hosting service or is a network host

More information

Microsoft PowerPoint - 2006 4Q AMD DT channel training Nov.ppt

Microsoft PowerPoint - 2006 4Q AMD DT channel training Nov.ppt ctober 2006 2006 Q4 AMD 데스크탑 프로세서 소개 2006 / 11 4분기 새 소식! 이제 본격적인 AM2 시즌! 소켓 939와 소켓754는 일부재고제품으로운영후단종 Quad-core, DDR2 메모리, 가상화기술 지원- 미래형 플랫폼 최고 성능의 명예를 이어가는 FX-70, -72 & -74 출시 4X4 Platform, 2-Processor

More information

서강대학교 기초과학연구소대학중점연구소 심포지엄기초과학연구소

서강대학교 기초과학연구소대학중점연구소 심포지엄기초과학연구소 2012 년도기초과학연구소 대학중점연구소심포지엄 마이크로파센서를이용한 혈당측정연구 일시 : 2012 년 3 월 20 일 ( 화 ) 14:00~17:30 장소 : 서강대학교과학관 1010 호 주최 : 서강대학교기초과학연구소 Contents Program of Symposium 2 Non-invasive in vitro sensing of D-glucose in

More information

Microsoft Word - KSR2012A021.doc

Microsoft Word - KSR2012A021.doc YWXY G ºG ºG t G G GGGGGGGGGrzyYWXYhWYXG Ÿƒ Ÿ ± k ¹Ÿˆ Review about the pantograph field test result adapted for HEMU-430X (1) ÕÕÛ äñ ã G Ki-Nam Kim, Tae-Hwan Ko * Abstract In this paper, explain differences

More information

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Jan.; 26(1),

THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Jan.; 26(1), THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2015 Jan.; 26(1), 113118. http://dx.doi.org/10.5515/kjkiees.2015.26.1.113 ISSN 1226-3133 (Print)ISSN 2288-226X (Online) A Retro-Directive

More information

07.045~051(D04_신상욱).fm

07.045~051(D04_신상욱).fm J. of Advanced Engineering and Technology Vol. 1, No. 1 (2008) pp. 45-51 f m s p» w Á xá zá Ÿ Á w m œw Image Retrieval Based on Gray Scale Histogram Refinement and Horizontal Edge Features Sang-Uk Shin,

More information

표지

표지 2 : Retinex (Regular Paper) 17 5, 2012 9 (JBE Vol. 17, No. 5, September 2012) http://dx.doi.org/10.5909/jbe.2012.17.5.851 ISSN 1226-7953(Print) Retinex a), b), c) Color Improvement of Retinex Image Using

More information

04_이근원_21~27.hwp

04_이근원_21~27.hwp 1) KIGAS Vol. 16, No. 5, pp 21~27, 2012 (Journal of the Korean Institute of Gas) http://dx.doi.org/10.7842/kigas.2012.16.5.21 실험실의 사례 분석에 관한 연구 이근원 이정석 한국산업안전보건공단 산업안전보건연구원 (2012년 9월 5일 투고, 2012년 10월 19일

More information