9장.ppt

Size: px
Start display at page:

Download "9장.ppt"

Transcription

1 개요 9 장영상압축 압축의필요성 데이터의대용량화 저장, 전송매체의한계압축의 2가지분류 손실 (lossy) 압축 시각적으로구분할수없는데이터허용 무손실 (lossless) 압축 처리상에서자료의손실이없으며입출력데이터와완전동일 의료영상, 도면, 설계도등 압축시고려사항 압축률 ( 압축률 = 원시자료 / 압축자료 ) encoding/decoding 시간 알고리즘복잡도계산되는자원의가용성과비용 표준화여부 1 2 런길이 (Run length) 인코딩 압축알고리즘분류도 3 Run 은반복되는문자, Length 는반복되는횟수를의미 BBBBBCCCCCCCCDEEEE (22 byte) => 45B8C1D4E (10 byte) 압축률 : 22 byte / 10 byte = 2.2 MyDogHasFleas (13 byte) => 1M1y1D1o1g1H1a1s1F1l1e1a1s (26 byte) 압축률 : 13 byte / 26 byte = 0.5 ( 원시자료보다 2배증가 ) 유일한자료로이루어진스트링의경우원자료를표현하고, Runlength encoding 은반복된자료에적용 전치문자 + 자료의개수 + 원자료의해당문자 BCDDDDDDDDEEEEEEEEE ( 19 byte) => BC*8D*9E ( 9 byte) 압축률 : 19 byte / 9 byte = byte 보다긴 run 일경우압축률이높아짐 4 * MacPaint 영상파일의형식 개수바이트와전치문자를결합한런길이인코딩사용 count byte 반복될 Pattern 1 data byte count byte 유일한데이터들 ( 1 to 72 ) 0 data byte data byte MacPaint 부호화형태 변화가없는배경을가진영상에서효율적 만화.. 실제영상에서는많이사용하지않음 RLE를사용하는확장자 *. RLE, *.GEM (TIF, TG는옵션 ) PCX 영상을평면 (bit plane) 으로분리하여일부의평면들에대해 RLE를한다

2 허프만 (Huffman) 코딩 배경 RLE 는 3 번이상반복되는문자들에이용되기때문에, 영어문장에서는잘수행이안됨 효율을높이기위해서빈번하게발생되는자료의표현에적은수의비트를사용하고드물게발생되는자료는많은비트들을사용하는가변길이코딩사용 1952 년 David Huffman 의논문 모르스부호와유사 : Dot 와 Dash 를사용 빈도수높은글자 : E(.), T(-) 빈도수낮은글자 : Q(- -, -) toupee t o u p e e (48 bit) (23 bit) 압축률 : 전치특성 (Prefix property) 이진트리코드를사용하는이유 한코드가다른코드앞에위치할수없다 e 가 01 로표현되어졌다면, 010 은다른영문자로인코딩될수없어야함 Decoder가 010 이라는비트스트림을스캔할때, 01 이들어오면 e 를출력하고다음의 0 에서스캔시작한문자에대한코드의길이가다른가변길이부호화에서는모든기법들은전치특성을가져야한다. 9 허프만코드의생성 문자의빈도수에따른문자들의배열을생성 이진트리를사용하여허프만테이블구성 1. 처음에는모든문자들을각기독립된노드인자유노드들로간주 2. 가장낮은빈도수를가진두개의자유노드들을자식노드로하는하나의부모노드를생성, 생성되는부모노드는자식노드들의합과동일한가중치를가짐 3. 연결한두개의자식노드들을자유노드리스트에서제거, 새롭게생성된부모노드를리스트에추가 4. 2단계와 3단계를하나의자유노드만남을때까지반복수행, 이자유노드는구성되는트리의루트가됨 10 빈도수표 인코딩에두단계필요 문자의빈도수측정 트리구조를사용하여압축 일반적으로표준허프만테이블사용 ( 최적화되지못함 ) 허프만코드생성 단점 2

3 Huffman coding 수정된허프만 (MH) 코딩 팩시밀리에주로사용 : ITU-TS의권고 T.0 G(group)1, G2 : 아날로그팩스 G3, G4 : 디지털방식, MH, MR, MMR TIFF파일의저장에서옵션으로사용가변길이에대한허프만코딩과 RLE의결합방법 63이하의 run들은종료코드로코드화 64이상의 run들은구성코드와종료코드의조합으로코드화 종료코드 0 ~ 63의 run 을 black bit와 white bit에대해허프만코드생성 구성코드 64 ~ 2560의수중64 step에대하여허프만코드를생성배경 팩시밀리의데이터는 85% 가흰색배경허프만코드기법으로짧은검정과긴흰색의 run들을최적화 수정된 RED(MR) 팩시밀리에서사용 Modified Relative Element ddress Designate 수정된허프만코딩을포함하는모집단배경 전송자료의 75% 가한화소의왼쪽이나오른쪽또는바로아래라인의자료가전송 K개의스캔라인에서첫번째라인은수정된허프만기법으로부호화된후에참조라인이된다. 나머지라인들은이전에인코딩된라인을참조로하여현코딩라인을인코딩한다

4 패스모드코딩 b2가 a1의왼쪽에위치할경우발생수직모드코딩 a1의수평적인위치가 b1의오른쪽또는왼쪽의 3개의화소내에있을경우사용수평모드코딩 수직모드코딩이사용이될수없을경우사용 수정된 RED 흐름도 LZW 압축알고리듬 Lempel, Ziv Huffman Coding 은전형적으로한문자만을코딩하는제약사항을가지고있었고, 문자열을인코딩하는방법제안 ( 1977년 braham Lempel 과 Jacob Ziv 의논문 ) Ł LZW (Lempel Ziv Welch), (1984 년 Terry Welch 가 IEEE 에발표 ) 텍스트파일들에서의마침표다음의스페이스또는 the 라는단어같이빈번하게발생하는문자순열활용 LZW 압축알고리듬 encode strings of data by creating a code table no need to include code table with compressed data use 12 bit codewords, so code table has 4096 locations initialize first 256 locations to single characters parse input characters to form strings which are to be inserted into string table in locations decoder creates the same string table during decompression LZW initialize first 256 entries to single characters update string table for each character in coded stream, except the first one after codeword is expanded to its corresponding string via string table, the first char of the string is appended to the previous string and added to the table can compress input stream in single pass require no prior information about input stream Encoding algorithm initialize table with single character strings STRING = first input character WHILE not end of input stream CHRCTER = next input character IF STRING+CHRCTER is in the string table STRING =STRING+CHRCTER ELSE output the code for STRING add STRING+CHRCTER to the string table STRING=CHRCTER END WHILE output code for string

5 Encoding Decoding algorithm BBB Encoder output String table output code representing codeword string 66 B 256 B B 256 B 258 B 257 B 259 B 압축율 : 8x9/12x6=1 25 initialize table with single character strings OLD_CODE=first input character output translation of OLD_CODE WHILE not end of input stream NEW_CODE=next input character IF NEW_CODE is not in the string table STRING=translation of OLD_CODE STRING=STRING+CHRCTER ELSE STRING=translation of NEW_CODE output STRING CHRCTER=first character of STRING add OLD_CODE+CHRCTER to the string table OLD_CODE=NEW_CODE END WHILE 26 Decoding Decoder output String table string codeword string B 256 B B 257 B B 258 B 259 B 260 gif file rithmetic Coding, MIT take in complete data stream and output one specific codeword which is floating point number between 0 and 1 two pass algorithm first pass computes characters frequency and constructs probability table with ranges assigned to each entry of the table second pass does actual compression first character of input stream constrains output number to its corresponding range, and the range of next character of input stream further constrains the number, and so on. decoding is reverse of encoding achieve higher compression ratio than Huffman, but computationally expensive 산술코딩 0의발생확률 P0=2/3, 1의발생확률 P1=1/3 입력심볼 : 의구간 : (2/3)x(2/3)x(2/3)=8/27= b (2/3)x(2/3)=4/9= b 011 : 구간내에서비트수가가장작은데이터로코딩함 구간폭이큰, 즉, 발생확률이큰심볼일수록짧은길이의부호데이터가할당됨 LOW=0.0 HIGH=1.0 Encoding lgorithm WHILE not end of input stream get next CHRCTER RNGE=HIGH-LOW HIGH=(LOW+RNGE)*high range of CHRTER LOW=(LOW+RNGE)*low range of character END WHILE output LOW

6 Encoding Example RTHMETIC symbol probability range 0.0- C - E -0.3 H I M R T R I T H M E T I C Encoding example range low high Decoding lgorithm Decoding get NUMBER DO find CHRCTER that has HIGH>NUMBER and LOW<NUMBER set HIGH and LOW corresponding to CHRCTER output CHRCTER RNGE=HIGH-LOW NUMBER=NUMBER-LOW NUMBER=NUMBER/RNGE UNTIL no more CHRCTERs 33 num R I T H M E T I C range low high JPEG JPEG Joint(ISO+CCITT) Photographic Experts Group JPEG 은디지털화된자연이미지 ( continuous tone digital still image data ) 의압축에관한국제표준 80 년대중반에서후반에걸쳐 JPEG 정지영상압축방식을결정하는과정에서, 유럽은 DCT 방식을일본은 VQ 방식을그리고미국특히 IBM 사는 rithmetic Coding 을주장해서첨예한논쟁을벌였다. JPEG 은컬러및그레이스케일영상에적용되며이치영상 ( bi-level ) 에는적용될수없고 JBIG 에서다룬다. 비가역부호화 (DCT) 기본시스템 순차적 (sequential) build-up 방식, Huffman 부호화 확장시스템 점진적 (progressive) build-up 방식, 허프만 / 산술부호, multiple scan encoding, successive image 가역부호화 (DPCT) 가역시스템 순차적 build-up 방식, 허프만 / 산술부호

7 JPEG mode Baseline processes ( required for all DCT-based decoders ) 인코더 DCT-based process Source image : 8-bit samples within each component Sequential Huffman coding : 2 C and 2 DC tables Decoders shall process scans with 1, 2, 3, and 4 components Interleaved and non-interleaved scans Extended DCT-based processes 디코더 베이스라인 JPEG DCT-based process Source image : 8-bit or 12-bit samples Sequential or progressive Huffman coding : 4 C and 4 DC tables Decoders shall process scans with 1, 2, 3, and 4 components Interleaved and non-interleaved scans JPEG Lossless processes Predictive process ( not DCT-based ) Source image : P-bit samples ( 2 P 16 ) Sequential Huffman coding : 4 DC tables Decoders shall process scans with 1, 2, 3, and 4 components Interleaved and non-interleaved scans Hierarchical processes Multiple frames ( non-differential and differential ) Uses extended DCT-based or lossless processes Decoders shall process scans with 1, 2, 3, and 4 components Interleaved and non-interleaved scans still-image compression standard has 3 lossless modes and 1 lossy mode sequential baseline encoding encode in one scan input & output data precision is limited to 8 bits, while quantized DCT values are restricted to 11 bits progressive encoding hierarchical encoding lossless encoding can achieve compression ratios of upto 20 to 1 without noticeable reduction in image quality DCT-based mode Encoder work well for continuous tone images, but not good for cartoons or computer generated images tend to filter out high frequency data can specify a quality level (Q) with too low Q, resulting images may contain blocky, contouring and ringing structures. 5 steps of sequential baseline JPEG encoding transform image to luminance/chrominance space (YCbCr) reduce the color components (optional) partition image into 8x8 pixel blocks and perform DCT on each block quantize resulting DCT coefficients variable length code the quantized coefficients

8 subimage size selection Baseline JPEG compression step1 separate luminance and chrominance because more information can be removed from chrominance. human eye tends to perceive small changes in brightness better than in color step2 subsample color components by 2 horizontally and vertically (option) step3 convert elements in a tile to signed integers by subtracting one half of gray scale (0,0) element of DCTed block is DC and other elements are C Step 1, 2 : RGB to YCbCr Y=0.3R+0.59G+1B Cb=-7R-0.33G+0.5B Cr=0.5R-0.42G-0.08B Y DCT Cb, Cr 가로방향으로 1 pixel 씩생략 24bits/pixel 1/20 step4 quantize and threshold by T * (u,v) = round [ T(u,v)/Z(u,v)] T(u,v) = transformed coefficient Z(u,v) = transform normalization array T * (u,v) = thresholded & quantized approximation of T(u,v) when Z(u,v) = c, T*(u,v) Y Cb Cr c 2c T(u,v) at a receiver site, T * (u,v) must be multiplied by Z(u,v) and then inverse transformed to get approximate of subimage T ** (u,v) = T * (u,v)xz(u,v) normalization matrix is determined by quality level Q if Z(u,v) > 2T(u,v), then T*(u,v)=0 transform coefficient is completely truncated or discarded when T * (u,v) is represented with variable length code whose length increases as T(u,v) increases, the number of bits is controlled by Z(u,v) reorder quantized coefficients using zigzag pattern to form 1-dim sequence of quantized coefficients zigzag pattern may result in long run of zeros step5 DC coefficient is difference coded relative to DC coefficient of previous subimage C coefficients are broken into runs of zeros ending in a nonzero number. Each broken block is to be variable length coded classify each coefficient into some categories based on its range run length and category specifies basecode and the number of bits of a code determine tailing bits of a code considering least significant bits of coefficient apply one s complement to specify sign of the coefficient

9 8x8 block DCT 양자화 영상을 8x8 Block 으로나누어서 DCT 를수행 DCT 는공간도메인에서주파수도메인으로변환이며, 1 개의 DC 값과 63 개의 C 값이생성. 그림 ( 가 ) 는원영상이고 ( 나 ) 는 8x8 Block DCT 한영상 ( 나 ) 에서흰점들은 DC 성분이며 DC 성분주위로저주파성분값들이집중되어있고, block 우하단에고주파성분들이집중하게된다. 자연영상은대부분저주파영상이기때문에 block 우하단고주파성분영역에는 0 값이채워지게된다. DCT 계수들을해당양자화값으로나누어서정수값으로반올림양자화값은양자화테이블에제공 JPEG 에서지정한양자화테이블은없으며아래테이블은휘도예임. 가 나 엔트로피코딩 양자화된 DCT 계수는 1 개의 DC 와 63 개의 C 가생성된다. C 는 ZigZag Scan 순으로일련의스트링을형성하는데, 이때그림과같이 0 이아닌값으로끝나는소단위스트링으로나눌수있다. 즉, {-31},{0,-2},{-1},{-1},{-1},{0,0,-1},{-1},{0 0} 으로나눌수있다 lossless encoding DC DC=-31, 이전의 DC=-34 DC=DCi-DCi-1=-31-(-34)=+3 C DC, CŁ(symbol-1)+(symbol-2) symbol-1 : 0 런길이 (RUNLENGTH), 비트수 (SIZE to encode non-zero MPLITUDE) VLC(variable-length code) Huffman Codes, prefix property symbol-2 : VLI(variable-length integer) Example of 8x8 grayscale image DC 또는소단위스트링은 VLC + VLI 로인코딩된다. VLC Run Length 0 의개수 SIZE 0 이아닌값을코딩하는데필요한비트수 VLI 0 이아닌값자체 DC 는이전블록의 DC 와의차분값 Diff = DCcurrent DCprevious 를 VLI 로코딩하고 VLC 에는 SIZE 만온다. VLI 가음수일경우는그값에서 1 을빼준다. 즉 2 은 10, -2 은 10-1 = 01 이된다. 는비트스트링을의미한다. C 의경우한소단위스트링에서 Run 은 16 개까지처리할수있으며, 내부적으로 (F,0) 으로처리하고, (F,0) 은연속 3 개까지올수있다. 더이상 0 이아닌계수값이없을때는 EOB 으로끝내며, 내부적으로 (0,0) 코드를사용한다. 53 Use Luminance Quantization Table 9.6 {-31},{0,-2},{-1},{-1},{-1},{0,0,-1},{-1},{0...0} Lossless Encoding DC=+3 SIZE=2 발생확률구함 VLC=011 VLI= (Table 9.13) comp ratio=8*64/34 =

10 Decoding 그림 9.16 decode VLCs and VLIs dequantize IDCT 그림 9.17 image degrade Huffman rithmetic coding ( 5-10% better but complex) Lossless 압축 그림 9.18 does not use DCT 압축율 : JPEG file format : no standard JFIF(JPEG file interchange format) JPEG extension (TIFF 6.0) Lossless 코딩 (1/2) Prediction of X 57 scheme Prediction no prediction (differential encoding) B C +B-C +(B-C)/2 B+(-C)/2 (+B)/2 58 Vector Quantization 개요 VQ 인코더 / 디코더블록도 벡터양자화는원이미지를 n- 차원이미지벡터로분해 예를들어 n 은 l x m 픽셀값이 n 차원벡터를구성할수있다. 각이미지벡터, X, 는코드북에있는코드벡터 Xi, I = 1,., Nc, 와비교한다. 이때코드벡터도 n 차원을갖는다. 선택된 minimum distortion rule 을이용해가장잘매치되는코드벡터를선택해서이코드벡터의인덱스를코딩한다. 이때가장많이사용하는 distortion measure 로는 MSE 를사용한다. 원영상 Form X Minimize distortion index k image vectors d(x, Xi) Codebook Xi, i = 1,...,Nc index k Table Xk channel Look-up channel Codebook Xi, i = 1,...,Nc

11 기존영상압축기법과의차이 비트맵그래픽과벡터그래픽간의차이와매우유사 개별적인화소들에대한자료를저장하기보다는영상생성을위한명령어나방식을저장 압축시시간은많이걸리고복원시적게걸리기때문에 CD-ROM 과같은응용분야에적합 모든영상이마치그들과유사한보다작은영상들로구성되는것으로가정 프랙탈압축 예를들어푸른하늘은보다작은푸른것의부분들로구성되어있다 이산웨이블렛변환 웨이블렛이론은응용수학에서의새로운물결로, 영상압축은물론양자역학, 결정학, 음향학을포함하는많은과학들의응용분야에서발견되어졌다. 기본적인압축방법은영상을 DWT 변환수행후결과계수들을하나의임계값과비교해임계값보다적으면 0으로설정하고 0이아니면무손실코딩을수행한다 동영상정보압축의원리 MPEG Moving Picture (coding) Experts Group 1988 년저장미디어를대상으로한영상압축표준위원회가 ISO 산하에설립 CD-ROM이적용대상화질 VHS-VTR 품질최초의상품 일본빅스터사의 디지털비젼가라오케 (92) MPEG 1 MPEG 2 CD 저장미디어, 1.5Mbps I 화면 : 프레임내부호화화면 P 화면 : 프레임간부호화화면 B 화면 : 쌍방향예측부호화화면 SIF(source input format) 4:2:0 순차주사 방송, 통신용 TV, HDTV

12 H.261 MPEG 오디오의압축원리 ISDN(integrated services digital network) 64kbps-2Mbps 화상전화, 회의용화상 중간화상 (CIF:common intermediate format) 352x288, 30frame/sec, 4:2:0순차주사 압축 MC+DCT+Huffman MPEG1 의 video codec 69 12

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 방송시스템 13 주차 MPEG2 1 개요 MPEG2의 I, P, B picture에대해이해한다. 움직임예측과움직임보상에대해이해한다. MPEG2의압축율가변요소를이해한다. 프로파일과레벨의의미를이해한다. 2 목차 1. Compression overview 2. MPEG structure 3. Basic MPEG Video Compression Algorithms

More information

<3130C0E5>

<3130C0E5> Redundancy Adding extra bits for detecting or correcting errors at the destination Types of Errors Single-Bit Error Only one bit of a given data unit is changed Burst Error Two or more bits in the data

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

1. 3DTV Fig. 1. Tentative terrestrial 3DTV broadcasting system. 3D 3DTV. 3DTV ATSC (Advanced Television Sys- tems Committee), 18Mbps [1]. 2D TV (High

1. 3DTV Fig. 1. Tentative terrestrial 3DTV broadcasting system. 3D 3DTV. 3DTV ATSC (Advanced Television Sys- tems Committee), 18Mbps [1]. 2D TV (High 3DTV a), a) Dual Codec Based Joint Bit Rate Control Scheme for Terrestrial Stereoscopic 3DTV Broadcast Yongjun Chang a) and Munchurl Kim a) 3 3 (3DTV). ATSC 18Mbps. 3D, 2DTV,. 3DTV. - (quadratic rate-quantization

More information

단계 소요 시간 요소 교수 활동 형태 자료 1 동기유발 활동 도입 5분 20분 동기유발 목표 제시 활동1 청기, 백기 게임을 시청하고 청기 백기 게임을 해보기 - 학생들을 두 팀으로 나누어 청기, 백기로 정하기 게임을 해본다. 두 가지 상태로 표현할 수 있는 것이 어떤

단계 소요 시간 요소 교수 활동 형태 자료 1 동기유발 활동 도입 5분 20분 동기유발 목표 제시 활동1 청기, 백기 게임을 시청하고 청기 백기 게임을 해보기 - 학생들을 두 팀으로 나누어 청기, 백기로 정하기 게임을 해본다. 두 가지 상태로 표현할 수 있는 것이 어떤 CS Unplugged 놀이로 배우는 컴퓨터 과학 #1 1. 컴퓨터의 언어 - 이진기호 지도안 1. 컴퓨터들의 언어 - 이진기호 목표 컴퓨터의 언어로 쓰이는 이진기호에 대해 알고 이진기호를 사용하여 비밀번호 전송게임을 할 수 있다. 방법 협력 소요 시간 90분 적정 연령 12세 관련 CT 데이터 표현 이진기호를 이용한 정보전달을 통해 컴퓨터의 계산방법을 이해하는

More information

untitled

untitled Logic and Computer Design Fundamentals Chapter 4 Combinational Functions and Circuits Functions of a single variable Can be used on inputs to functional blocks to implement other than block s intended

More information

Microsoft PowerPoint - CHAP-03 [호환 모드]

Microsoft PowerPoint - CHAP-03 [호환 모드] 컴퓨터구성 Lecture Series #4 Chapter 3: Data Representation Spring, 2013 컴퓨터구성 : Spring, 2013: No. 4-1 Data Types Introduction This chapter presents data types used in computers for representing diverse numbers

More information

Slide 1

Slide 1 Clock Jitter Effect for Testing Data Converters Jin-Soo Ko Teradyne 2007. 6. 29. 1 Contents Noise Sources of Testing Converter Calculation of SNR with Clock Jitter Minimum Clock Jitter for Testing N bit

More information

Microsoft PowerPoint - D08_ImageCompression_note.ppt [호환 모드]

Microsoft PowerPoint - D08_ImageCompression_note.ppt [호환 모드] Digital Image Processing 8. Image Compression Compter Engineering Sejong Uniersit 영상압축 Image Compression 일반적으로영상은대용량의저장공간소요 영상압축 : 영상을표현하는데에필요한데이터량을줄임 영상압축의기본원리 영상내에존재하는중복적인데이터 redndant data 를제거 application

More information

Microsoft PowerPoint - 3ÀÏ°_º¯¼ö¿Í »ó¼ö.ppt

Microsoft PowerPoint - 3ÀÏ°_º¯¼ö¿Í »ó¼ö.ppt 변수와상수 1 변수란무엇인가? 변수 : 정보 (data) 를저장하는컴퓨터내의특정위치 ( 임시저장공간 ) 메모리, register 메모리주소 101 번지 102 번지 변수의크기에따라 주로 byte 단위 메모리 2 기본적인변수형및변수의크기 변수의크기 해당컴퓨터에서는항상일정 컴퓨터마다다를수있음 short

More information

Gray level 변환 및 Arithmetic 연산을 사용한 영상 개선

Gray level 변환 및 Arithmetic 연산을 사용한 영상 개선 Point Operation Histogram Modification 김성영교수 금오공과대학교 컴퓨터공학과 학습내용 HISTOGRAM HISTOGRAM MODIFICATION DETERMINING THRESHOLD IN THRESHOLDING 2 HISTOGRAM A simple datum that gives the number of pixels that a

More information

Page 2 of 6 Here are the rules for conjugating Whether (or not) and If when using a Descriptive Verb. The only difference here from Action Verbs is wh

Page 2 of 6 Here are the rules for conjugating Whether (or not) and If when using a Descriptive Verb. The only difference here from Action Verbs is wh Page 1 of 6 Learn Korean Ep. 13: Whether (or not) and If Let s go over how to say Whether and If. An example in English would be I don t know whether he ll be there, or I don t know if he ll be there.

More information

BMP 파일 처리

BMP 파일 처리 BMP 파일처리 김성영교수 금오공과대학교 컴퓨터공학과 학습내용 영상반전프로그램제작 2 Inverting images out = 255 - in 3 /* 이프로그램은 8bit gray-scale 영상을입력으로사용하여반전한후동일포맷의영상으로저장한다. */ #include #include #define WIDTHBYTES(bytes)

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 14장디지털ㅎㅎ영상의압축 디지털영상압축의개요 디지털영상의압축기법 정지영상표준압축부호화기법 동영상표준압축부호화기법 한빛미디어 ( 주 ) 14 장. 디지털영상의압축 학습목표 압축의원리를이해한다. 무손실압축기법을소개한다. 손실압축기법을소개한다. JPEG의원리를공부한다. MPEG의원리를소개한다. 2 압축의필요성 데이터양이많으면저장장치에효율적으로저장하기가어려움. 데이터양이많으면통신네트워크로전달하는데어려움이있음.

More information

그룹웨어와 XXXXX 제목 예제

그룹웨어와 XXXXX 제목 예제 데이터통신 부호화 (encoding) 부호화 (Encoding) 의개념 정보 Encoder 신호 1 Digital - to - Digital 2 Analog - to - Digital 3 Digital - to - Analog 4 Analog - to - Analog 2 1 Digital-to-Digital Encoding Digital 정보를 Digital

More information

i-movix 특징 l 안정성 l 뛰어난화질 l 차별화된편의성

i-movix 특징 l 안정성 l 뛰어난화질 l 차별화된편의성 i-movix 소개 2005 년설립 ( 벨기에, 몽스 ), 방송카메라제작 2005년 Sprintcam Live System 개발 2007년 Sprintcam Live V2 2009년 Sprintcam Live V3 HD 2009년 Sprintcam Vvs HD 2011년 Super Slow Motion X10 2013년 Extreme + Super Slow

More information

#Ȳ¿ë¼®

#Ȳ¿ë¼® http://www.kbc.go.kr/ A B yk u δ = 2u k 1 = yk u = 0. 659 2nu k = 1 k k 1 n yk k Abstract Web Repertoire and Concentration Rate : Analysing Web Traffic Data Yong - Suk Hwang (Research

More information

a), b), c), b) Distributed Video Coding Based on Selective Block Encoding Using Feedback of Motion Information Jin-soo Kim a), Jae-Gon Kim b), Kwang-d

a), b), c), b) Distributed Video Coding Based on Selective Block Encoding Using Feedback of Motion Information Jin-soo Kim a), Jae-Gon Kim b), Kwang-d a), b), c), b) Distributed Video Coding Based on Selective Block Encoding Using Feedback of Motion nformation Jinsoo Kim a), JaeGon Kim b), Kwangdeok Seo c), and Myeongjin Lee b) (DVC: Distributed Video

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

슬라이드 제목 없음

슬라이드 제목 없음 2006-09-27 경북대학교컴퓨터공학과 1 제 5 장서브넷팅과슈퍼넷팅 서브넷팅 (subnetting) 슈퍼넷팅 (Supernetting) 2006-09-27 경북대학교컴퓨터공학과 2 서브넷팅과슈퍼넷팅 서브넷팅 (subnetting) 하나의네트워크를여러개의서브넷 (subnet) 으로분할 슈퍼넷팅 (supernetting) 여러개의서브넷주소를결합 The idea

More information

Microsoft PowerPoint - ch10 - 이진트리, AVL 트리, 트리 응용 pm0600

Microsoft PowerPoint - ch10 - 이진트리, AVL 트리, 트리 응용 pm0600 균형이진탐색트리 -VL Tree delson, Velskii, Landis에의해 1962년에제안됨 VL trees are balanced n VL Tree is a binary search tree such that for every internal node v of T, the heights of the children of v can differ by at

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

Microsoft PowerPoint - ch03ysk2012.ppt [호환 모드]

Microsoft PowerPoint - ch03ysk2012.ppt [호환 모드] 전자회로 Ch3 iode Models and Circuits 김영석 충북대학교전자정보대학 2012.3.1 Email: kimys@cbu.ac.kr k Ch3-1 Ch3 iode Models and Circuits 3.1 Ideal iode 3.2 PN Junction as a iode 3.4 Large Signal and Small-Signal Operation

More information

歯15-ROMPLD.PDF

歯15-ROMPLD.PDF MSI & PLD MSI (Medium Scale Integrate Circuit) gate adder, subtractor, comparator, decoder, encoder, multiplexer, demultiplexer, ROM, PLA PLD (programmable logic device) fuse( ) array IC AND OR array sum

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

Microsoft PowerPoint - o8.pptx

Microsoft PowerPoint - o8.pptx 메모리보호 (Memory Protection) 메모리보호를위해 page table entry에 protection bit와 valid bit 추가 Protection bits read-write / read-only / executable-only 정의 page 단위의 memory protection 제공 Valid bit (or valid-invalid bit)

More information

김기남_ATDC2016_160620_[키노트].key

김기남_ATDC2016_160620_[키노트].key metatron Enterprise Big Data SKT Metatron/Big Data Big Data Big Data... metatron Ready to Enterprise Big Data Big Data Big Data Big Data?? Data Raw. CRM SCM MES TCO Data & Store & Processing Computational

More information

http://cafe.naver.com/ArticlePrint.nhn

http://cafe.naver.com/ArticlePrint.nhn 동영상 관련 용어 정리 카페자료실 출력하기 닫기 취화선(ibrain) http://cafe.naver.com/ucczone/13 코덱(codec) 음성 또는 영상의 신호를 디지털 신호로 변환하는 코더와 그 반대로 변환시켜 주는 디코더의 기능을 함께 갖춘 기술. 코더(coder)와 디코더(decoder)의 합성어로, 음성이나 비디오 데이터를 컴퓨터가 처리할 수

More information

디지털영상처리3

디지털영상처리3 비트맵개요 BMP 파일의이해실제 BMP 파일의분석 BMP 파일을화면에출력 } 비트맵 (bitmap) 윈도우즈에서영상을표현하기위해사용되는윈도우즈 GDI(Graphic Device Interface) 오브젝트의하나 } 벡터그래픽 (vector graphics) 점, 선, 면등의기본적인그리기도구를이용하여그림을그리는방식 } 윈도우즈 GDI(Graphic Device

More information

<443A5C4C C4B48555C B3E25C32C7D0B1E25CBCB3B0E8C7C1B7CEC1A7C6AE425CBED0C3E0C7C1B7CEB1D7B7A55C D616E2E637070>

<443A5C4C C4B48555C B3E25C32C7D0B1E25CBCB3B0E8C7C1B7CEC1A7C6AE425CBED0C3E0C7C1B7CEB1D7B7A55C D616E2E637070> #include "stdafx.h" #include "Huffman.h" 1 /* 비트의부분을뽑아내는함수 */ unsigned HF::bits(unsigned x, int k, int j) return (x >> k) & ~(~0

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

Left Center Right 3차원 L 비디오 C 부호화시스템 R LCR 가상시점영상 N- 시점영상출력 깊이정보맵생성 L C R 깊이정보맵 가상시점영상합성 1. 3 N- Fig. 1. N-view system with the 3-view configuration.

Left Center Right 3차원 L 비디오 C 부호화시스템 R LCR 가상시점영상 N- 시점영상출력 깊이정보맵생성 L C R 깊이정보맵 가상시점영상합성 1. 3 N- Fig. 1. N-view system with the 3-view configuration. a), a) A Depth-map Coding Method using the Adaptive XOR Operation Kyung Yong Kim a) and Gwang Hoon Park a).,., /. XOR. DCT (H.264/AVC). H.264/AVC BD-PSNR 0.9 db ~ 1.5 db BD-rate 11.8 % ~ 20.8 %. BD-PSNR

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

슬라이드 제목 없음

슬라이드 제목 없음 4. 1. (sound source) : (sound wave) :.,,,,. 180 1 ( ) 1 : Hz, KHz, MHz 1 Hz = 1 1 KHz = 1,000 Hz, 1 MHz = 1,000 KHz 20 Hz ~ 20 KHz (, ) + 0-1 1 2 3 4 2 3 4 + 0-1 2 3 4 5 1 6 7 8 2 3 4 2 ( ), (db) : (,

More information

<443A5C4C C4B48555C B3E25C32C7D0B1E25CBCB3B0E8C7C1B7CEC1A7C6AE425CBED0C3E0C7C1B7CEB1D7B7A55C4C656D70656C2D5A69762E637070>

<443A5C4C C4B48555C B3E25C32C7D0B1E25CBCB3B0E8C7C1B7CEC1A7C6AE425CBED0C3E0C7C1B7CEB1D7B7A55C4C656D70656C2D5A69762E637070> /* */ /* LZWIN.C : Lempel-Ziv compression using Sliding Window */ /* */ #include "stdafx.h" #include "Lempel-Ziv.h" 1 /* 큐를초기화 */ void LZ::init_queue(void) front = rear = 0; /* 큐가꽉찼으면 1 을되돌림 */ int LZ::queue_full(void)

More information

LCD Display

LCD Display LCD Display SyncMaster 460DRn, 460DR VCR DVD DTV HDMI DVI to HDMI LAN USB (MDC: Multiple Display Control) PC. PC RS-232C. PC (Serial port) (Serial port) RS-232C.. > > Multiple Display

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

歯AG-MX70P한글매뉴얼.PDF

歯AG-MX70P한글매뉴얼.PDF 120 V AC, 50/60 Hz : 52 W (with no optional accessories installed), indicates safety information. 70 W (with all optional accessories installed) : : (WxHxD) : : 41 F to 104 F (+ 5 C to + 40 C) Less than

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

컴파일러

컴파일러 YACC 응용예 Desktop Calculator 7/23 Lex 입력 수식문법을위한 lex 입력 : calc.l %{ #include calc.tab.h" %} %% [0-9]+ return(number) [ \t] \n return(0) \+ return('+') \* return('*'). { printf("'%c': illegal character\n",

More information

AV PDA Broadcastin g Centers Audio /PC Personal Mobile Interactive (, PDA,, DMB ),, ( 150km/h ) (PPV,, ) Personal Mobile Interactive Multimedia Broadcasting Services 6 MHz TV Channel Block A Block

More information

FMX M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2

FMX M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2 FMX FMX 20062 () wwwexellencom sales@exellencom () 1 FMX 1 11 5M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2 FMX FMX D E (one

More information

Microsoft PowerPoint - 06-IPAddress [호환 모드]

Microsoft PowerPoint - 06-IPAddress [호환 모드] Chapter 06 IP Address IP Address Internet address IP 계층에서사용되는식별자 32 bit 2 진주소 The address space of IPv4 is 2 32 or 4,294,967,296 netid 와 hostid 로구분 인터넷에서호스트와라우터를유일하게구분 IP Address Structure 2-Layer Hierarchical

More information

- 이 문서는 삼성전자의 기술 자산으로 승인자만이 사용할 수 있습니다 Part Picture Description 5. R emove the memory by pushing the fixed-tap out and Remove the WLAN Antenna. 6. INS

- 이 문서는 삼성전자의 기술 자산으로 승인자만이 사용할 수 있습니다 Part Picture Description 5. R emove the memory by pushing the fixed-tap out and Remove the WLAN Antenna. 6. INS [Caution] Attention to red sentence 3-1. Disassembly and Reassembly R520/ 1 2 1 1. As shown in picture, adhere Knob to the end closely into the arrow direction(1), then push the battery up (2). 2. Picture

More information

슬라이드 제목 없음

슬라이드 제목 없음 OFDM (Orthogonal Frequency Division Multiplexing) 서울대학교이동통신연구실 1 Contents Introduction Generation of subcarriers using the IFFT Guard time and cyclic extension Windowing Choice of OFDM parameters OFDM

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

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

Visual Basic 반복문

Visual Basic 반복문 학습목표 반복문 For Next문, For Each Next문 Do Loop문, While End While문 구구단작성기로익히는반복문 2 5.1 반복문 5.2 구구단작성기로익히는반복문 3 반복문 주어진조건이만족하는동안또는주어진조건이만족할때까지일정구간의실행문을반복하기위해사용 For Next For Each Next Do Loop While Wend 4 For

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

°í¼®ÁÖ Ãâ·Â

°í¼®ÁÖ Ãâ·Â 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

Microsoft PowerPoint - multi-3.ppt

Microsoft PowerPoint - multi-3.ppt CHAPTER 3 Graphics and Image Data Representations Multimedia Network Lab. Prof. Sang-Jo Yoo 3.1 Graphics/Image Data Types The number of file formats used in multimedia continues to proliferate. File Import

More information

(72) 발명자 정진곤 서울특별시 성북구 종암1동 54-398 이용훈 대전광역시 유성구 어은동 한빛아파트 122동 1301 호 - 2 -

(72) 발명자 정진곤 서울특별시 성북구 종암1동 54-398 이용훈 대전광역시 유성구 어은동 한빛아파트 122동 1301 호 - 2 - (51) Int. Cl. (19) 대한민국특허청(KR) (12) 등록특허공보(B1) H04B 7/04 (2006.01) H04B 7/02 (2006.01) H04L 1/02 (2006.01) (21) 출원번호 10-2007-0000175 (22) 출원일자 2007년01월02일 심사청구일자 2008년08월26일 (65) 공개번호 10-2008-0063590 (43)

More information

(JBE Vol. 23, No. 2, March 2018) (Regular Paper) 23 2, (JBE Vol. 23, No. 2, March 2018) ISSN

(JBE Vol. 23, No. 2, March 2018) (Regular Paper) 23 2, (JBE Vol. 23, No. 2, March 2018)   ISSN (JBE Vol. 23, No. 2, March 2018) (Regular Paper) 23 2, 2018 3 (JBE Vol. 23, No. 2, March 2018) https://doi.org/10.5909/jbe.2018.23.2.302 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) - a), a) Enhanced

More information

04-다시_고속철도61~80p

04-다시_고속철도61~80p Approach for Value Improvement to Increase High-speed Railway Speed An effective way to develop a highly competitive system is to create a new market place that can create new values. Creating tools and

More information

chap 5: Trees

chap 5: Trees 5. Threaded Binary Tree 기본개념 n 개의노드를갖는이진트리에는 2n 개의링크가존재 2n 개의링크중에 n + 1 개의링크값은 null Null 링크를다른노드에대한포인터로대체 Threads Thread 의이용 ptr left_child = NULL 일경우, ptr left_child 를 ptr 의 inorder predecessor 를가리키도록변경

More information

<B3EDB9AEC1FD5F3235C1FD2E687770>

<B3EDB9AEC1FD5F3235C1FD2E687770> 경상북도 자연태음악의 소박집합, 장단유형, 전단후장 경상북도 자연태음악의 소박집합, 장단유형, 전단후장 - 전통 동요 및 부녀요를 중심으로 - 이 보 형 1) * 한국의 자연태 음악 특성 가운데 보편적인 특성은 대충 밝혀졌지만 소박집합에 의한 장단주기 박자유형, 장단유형, 같은 층위 전후 구성성분의 시가( 時 價 )형태 등 은 밝혀지지 않았으므로

More information

PowerPoint Presentation

PowerPoint Presentation FORENSICINSIGHT SEMINAR SQLite Recovery zurum herosdfrc@google.co.kr Contents 1. SQLite! 2. SQLite 구조 3. 레코드의삭제 4. 삭제된영역추적 5. 레코드복원기법 forensicinsight.org Page 2 / 22 SQLite! - What is.. - and why? forensicinsight.org

More information

Vol.259 C O N T E N T S M O N T H L Y P U B L I C F I N A N C E F O R U M

Vol.259 C O N T E N T S M O N T H L Y P U B L I C F I N A N C E F O R U M 2018.01 Vol.259 C O N T E N T S 02 06 28 61 69 99 104 120 M O N T H L Y P U B L I C F I N A N C E F O R U M 2 2018.1 3 4 2018.1 1) 2) 6 2018.1 3) 4) 7 5) 6) 7) 8) 8 2018.1 9 10 2018.1 11 2003.08 2005.08

More information

TEL:02)861-1175, FAX:02)861-1176 , REAL-TIME,, ( ) CUSTOMER. CUSTOMER REAL TIME CUSTOMER D/B RF HANDY TEMINAL RF, RF (AP-3020) : LAN-S (N-1000) : LAN (TCP/IP) RF (PPT-2740) : RF (,RF ) : (CL-201)

More information

Microsoft PowerPoint - PL_03-04.pptx

Microsoft PowerPoint - PL_03-04.pptx Copyright, 2011 H. Y. Kwak, Jeju National University. Kwak, Ho-Young http://cybertec.cheju.ac.kr Contents 1 프로그래밍 언어 소개 2 언어의 변천 3 프로그래밍 언어 설계 4 프로그래밍 언어의 구문과 구현 기법 5 6 7 컴파일러 개요 변수, 바인딩, 식 및 제어문 자료형 8

More information

http://www.kbc.go.kr/pds/2.html Abstract Exploring the Relationship Between the Traditional Media Use and the Internet Use Mee-Eun Kang This study examines the relationship between

More information

PRO1_09E [읽기 전용]

PRO1_09E [읽기 전용] Siemens AG 1999 All rights reserved File: PRO1_09E1 Information and - ( ) 2 3 4 5 Monitor/Modify Variables" 6 7 8 9 10 11 CPU 12 Stop 13 (Forcing) 14 (1) 15 (2) 16 : 17 : Stop 18 : 19 : (Forcing) 20 :

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

hwp

hwp BE 8 BE 6 BE 4 BE 2 BE 0 y 17 y 16 y 15 y 14 y 13 y 12 y 11 y 10 y 9 y 8 y 7 y 6 y 5 y 4 y 3 y 2 y 1 y 0 0 BE 7 BE 5 BE 3 BE 1 BE 16 BE 14 BE 12 BE 10 y 32 y 31 y 30 y 29 y 28 y 27 y 26 y 25 y 24 y 23

More information

예제 1.1 ( 관계연산자 ) >> A=1:9, B=9-A A = B = >> tf = A>4 % 4 보다큰 A 의원소들을찾을경우 tf = >> tf = (A==B) % A

예제 1.1 ( 관계연산자 ) >> A=1:9, B=9-A A = B = >> tf = A>4 % 4 보다큰 A 의원소들을찾을경우 tf = >> tf = (A==B) % A 예제 1.1 ( 관계연산자 ) >> A=1:9, B=9-A A = 1 2 3 4 5 6 7 8 9 B = 8 7 6 5 4 3 2 1 0 >> tf = A>4 % 4 보다큰 A 의원소들을찾을경우 tf = 0 0 0 0 1 1 1 1 1 >> tf = (A==B) % A 의원소와 B 의원소가똑같은경우를찾을때 tf = 0 0 0 0 0 0 0 0 0 >> tf

More information

휠세미나3 ver0.4

휠세미나3 ver0.4 andromeda@sparcs:/$ ls -al dev/sda* brw-rw---- 1 root disk 8, 0 2014-06-09 18:43 dev/sda brw-rw---- 1 root disk 8, 1 2014-06-09 18:43 dev/sda1 brw-rw---- 1 root disk 8, 2 2014-06-09 18:43 dev/sda2 andromeda@sparcs:/$

More information

Orcad Capture 9.x

Orcad Capture 9.x OrCAD Capture Workbook (Ver 10.xx) 0 Capture 1 2 3 Capture for window 4.opj ( OrCAD Project file) Design file Programe link file..dsn (OrCAD Design file) Design file..olb (OrCAD Library file) file..upd

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

<4D F736F F F696E74202D204D504547B1B9C1A6C7A5C1D8C8AD5FC8A3BFE4BCBA BC8A3C8AF20B8F0B5E55D>

<4D F736F F F696E74202D204D504547B1B9C1A6C7A5C1D8C8AD5FC8A3BFE4BCBA BC8A3C8AF20B8F0B5E55D> MPEG 국제표준화활동 2010. 06. 04. 호요성 발표내용 MPEG 표준의개요 MPEG 표준화과정 MPEG 표준의이해 MPEG 표준의응용 국제표준전문가 맺음말 MPEG 표준의개요 MPEG(Moving Picture Experts Group) ISO/IEC JTC1/SC29/WG11 1988 년에결성됨 MPEG-1, MPEG-2, MPEG-4, MPEG-7,

More information

Ⅰ. Introduction 우리들을 둘러싸고 잇는 생활 환경속에는 무수히 많은 색들이 있습니다. 색은 구매의욕이나 기호, 식욕 등의 감각을 좌우하는 것은 물론 나뭇잎의 변색에서 초목의 건강상태를 알며 물질의 판단에 이르기까지 광범위하고도 큰 역할을 하고 있습니다. 하

Ⅰ. Introduction 우리들을 둘러싸고 잇는 생활 환경속에는 무수히 많은 색들이 있습니다. 색은 구매의욕이나 기호, 식욕 등의 감각을 좌우하는 것은 물론 나뭇잎의 변색에서 초목의 건강상태를 알며 물질의 판단에 이르기까지 광범위하고도 큰 역할을 하고 있습니다. 하 색 이론과 색채관리 Ⅰ. Introduction( 일반색채 이론) Ⅱ. 색의 표현 ⅰ) 색상 ⅱ) 명도 ⅲ) 채도 ⅳ) 색의 종류 ⅴ) 색의 삼원색 ⅵ) 색의 사원색 Ⅲ. 색의 전달 ⅰ) 변천과정 ⅱ) Color space Ⅳ. 색의 재현 ⅰ) 가법 혼합 ⅱ) 감법 혼합 ⅲ) C.C.M System Ⅴ. 색의 관리 ⅰ) 목적 ⅱ) 적용범위 ⅲ) 색차계 ⅳ)

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

Microsoft PowerPoint - AC3.pptx

Microsoft PowerPoint - AC3.pptx Chapter 3 Block Diagrams and Signal Flow Graphs Automatic Control Systems, 9th Edition Farid Golnaraghi, Simon Fraser University Benjamin C. Kuo, University of Illinois 1 Introduction In this chapter,

More information

LIDAR와 영상 Data Fusion에 의한 건물 자동추출

LIDAR와 영상 Data Fusion에 의한 건물 자동추출 i ii iii iv v vi vii 1 2 3 4 Image Processing Image Pyramid Edge Detection Epipolar Image Image Matching LIDAR + Photo Cross correlation Least Squares Epipolar Line Matching Low Level High Level Space

More information

<BFA9BAD02DB0A1BBF3B1A4B0ED28C0CCBCF6B9FC2920B3BBC1F62E706466>

<BFA9BAD02DB0A1BBF3B1A4B0ED28C0CCBCF6B9FC2920B3BBC1F62E706466> 001 002 003 004 005 006 008 009 010 011 2010 013 I II III 014 IV V 2010 015 016 017 018 I. 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035 036 037 038 039 040 III. 041 042 III. 043

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

V. 통신망 기술

V. 통신망 기술 오류검출기법 데이터전송오류 (error) 를검출하는기법 메시지전송시오류검출코드를데이터꼬리부분에부착하여전송하고수신측에서는이를사용하여오류발생여부판단 오류검출기법 패리티검사 블록합검사 (block sum check) 순환중복검사 (CRC : Cyclic Redundancy Check) 1 오류검출의기본원리 E= f(data) E,E = 오류검출코드 f = 오류검출함수

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

,.,..,....,, Abstract The importance of integrated design which tries to i

,.,..,....,, Abstract The importance of integrated design which tries to i - - The Brand Touchpoint Analysis through Corporate Identity Typeface of Mobile Telecommunication Companies - Focusing on and - : Lee, Ka Young Dept. Lifestyle Design, Dankook University : Kim, Ji In Dept.

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

300 구보학보 12집. 1),,.,,, TV,,.,,,,,,..,...,....,... (recall). 2) 1) 양웅, 김충현, 김태원, 광고표현 수사법에 따른 이해와 선호 효과: 브랜드 인지도와 의미고정의 영향을 중심으로, 광고학연구 18권 2호, 2007 여름

300 구보학보 12집. 1),,.,,, TV,,.,,,,,,..,...,....,... (recall). 2) 1) 양웅, 김충현, 김태원, 광고표현 수사법에 따른 이해와 선호 효과: 브랜드 인지도와 의미고정의 영향을 중심으로, 광고학연구 18권 2호, 2007 여름 동화 텍스트를 활용한 패러디 광고 스토리텔링 연구 55) 주 지 영* 차례 1. 서론 2. 인물의 성격 변화에 의한 의미화 전략 3. 시공간 변화에 의한 의미화 전략 4. 서사의 변개에 의한 의미화 전략 5. 창조적인 스토리텔링을 위하여 6. 결론 1. 서론...., * 서울여자대학교 초빙강의교수 300 구보학보 12집. 1),,.,,, TV,,.,,,,,,..,...,....,...

More information

public key private key Encryption Algorithm Decryption Algorithm 1

public key private key Encryption Algorithm Decryption Algorithm 1 public key private key Encryption Algorithm Decryption Algorithm 1 One-Way Function ( ) A function which is easy to compute in one direction, but difficult to invert - given x, y = f(x) is easy - given

More information

방송공학회논문지 제18권 제2호

방송공학회논문지 제18권 제2호 방송공학회논문지 제 20권 6호 (2015년 11월) 특집논문 : 2015년 하계학술대회 좌장추천 우수논문 프레넬 회절을 이용한 디지털 홀로그램 암호화 알고리즘 새로운 광적응 효과 모델을 이용한 정교한 영상 화질 측정 민방위 경보 방송에 대한 정보 수용자 인식 연구 UHDTV 방송을 위한 공간 변조 다중 안테나 시스템 수신 성능 분석 홍보동영상 제작 서비스를

More information

CD-RW_Advanced.PDF

CD-RW_Advanced.PDF HP CD-Writer Program User Guide - - Ver. 2.0 HP CD-RW Adaptec Easy CD Creator Copier, Direct CD. HP CD-RW,. Easy CD Creator 3.5C, Direct CD 3.0., HP. HP CD-RW TEAM ( 02-3270-0803 ) < > 1. CD...3 CD...5

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

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Verilog: Finite State Machines CSED311 Lab03 Joonsung Kim, joonsung90@postech.ac.kr Finite State Machines Digital system design 시간에배운것과같습니다. Moore / Mealy machines Verilog 를이용해서어떻게구현할까? 2 Finite State

More information

QR Code 복구記

QR Code 복구記 QR Code 복구記 2016-02-28 김민정 1 목차 1. 발표자소개 2. QR Code? 3. QR Code Encoding with 7 Section 4. QR Code Decoding with 7 Section 2 1. 발표자소개 3 프로필 이름소속군대주분야 김민정 ( 金珉廷 ) 충남대학교컴퓨터공학과 3학년, ARGOS, 블랙펄미필 ( 면제 ) 시스템,

More information

airDACManualOnline_Kor.key

airDACManualOnline_Kor.key 5F InnoValley E Bldg., 255 Pangyo-ro, Bundang-gu, Seongnam-si, Gyeonggi-do, Korea (Zip 463-400) T 031 8018 7333 F 031 8018 7330 airdac AD200 F1/F2/F3 141x141x35 mm (xx) 350 g LED LED1/LED2/LED3 USB RCA

More information

Microsoft PowerPoint Multiplexing

Microsoft PowerPoint Multiplexing Multiplexing 부산대학교정보컴퓨터공학부 김종덕 (kimjd@pusan.ac.kr) 강의의목표 Multiplexing 기술이해결하려는문제를이해한다. 기본 Multiplexing 기술인 FDM과 Synchronous TDM 기술의주요원리및특징을이해한다. Synchronous TDM과 Statistical/Asynchronous TDM을비교하여이해한다.

More information

우리들이 일반적으로 기호

우리들이 일반적으로 기호 일본지방자치체( 都 道 府 縣 )의 웹사이트상에서 심벌마크와 캐릭터의 활용에 관한 연구 A Study on the Application of Japanese Local Self-Government's Symbol Mark and Character on Web. 나가오카조형대학( 長 岡 造 形 大 學 ) 대학원 조형연구과 김 봉 수 (Kim Bong Su) 193

More information

2011년 10월 초판 c 2011 Sony Corporation. All rights reserved. 서면 허가 없이 전체 또는 일부를 복제하는 것을 금합니다. 기능 및 규격은 통보 없이 변경될 수 있습니다. Sony와 Sony 로고는 Sony의 상표입니다. G L

2011년 10월 초판 c 2011 Sony Corporation. All rights reserved. 서면 허가 없이 전체 또는 일부를 복제하는 것을 금합니다. 기능 및 규격은 통보 없이 변경될 수 있습니다. Sony와 Sony 로고는 Sony의 상표입니다. G L HXR-NX3D1용 3D 워크플로 가이드북 2011년 10월 초판 c 2011 Sony Corporation. All rights reserved. 서면 허가 없이 전체 또는 일부를 복제하는 것을 금합니다. 기능 및 규격은 통보 없이 변경될 수 있습니다. Sony와 Sony 로고는 Sony의 상표입니다. G Lens, Exmor, InfoLITHIUM, Memory

More information

SRC PLUS 제어기 MANUAL

SRC PLUS 제어기 MANUAL ,,,, DE FIN E I N T R E A L L O C E N D SU B E N D S U B M O TIO

More information

슬라이드 1

슬라이드 1 BMP 파일구조 김성영교수 금오공과대학교 컴퓨터공학부 학습목표 BMP 파일의구조및그특징을설명할수있다. 파일헤더및비트맵정보헤더의주요필드를구분하고그역할을설명할수있다. C언어를사용하여 BMP 파일을처리할수있다. 2 BMP 파일구조 File Header (BITMAPFILEHEADER) Bitmap Info. Header (BITMAPINFOHEADER) Headers

More information

슬라이드 1

슬라이드 1 / 유닉스시스템개요 / 파일 / 프로세스 01 File Descriptor file file descriptor file type unix 에서의파일은단지바이트들의나열임 operating system 은파일에어떤포맷도부과하지않음 파일의내용은바이트단위로주소를줄수있음 file descriptor 는 0 이나양수임 file 은 open 이나 creat 로 file

More information

- 2 -

- 2 - - 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - - 8 - - 9 - - 10 - - 11 - - 12 - - 13 - - 14 - - 15 - - 16 - - 17 - - 18 - - 19 - - 20 - - 21 - - 22 - - 23 - - 24 - - 25 - - 26 - - 27 - - 28 - - 29 - - 30 -

More information

Buy one get one with discount promotional strategy

Buy one get one with discount promotional strategy Buy one get one with discount Promotional Strategy Kyong-Kuk Kim, Chi-Ghun Lee and Sunggyun Park ISysE Department, FEG 002079 Contents Introduction Literature Review Model Solution Further research 2 ISysE

More information

(Exposure) Exposure (Exposure Assesment) EMF Unknown to mechanism Health Effect (Effect) Unknown to mechanism Behavior pattern (Micro- Environment) Re

(Exposure) Exposure (Exposure Assesment) EMF Unknown to mechanism Health Effect (Effect) Unknown to mechanism Behavior pattern (Micro- Environment) Re EMF Health Effect 2003 10 20 21-29 2-10 - - ( ) area spot measurement - - 1 (Exposure) Exposure (Exposure Assesment) EMF Unknown to mechanism Health Effect (Effect) Unknown to mechanism Behavior pattern

More information

5 : HEVC GOP R-lambda (Dae-Eun Kim et al.: R-lambda Model based Rate Control for GOP Parallel Coding in A Real-Time HEVC Software Encoder) (Special Pa

5 : HEVC GOP R-lambda (Dae-Eun Kim et al.: R-lambda Model based Rate Control for GOP Parallel Coding in A Real-Time HEVC Software Encoder) (Special Pa 5 : HEVC GOP R-lambda (Dae-Eun Kim et al.: R-lambda Model based Rate Control for GOP Parallel Coding in A Real-Time HEVC Software Encoder) (Special Paper) 222, 2017 3 (JBE Vol. 22, No. 2, March 2017) https://doi.org/10.5909/jbe.2017.22.2.193

More information

adfasdfasfdasfasfadf

adfasdfasfdasfasfadf C 4.5 Source code Pt.3 ISL / 강한솔 2019-04-10 Index Tree structure Build.h Tree.h St-thresh.h 2 Tree structure *Concpets : Node, Branch, Leaf, Subtree, Attribute, Attribute Value, Class Play, Don't Play.

More information

Microsoft PowerPoint - 알고리즘_5주차_1차시.pptx

Microsoft PowerPoint - 알고리즘_5주차_1차시.pptx Basic Idea of External Sorting run 1 run 2 run 3 run 4 run 5 run 6 750 records 750 records 750 records 750 records 750 records 750 records run 1 run 2 run 3 1500 records 1500 records 1500 records run 1

More information