(Microsoft PowerPoint - JXEUOAACMYBW.ppt [\310\243\310\257 \270\360\265\345])
|
|
- 정현 빈
- 6 years ago
- Views:
Transcription
1 Discrete Techniques
2 Historical Background 1970 년대 : local illumination models Phong shading : plastic 처럼보인다 년대 : realism 의추구 global illumination models high cost, but very realistic texture mapping low cost, but reasonable results 예 : environment mapping ray tracing 과유사. 그러나열등 1
3 9.1 Buffers and Mappings
4 Buffers a block of memory n m k bit elements bit plane any of the k n m planes in a buffer pixel all k of the elements at a position pixel 1 개 bit plane 1 개 3
5 Mappings rendering 의사실성을높이는방법 물체의 model 자체를자세하고복잡하게 rendering 시에 detail 만변화 mapping texture mapping map a pattern (or texture) onto the surfaces of objects bump mapping distort the shape of the surface to create variations reflection or environmental mapping paint an image of the environment 4
6 Mapping 의종류 color : texture mapping 물체표면에무늬를입힌다 specular color : environment mapping shiny object 의표면에 ray-tracing 효과 normal vector pertubation : bump mapping 울퉁불퉁한표면효과 displacement mapping : (normal meshes, 2000) geometry에변형을가함 transparency : etched glass 물체의투명도를조절가능 5
7 9.2 Texture Mapping
8 Texture Mapping texture space (s, t) : 2차원 image [0,1] [0,1] texel : texture element. pixel in the texture object space (x w, y w, z w ) : 3차원물체 screen space (x s, y s ) : 2차원화면 7
9 Texture Mapping 의모델링 texture space (s, t) object space (x w, y w, z w ) screen space (x s, y s ) forward mapping texture space 의폐영역 backward mapping pixel : 정사각형 8
10 Texture Mapping 방법들 practical 한방법 polygon mesh 의각 vertex 에 texture coordinate (s, t) 를설정 보통은사람이직접 set polygon 내부의점들은 forward mapping texture를 rubber sheet 로보고, mapping backward mapping pixel 1개 texture 상의폐영역 9
11 Texture Mapping mapping from texture space to object space linear mapping for a parametric surface linear mapping function: (s,t) (u,v) u = f u (s,t) = a s + b t + c v = f v (s,t) = d s + e t + f invertible mapping when a e b d u= u v= v min min + s + t s s max t t max min s min t min min ( u ( v max max u v min min ) ) 10
12 Two-part texture mapping Bier and Sloan, Two-part texture mapping, IEEE CG&A, 6(9), intermediate surface의도입 2D texture 2D simple 3D mapping 3D intermediate surface 간단한형태 simple 3D complex 3D mapping 3D object (maybe complex) 왜? texture coordinate 설정을쉽게 environment mapping 으로가는중간과정 11
13 Two-part texture mapping two-stage forward mapping S mapping (surface mapping) T(u, v) T (x i, y i, z i ) : intermediate surface O mapping (object mapping) T (x i, y i, z i ) O(x w, y w, z w ) intermediate surface : plane, cylinder, cube, sphere cylinder 의경우 cube 의경우 12
14 Two-part texture mapping O mapping (object mapping) 어느 pixel 을고를지는선택가능 밖에서안으로 normal 방향 center 에서의 ray 로 전체과정 texture S mapping O mapping 13
15 Texture mapping in OpenGL OpenGL 기능 from one- or two-dimensional texture to 1D, 2D, 3D, 4D object 2D texture to 3D object 가일반적 14
16 glteximage2d( ) void glteximage2d( GLenum target, GL_TEXTURE_2D: target texture buffer GLint level, 0, 1, 2, : level-of-detail for Mip-Map GLint components, 0, 1, 2, 3 : components GLsizei width, width of texture GLsizei height, height of texture GLint border, 0 : border width GLenum format, pixel의저장형식 (R, G, B, A 중의어느것 ) GLenum type, pixels의저장형식 (int, short, long, ) const GLvoid* pixels source color array ); pixels 배열의내용을 texture buffer 에저장 15
17 glgetteximage( ) void glgetteximage( GLenum target, GLint level, GLenum format, GLenum type, GLvoid* pixels ); GL_TEXTURE_2D: target texture buffer 0, 1, 2, : level-of-detail for Mip-Map pixel의저장형식 pixel의저장형식 texture buffer 의내용을가져올곳 texture buffer 의내용을 pixels 배열에저장 16
18 Texture 사용예제 glenable(gl_texture_2d); texture 적용시작 glbegin(gl_quad); gltexcoord2f(0.0, 0.0); glvertex2f(x1, y1, z1); gltexcoord2f(1.0, 0.0); glvertex2f(x2, y2, z2); gltexcoord2f(1.0, 1.0); glvertex2f(x3, y3, z3); gltexcoord2f(0.0, 1.0); glvertex3f(x4, y4, z4); glend( ); 17
19 Repeat or Clamp texture coordinate 가 [0,1] [0,1] 을벗어날때, repeat : texture 가무한반복된다고해석 clamp : 경계를벗어나면, 전부 black void gltexparameterf( GLenum target, GLenum pname, GLfloat param ); 보통, GL_TEXTURE_2D pname = GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T param = GL_REPEAT, GL_CLAMP 18
20 Aliasing texture sampling 시에, aliasing 문제발생가능 void gltexparameterf( ); GLenum target, // GL_TEXTURE_2D GLenum pname, GLfloat param pname = GL_TEXTURE_MAG_FILTER, 확대 (magnification) GL_TEXTURE_MIN_FILTER 축소 (minifiication) 19
21 Aliasing param = GL_NEAREST, point sampling GL_LINEAR, linear interpolation GL_NEAREST_MIPMAP_NEAREST Mip-Map : texture pyramid MIPMAP 가장가까운크기 2 를합성해서, 최적의 texture 생성 ¼ ¼ ½ ½ 비슷한크기의 2 개를합성 20
22 glubuild2dmipmaps int glubuild2dmipmaps( GLenum target, GL_TEXTURE_2D: target texture buffer GLint level, 0, 1, 2, : level-of-detail for Mip-Map GLint components, 0, 1, 2, 3 : components GLsizei width, width of texture GLsizei height, height of texture GLint border, 0 : border width GLenum format, pixel의저장형식 (R, G, B, A 중의어느것 ) GLenum type, pixels의저장형식 (int, short, long, ) const GLvoid* pixels source color array ); Mip-Map 을생성해서, texture buffer 에저장 (level: 0, 1, 2, ) 21
23 Texture and Shading shading 결과와 texture 적용의해석 modulate : 두결과를서로곱해서, 최종값 decaling : shading 무시, texture color 만단순 copy void gltexenvi( GLenum target, GLenum pname, GLint param ); GL_TEXTURE_2D: target texture buffer GL_TEX_ENV_MODE GL_MODULATE, GL_DECAL 22
24 Perspective Projection 교정 texture mapping : linear interpolation 에기초 parallel projection : 문제없음 perspective projection : 문제발생가능 glhint(gl_perspective_correction, GL_NICEST); perspective projection 에의한오차를교정 23
25 9.3 Environmental Maps
26 Environment Mapping Blinn, Models of light reflection for computer synthesized pictures, Computer Graphics, 11(2):192~198, Greene, Environment mapping and other applications of world projections, IEEE CG&A, 6(11):21~29, = reflection mapping ray tracing 에대한 trick 으로제안 shiny object shiny object environment texture mapping camera ray tracing object camera object environment mapping 25
27 Environment Mapping 의예 26
28 Ray Tracing vs. Environment Map environment map ray tracing 27
29 Environment Mapping 의한계 물체가비교적작아야한다. 커지면, reflection vector 에서의오차가크다 concave 한물체에서는 incorrect 각 object 마다별도의 environment map 필요 view direction 이다르므로 camera 위치가바뀔때마다새로운 environment map 필요 view direction 이다르므로 28
30 Environment Mapping 의개요 2 stage algorithm R : reflection vector environment map 만들기 environment map 을 texture 처럼 mapping 시킴 29
31 9.4 Bump Maps
32 Bump Mapping Blinn, Simulation of wrinkled surfaces, Computer Graphics, wrinkle, dimple 을표현하는 trick 기법 물체의 geometry는변화시키지않음 표면의 normal vector 만 perturbation local model 에의해, dimple 이있는것처럼보임 단점 : silhouette line들에서는매끈함 31
33 Bump Mapping 의예 32
34 Bump Mapping Process u v = P P N N P P + = ), ( ), ( ), ( ' v u B v u v u u B u B u B u u + + = + = N N P N P P ) ( ' P(u,v) N(u,v) B(u,v) 33 u v B v u B v B v u B u v u = P N P N N N P N P P P N ' ' ' u u u u u v B v B v B v v + + = + = N N P N P P ) ( ' P (u,v) N (u,v)
35 Bump Mapping Process 정리하면, D N B A N P N P N N N + = + + = + + v B u B u v B v u B ' 34 = N+D N u P v P P N v = P N A u = P N B D
36 Two-pass Bump Mapping McReynolds and Blythe, Programming with OpenGL: Advanced Rendering, SIGGRAPH 97 Lecture Notes. Key Idea : N L = N L + D L N L의계산 : Gouraud Shading과동일 D L 의계산 : image 상에서 approximation D= B u N P v + B v N P u 결과적으로 2 개의 rendering 결과를합성해서 bumpmapping 가능 texture mapping H/W 만으로가능 35
37 Bump Mapping 의다른예 36
38 9.5 Writes into Buffers
39 Read from / write into buffers 보통의 memory read / write 와차이점? single pixel 이아니라, block 단위로 read / write bit-blt (bit-block transfer) = raster-ops, raster operations geometric operation 들과는무관 source 에서, destination 으로 m n 픽셀들을 block transfer 38
40 Writing Modes source destination 시의 operation 총 16 modes d d 1 1 자주쓰이는것들 mode 3: 단순 copy dest source mode 7: logical OR dest source + dest mode 6: XOR dest source dest 39
41 XOR mode interaction 시에자주사용 mode 6 : XOR 복구가능 (x y) y = x mode 7 : copy Mode 6 mouse cursor 구현방법 S : frame buffer, M : back buffer (backing storage) S 1 S 0 M 0 M 1 S 1 M 0 = (S 0 M 0 ) M 0 = S 0 S 2 S 1 M 1 = (S 0 M 0 ) M 1 = (S 0 M 0 ) S 0 = M 0 40
42 9.6 Bit and Pixel Operations in OpenGL
43 OpenGL buffers color buffers (including frame buffer) double buffering : front / back buffers stereo buffering : right / left buffers depth buffer (= Z-buffer) for hidden-surface removal accumulation buffer 다양한용도로사용 motion blur, anti-aliasing, stencil buffer used for masking operation 42
44 Pixel Operations in OpenGL raster position : raster-op 의출력기준점 geometric object 출력과는무관 void glrasterpos{d}{f}{v}( ); d = 2, 3, 4 f = i, s, d, f void glbitmap( GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte* bitmap ); rasterpos + (xorig, yorig) 부터 copy rasterpos rasterpos +(xmove, ymove) 43
45 Pixel Operations in OpenGL void glreadpixels( GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid* pixels ); void gldrawpixels( GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid* pixels ); void glcopypixels( GLint x, GLint y, GLsizei width, GLsizei height, GLenum type ); raster position 을기준으로 read, draw, copy 를수행 44
46 Pseudo-color images gray-scale image 를 color 로출력하는방법 look-up table 의값들을 thermal color 로 setting blue green red 로색상변화 45
47 9.7 Compositing Techniques
48 Alpha Channel 4-channel color : (R, G, B, A) color channels RGB + alpha channel alpha channel : 다양한용도로사용 opacity and blending image composition anti-aliasing back-to-front rendering depth cueing and fog effect 47
49 Blending opacity : 물체의불투명한정도 opacity of 1 (α = 1.0) : 완전불투명 opacity of 0 (α = 0.0) : 완전투명 transparency : 물체의투명한정도 transparency = 1 opacity blending source : s = [s r s g s b s a ] destination : d = [d r d g d b d a ] transparent blended color : blending factor b and c d = [b r s r +c r d r b g s g +c g d g b b s b +c b d b b a s a +c a d a ] opaque 48
50 glblendfunc( ) glenable(gl_blend); blending 을시작 void glblendfunc( GLenum sfactor, GLenum dfactor ); blend color 에서, b, c 를결정 GL_ZERO factor = 0.0 GL_ONE factor = 1.0 GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA factor = s a or factor = 1 s a d = [s a s r +(1 s a )d r s a s g +(1 s a )d g s a s b +(1 s a )d b s a s a +(1 s a )d a ] GL_DST_ALPHA, GL_ONE_MINUS_DST_ALPHA 49
51 glblendfunc( ) draw the rectangle (dr, dg, db, da) // destination glenable(gl_blend); glblendfunc(gl_one_minus_src_alpha, GL_SRC_ALPHA); draw the triangle (sr, sg, sb, sa) // source 50
52 Image Composition n 개의 image 합성하기 C i = (R i, G i, B i ) alpha channel 사용시, = = n i i result n 1 1 C C 51 alpha channel 사용시, 같은결과 alpha channel hardware 때문에더빠르다... ) ( ) ( ) 3 1 (1 : 3 1 ) ( ) 2 1 (1 : 2 1 1: C C C C C C C C C C C C C C C C + + = + + = + = = + = + = = = = result result result result α α α
53 Anti-aliasing line 을그릴때, pixel coverage 를감안해야 area 계산법 : pixel 에걸리는면적을직접계산 면적 : 30% alpha channel : 면적을저장 draw 시에는 GL_SRC_ALPHA 사용 면적에따라, anti-aliasing 가능 OpenGL에서전체를수행하게하는방법 glenable(gl_point_smooth); glenable(gl_line_smooth); glenable(gl_smoothing); glblendfunc(gl_src_alpha, GL_ONE_MINUS_SRC_ALPHR); draw the objects 52
54 Depth Cueing and Fog depth cueing (= intensity cueing) 가까운것은진하고또렷하게 멀리있는것은연하고흐릿하게 C s = f C s + (1 f) C f f : fog factor 거리에따라변화 C s, C f : color for source and fog 설정방법 glenable(gl_fog); glfogf(gl_fog_mode, {GL_LINEAR,GL_EXP,GL_EXP2}); glfogf(gl_fog_density, 0.5); glfogfv(gl_fog_color, fogcolor); e z 2 e z 1 0.5z 53
55 9.8 Use of the Accumulation Buffer
56 Accumulation Buffer another buffer frame buffer 와같은 resolution bit 수는훨씬많음 가능한 operation glclear(gl_accum_buffer_bit); AccumBuffer 0 void glaccum( GLenum op, GLfloat value ); GL_LOAD : AccumBuffer FrameBuffer GL_ACCUM : AccumBuffer AccumBuffer + value * FrameBuffer GL_MULT : AccumBuffer AccumBuffer * value GL_RETURN : FrameBuffer AccumBuffer 55
57 Accumulation Buffer convolution image 에행렬곱하기 1/3 1/3 1/3 clear make FrameBuffer with camera at (x, y) AccumBuffer AccumBuffer * FrameBuffer make FrameBuffer with camera at (x+1, y) AccumBuffer AccumBuffer * FrameBuffer make FrameBuffer with camera at (x 1, y) AccumBuffer AccumBuffer * FrameBuffer AccumBuffer AccumBuffer * 0.33 FrameBuffer AccumBuffer convoluted image 56
58 Motion Blur 운동하는물체를제대로표현하기 t = 0.3 t = 0.2 t = 0.1 t = 0.0 motion blurred image another example 57
59 Depth of Field 사진에서, focus 를어디에두느냐? 만드는법? accumulation buffer! camera #1 camera #2 focus 가맞는부분 camera #3 모두 accumulation! 58
60 9.9 Sampling and Aliasing partially skipped
61 Nyquist sampling theorem The ideal samples of a continuous function contain all the information in the original function if and only if the continuous function is sampled at a frequency at least twice the highest frequency in the function. We can reconstruct a continuous function f(x) from its samples {f i } by the formula: f ( x, y) = + fi sinc( x i= sinπx sinc( x) = πx x i ) 60
62 요약 61
PowerPoint 프레젠테이션
06 Texture Mapping 01 Texture Mapping 의종류 02 Texture Mapping 이가능한객체생성 03 고급 Texture Mapping 01 Texture Mapping 의종류 1. 수동 Texture Mapping 2. 자동 Texture Mapping 2 01 Texture Mapping 의종류 좌표변환 Pipeline 에서
More informationMicrosoft PowerPoint - lecture17-ch8.ppt
OpenGL Texturing Texture Mapping 321190 2007년봄학기 6/2/2007 박경신 OpenGL 에서텍스쳐맵핑 (texture mapping) 을위한 3 단계 텍스쳐활성화 glenable(gl_texture_2d) 텍스쳐맵핑방법 ( 랩핑, 필터등 ) 정의 gltexparameteri(gl_texture_2d, GL_TEXTURE_WRAP_S,
More informationMicrosoft PowerPoint - lecture18-ch8
OpenGL Texturing Texture Mapping 321190 2007년봄학기 5/25/2007 박경신 OpenGL 에서텍스쳐맵핑 (texture mapping) 을위한 3 단계 텍스쳐활성화 glenable(gl_texture_2d) 텍스쳐맵핑방법 ( 랩핑, 필터등 ) 정의 gltexparameteri(gl_texture_2d, GL_TEXTURE_WRAP_S,
More information2005CG01.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 informationMicrosoft PowerPoint - lecture19-ch8.ppt
Alpha Channel Alpha Blending 321190 2007년봄학기 6/1/2007 박경신 Alpha Channel Model Porter & Duff s Compositing Digital Images, SIGGRAPH 84 RGBA alpha는 4번째색으로불투명도 (opacity of color) 조절에사용함 불투명도 (opacity) 는얼마나많은빛이면을관통하는가의척도임
More information歯Lecture2.PDF
VISUAL C++/MFC Lecture 2? Update Visual C ++/MFC Graphic Library OpenGL? Frame OpenGL 3D Graphic library coding CLecture1View? OpenGL MFC coding Visual C++ Project Settings Link Tap Opengl32lib, Glu32lib,
More information[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 informationMicrosoft PowerPoint - lecture17-ch8.ppt [호환 모드]
Single-Pass Multitexturing y (1,1) v (1,1) Blending 514780 2017 년가을학기 11/23/2017 단국대학교박경신 void SetMultitexturSquareData() { // 중간생략.. x glgenbuffers(4, &vbo[0]); u (-1,-1) (0,0) glbindbuffer(gl_array_buffer,
More information63-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(Microsoft PowerPoint - lecture15-ch8.ppt [\310\243\310\257 \270\360\265\345])
OpenGL Frame Buffer Buffer, Image, and Texture Mapping 514780 2016 년가을학기 11/18/2016 박경신 색버퍼 (Color buffers) 전면버퍼 (Front buffer) 후면버퍼 (Back buffer) 보조버퍼 (Auxiliary buffer) 오버레이면 (Overlay plane) 깊이버퍼 (Depth
More informationMicrosoft PowerPoint - lecture16-ch8.ppt [호환 모드]
OpenGL Texturing Texture Mapping 514780 017 년가을학기 11/16/017 단국대학교박경신 OpenGL 에서텍스쳐맵핑 (texture mapping) 을위한 3 단계 텍스쳐활성화 glenable(gl_texture_d) 텍스쳐맵핑방법 ( 랩핑, 필터등 ) 정의 gltexparameteri(gl_texture_d, GL_TEXTURE_WRAP_S,
More informationHigh 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 informationMicrosoft PowerPoint - lecture17-ch8
OpenGL Frame Buffer Buffer, Image, and Texture Mapping 321190 2007년봄학기 5/22/2007 박경신 색버퍼 (Color buffers) 전면버퍼 (Front buffer) 후면버퍼 (Back buffer) 보조버퍼 (Auxiliary buffer) 오버레이면 (Overlay plane) 깊이버퍼 (Depth
More information09권오설_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 informationuntitled
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À±½Â¿í Ãâ·Â
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 informationMicrosoft PowerPoint - lecture16-ch8.ppt [호환 모드]
OpenGL Texturing Texture Mapping 31190 013 년봄학기 5/8/013 박경신 OpenGL에서텍스쳐맵핑 (texture mapping) 을위한 3 단계 텍스쳐활성화 glenable(gl_texture_d) 텍스쳐맵핑방법 ( 랩핑, 필터등 ) 정의 gltexparameteri(gl_texture_d, GL_TEXTURE_WRAP_S,
More informationMicrosoft PowerPoint - lecture16-ch8 [호환 모드]
OpenGL Texturing Texture Mapping 31190 01 년봄학기 5/31/01 박경신 OpenGL에서텍스쳐맵핑 (texture mapping) 을위한 3 단계 텍스쳐활성화 glenable(gl_texture_d) 텍스쳐맵핑방법 ( 랩핑, 필터등 ) 정의 gltexparameteri(gl_texture_d, GL_TEXTURE_WRAP_S,
More informationMicrosoft PowerPoint - lecture15-ch8.ppt [호환 모드]
OpenGL Frame Buffer Buffer, Image, and Texture Mapping 321190 2014 년봄학기 5/15/2014 박경신 색버퍼 (Color buffers) 전면버퍼 (Front buffer) 후면버퍼 (Back buffer) 보조버퍼 (Auxiliary buffer) 오버레이면 (Overlay plane) 깊이버퍼 (Depth
More informationuntitled
전방향카메라와자율이동로봇 2006. 12. 7. 특허청전기전자심사본부유비쿼터스심사팀 장기정 전방향카메라와자율이동로봇 1 Omnidirectional Cameras 전방향카메라와자율이동로봇 2 With Fisheye Lens 전방향카메라와자율이동로봇 3 With Multiple Cameras 전방향카메라와자율이동로봇 4 With Mirrors 전방향카메라와자율이동로봇
More information(Microsoft PowerPoint - ADEFNJKEPXSQ.ppt [\310\243\310\257 \270\360\265\345])
Shading Shading realistic computer graphics 의첫걸음 gradation of colors 색상이부드럽게변해가야 what is needed? light : 광원 matter ( material) : 물체표면의특성 optics ( 광학 ) or physics 1 6.1 Light and Matter Light and Matter
More information(Microsoft PowerPoint - lecture16-ch8.ppt [\310\243\310\257 \270\360\265\345])
OpenGL Texturing Texture Mapping 514780 2016 년가을학기 11/18/2016 박경신 OpenGL 에서텍스쳐맵핑 (texture mapping) 을위한 3 단계 텍스쳐활성화 glenable(gl_texture_2d) 텍스쳐맵핑방법 ( 랩핑, 필터등 ) 정의 gltexparameteri(gl_texture_2d, GL_TEXTURE_WRAP_S,
More informationWeek3
2015 Week 03 / _ Assignment 1 Flow Assignment 1 Hello Processing 1. Hello,,,, 2. Shape rect() ellipse() 3. Color stroke() fill() color selector background() 4 Hello Processing 4. Interaction setup() draw()
More informationMicrosoft Word - cg09-final-answer.doc
기말고사 담당교수 : 단국대학교멀티미디어공학전공박경신 답은반드시답안지에기술할것. 공간이부족할경우반드시답안지몇쪽의뒤에있다고명기한후기술할것. 그외의경우의답안지뒤쪽이나연습지에기술한내용은답안으로인정안함. 답에는반드시네모를쳐서확실히표시할것. 성적공고시중간고사때제출한암호를사용할것임. 1. 다음문제에답하시오. (50점) 1) 직교투영 (orthographic projection),
More informationMicrosoft PowerPoint - lecture15-ch8.ppt [호환 모드]
OpenGL Frame Buffer Buffer, Image, and Texture Mapping 514780 2017 년가을학기 11/16/2017 단국대학교박경신 색버퍼 (Color buffers) 전면버퍼 (Front buffer) 후면버퍼 (Back buffer) 보조버퍼 (Auxiliary buffer) 오버레이면 (Overlay plane) 깊이버퍼
More information19_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단국대학교멀티미디어공학그래픽스프로그래밍기말고사 (2012 년봄학기 ) 2012 년 6 월 12 일학과학번이름 기말고사 담당교수 : 단국대학교멀티미디어공학전공박경신 l 답은반드시답안지에기술할것. 공간이부족할경우반드시답안지몇쪽의뒤에있다고명기한후기술할것. 그외의경우의답안지뒤
기말고사 담당교수 : 단국대학교멀티미디어공학전공박경신 l 답은반드시답안지에기술할것. 공간이부족할경우반드시답안지몇쪽의뒤에있다고명기한후기술할것. 그외의경우의답안지뒤쪽이나연습지에기술한내용은답안으로인정안함. 답에는반드시네모를쳐서확실히표시할것. l 답안지에학과, 학번, 이름외에본인의암호를기입하면성적공고시학번대신암호를사용할것임. 1. 다음은 oglclass 에서제공하는
More information04_오픈지엘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 informationGray 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(Microsoft PowerPoint - CNVZNGWAIYSE.ppt [\310\243\310\257 \270\360\265\345])
Viewing Viewing Process first part : model-view in Chapter 4 second part : projection in Chapter 5 world frame glmatrimode(gl_modelveiw) glmatrimode(gl_projection) camera frame camera 방향 object frame 5.
More informationuntitled
Huvitz Digital Microscope HDS-5800 Dimensions unit : mm Huvitz Digital Microscope HDS-5800 HDS-MC HDS-SS50 HDS-TS50 SUPERIORITY Smart Optical Solutions for You! Huvitz Digital Microscope HDS-5800 Contents
More information2011년 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 informationSlide 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 informationuntitled
CLEBO PM-10S / PM-10HT Megapixel Speed Dome Camera 2/39 3/39 4/39 5/39 6/39 7/39 8/39 ON ON 1 2 3 4 5 6 7 8 9/39 ON ON 1 2 3 4 10/39 ON ON 1 2 3 4 11/39 12/39 13/39 14/39 15/39 Meg gapixel Speed Dome Camera
More informationMicrosoft PowerPoint - lecture15-ch6.ppt
Lighting OpenGL Lighting OpenGL의조명에는 3가지요소가필요 광원 (Lights) 재질 (Materials) 면의법선벡터 (Normals) 321190 2008년봄학기 5/26/2007 박경신 OpenGL Lighting OpenGL Lighting OpenGL에서제공하는조명모델 환경광 / 주변광 (ambient lights) 점광원 (point
More informationK_R9000PRO_101.pdf
GV-R9000 PRO Radeon 9000 PRO Upgrade your Life REV 101 GV-R9000 PRO - 2-2002 11 1 12 ATi Radeon 9000 PRO GPU 64MB DDR SDRAM 275MHz DirectX 81 SMARTSHADER ATI SMOOTHVISION 3D HYDRAVISION ATI CATLYST DVI-I
More information슬라이드 1
사용 전에 사용자 주의 사항을 반드시 읽고 정확하게 지켜주시기 바랍니다. 사용설명서의 구성품 형상과 색상은 실제와 다를 수 있습니다. 사용설명서의 내용은 제품의 소프트웨어 버전이나 통신 사업자의 사정에 따라 다를 수 있습니다. 본 사용설명서는 저작권법에 의해 보호를 받고 있습니다. 본 사용설명서는 주식회사 블루버드소프트에서 제작한 것으로 편집 오류, 정보 누락
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
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(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 information1 Nov-03 CST MICROWAVE STUDIO Microstrip Parameter sweeping Tutorial Computer Simulation Technology
1 CST MICROWAVE STUDIO Microstrip Parameter sweeping Tutorial Computer Simulation Technology wwwcstcom wwwcst-koreacokr 2 1 Create a new project 2 Model the structure 3 Define the Port 4 Define the Frequency
More informationMicrosoft Word - cg07-final.doc
기말고사 담당교수 : 단국대학교멀티미디어공학전공박경신 답은반드시답안지에기술할것. 공간이부족할경우반드시답안지몇쪽의뒤에있다고명기한후기술할것. 그외의경우의답안지뒤쪽이나연습지에기술한내용은답안으로인정안함. 답에는반드시네모를쳐서확실히표시할것. 성적공고시중간고사때제출한암호를사용할것임. 1. 맞으면 true, 틀리면 false를적으시오. (20점) 1) 은면제거알고리즘중페인터알고리즘
More informationTEL: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 information4 CD Construct Special Model VI 2 nd Order Model VI 2 Note: Hands-on 1, 2 RC 1 RLC mass-spring-damper 2 2 ζ ω n (rad/sec) 2 ( ζ < 1), 1 (ζ = 1), ( ) 1
: LabVIEW Control Design, Simulation, & System Identification LabVIEW Control Design Toolkit, Simulation Module, System Identification Toolkit 2 (RLC Spring-Mass-Damper) Control Design toolkit LabVIEW
More information<35312DBCB1C8A3B5B52E687770>
논문접수일 : 2011.09.25 심사일 : 2011.10.07 게재확정일 : 2011.10.24 선호도 높은 웹페이지의 디자인요소 분석연구 - 그래픽이미지, 색채, 레이아웃, 배경을 중심으로 - A study on the Design Factor Analysis in a High Preferable Web site Design - With a focus on
More informationMicrosoft PowerPoint - 13prac.pptx
Viewing 1 th Week, 29 OpenGL Viewing Functions glulookat() Defining a viewing matrix glortho() Creating a matrix for an orthographic parallel viewing i volume glfrustum() Creating a matrix for a perspective-view
More informationMicrosoft Word - cg08-final-answer.doc
기말고사 담당교수 : 단국대학교멀티미디어공학전공박경신 답은반드시답안지에기술할것. 공간이부족할경우반드시답안지몇쪽의뒤에있다고명기한후기술할것. 그외의경우의답안지뒤쪽이나연습지에기술한내용은답안으로인정안함. 답에는반드시네모를쳐서확실히표시할것. 성적공고시중간고사때제출한암호를사용할것임. 1. 다음문제에답하시오. (50점) 1) 표면의법선벡터 (normal vector) N과표면에서광원으로향하는광원벡터
More informationMicrosoft PowerPoint cg01.ppt
Chap 1. Graphics Systems and Models 동의대학교멀티미디어공학과 Hyoungseok B. Kim Computer Graphics definition all technologies related to producing pictures or images using a computer 40년정도의역사 CRT characters photo-realistic
More informationMicrosoft Word - SRA-Series Manual.doc
사 용 설 명 서 SRA Series Professional Power Amplifier MODEL No : SRA-500, SRA-900, SRA-1300 차 례 차 례 ---------------------------------------------------------------------- 2 안전지침 / 주의사항 -----------------------------------------------------------
More information<4D F736F F F696E74202D204B FC7C1B7CEB1D7B7A55F436F6E736F6C D6520B0B3B9DFBFA120C0AFBFEBC7D120B9E6B9FD5FC0CCC1F
Console Game 개발에유용한방법 이진균개발실장 목 Console Game 시장과개발의필요성 Programming Differences between PC & Console Dev. Environments CPU, GPU, & FPU Resource Loading Memory Management Network Implementing Effects Quality
More information슬라이드 1
디지털이미지와컴퓨터그래픽스 2010.03.25 첨단영상대학원박경주교수, kjpark@cau.ac.kr, 02-820-5823 http://cau.ac.kr/~kjpark, http://graphics.cau.ac.kr/ Topics 박경주교수 (kjpark@cau.ac.kr) 디지털이미지 모델링 모션그래픽스연구실 (http://graphics.cau.ac.kr/)
More informationLCD 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 informationsolution map_....
SOLUTION BROCHURE RELIABLE STORAGE SOLUTIONS ETERNUS FOR RELIABILITY AND AVAILABILITY PROTECT YOUR DATA AND SUPPORT BUSINESS FLEXIBILITY WITH FUJITSU STORAGE SOLUTIONS kr.fujitsu.com INDEX 1. Storage System
More information좋은 사진 찍는 방법
Based on Photo Zone by Klaus Schroiff (Klaus@photozone.de) Translation & Edit by Jihoon Jason Wang (DS2SJT / jasonw@korea.com) - Prologue.. And.. special thanks to Klaus Jason Jihoon Wang (jasonw@korea.com)
More informationLIDAR와 영상 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融合先验信息到三维重建 组会报 告[2]
[1] Crandall D, Owens A, Snavely N, et al. "Discrete-continuous optimization for large-scale structure from motion." (CVPR), 2011 [2] Crandall D, Owens A, Snavely N, et al. SfM with MRFs: Discrete-Continuous
More information김기남_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 information1. 서 론
두 장의 영상을 이용한 저조도 환경에서의 실용적 계산 사진 기법과 Mosaic 에의 응용 Practical Computational Photography with A Pair of Images under Low Illumination and Its Application to Mosaic 안택현 O, 홍기상 포항공과대학교 정보통신학과 O, 포항공과대학교 전자전기공학과
More information2 / 26
1 / 26 2 / 26 3 / 26 4 / 26 5 / 26 6 / 26 7 / 26 8 / 26 9 / 26 10 / 26 11 / 26 12 / 26 13 / 26 14 / 26 o o o 15 / 26 o 16 / 26 17 / 26 18 / 26 Comparison of RAID levels RAID level Minimum number of drives
More information04임재아_ok.hwp
(Regular Paper) 19 4, 2014 7 (JBE Vol. 19, No. 4, July 2014) http://dx.doi.org/10.5909/jbe.2014.19.4.478 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) 3-D a), a) Asymmetrical Role of Left and Right Eyes
More information45-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(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<313630313032C6AFC1FD28B1C7C7F5C1DF292E687770>
양성자가속기연구센터 양성자가속기 개발 및 운영현황 DOI: 10.3938/PhiT.25.001 권혁중 김한성 Development and Operational Status of the Proton Linear Accelerator at the KOMAC Hyeok-Jung KWON and Han-Sung KIM A 100-MeV proton linear accelerator
More informationMicrosoft PowerPoint - lecture16-ch6
Lighting OpenGL Lighting OpenGL의조명에는 3가지요소가필요 광원 (Lights) 재질 (Materials) 면의법선벡터 (Normals) 321190 2007년봄학기 5/15/2007 박경신 OpenGL Lighting OpenGL Lighting OpenGL에서제공하는조명모델 환경광 / 주변광 (ambient lights) 점광원 (point
More informationT100MD+
User s Manual 100% ) ( x b a a + 1 RX+ TX+ DTR GND TX+ RX+ DTR GND RX+ TX+ DTR GND DSR RX+ TX+ DTR GND DSR [ DCE TYPE ] [ DCE TYPE ] RS232 Format Baud 1 T100MD+
More information초판 1쇄 발행 2013년 10월 25일 지은이 박승제 펴낸이 장성두 펴낸곳 제이펍 출판신고 2009년 11월 10일 제406-2009-000087호 주소 경기도 파주시 문발동 파주출판도시 530 1 뮤즈빌딩 403호 전화 070 8201 9010 / 팩스 02 628
초판 1쇄 발행 2013년 10월 25일 지은이 박승제 펴낸이 장성두 펴낸곳 제이펍 출판신고 2009년 11월 10일 제406-2009-000087호 주소 경기도 파주시 문발동 파주출판도시 530 1 뮤즈빌딩 403호 전화 070 8201 9010 / 팩스 02 6280 0405 홈페이지 www.jpub.kr / 이메일 jeipub@gmail.com 편집부
More information- 이 문서는 삼성전자의 기술 자산으로 승인자만이 사용할 수 있습니다 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 informationSomething that can be seen, touched or otherwise sensed
Something that can be seen, touched or otherwise sensed Things about an object Weight Height Material Things an object does Pen writes Book stores words Water have Fresh water Rivers Oceans have
More information歯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 informationChap06(Interprocess Communication).PDF
Interprocess Communication 2002 2 Hyun-Ju Park Introduction (interprocess communication; IPC) IPC data transfer sharing data event notification resource sharing process control Interprocess Communication
More informationLab10
Lab 10: Map Visualization 2015 Fall human-computer interaction + design lab. Joonhwan Lee Map Visualization Shape Shape (.shp): ESRI shp http://sgis.kostat.go.kr/html/index.html 3 d3.js SVG, GeoJSON, TopoJSON
More informationManufacturing6
σ6 Six Sigma, it makes Better & Competitive - - 200138 : KOREA SiGMA MANAGEMENT C G Page 2 Function Method Measurement ( / Input Input : Man / Machine Man Machine Machine Man / Measurement Man Measurement
More informationOpen GL
Graphics Basic Windows & OpenGL Programming 컴퓨터그래픽스연구실 OpenGL 관련참고사이트 OpenGL 공식사이트 http://www.opengl.org/ Khronos Group http://www.khronos.org/ Nehe Productions http://nehe.gamedev.net/ OpenGL 파일설정 압축을푼후다음경로로파일을복사
More informationMicrosoft PowerPoint - analogic_kimys_ch10.ppt
Stability and Frequency Compensation (Ch. 10) 김영석충북대학교전자정보대학 2010.3.1 Email: kimys@cbu.ac.kr 전자정보대학김영석 1 Basic Stability 10.1 General Considerations Y X (s) = H(s) 1+ βh(s) May oscillate at ω if βh(jω)
More information(Microsoft PowerPoint - EDIDFDXLLBYN.ppt [\310\243\310\257 \270\360\265\345])
Implementation of a Renderer Implementation graphics system을구현하는방법? 핵심은 algorithm 현재는대부분 hardware 구현가능 그러나, 아직도 software 구현필요 algorithms theoretical versus practical performance hardware versus software
More information1. Features IR-Compact non-contact infrared thermometer measures the infrared wavelength emitted from the target spot and converts it to standard curr
Non-Contact Infrared Temperature I R - Compact Sensor / Transmitter GASDNA co.,ltd C-910C, Bupyeong Woolim Lion s Valley, #425, Cheongcheon-Dong, Bupyeong-Gu, Incheon, Korea TEL: +82-32-623-7507 FAX: +82-32-623-7510
More informationMicrosoft 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목차 제 1 장 inexio Touch Driver소개... 3 1.1 소개 및 주요 기능... 3 1.2 제품사양... 4 제 2 장 설치 및 실행... 5 2.1 설치 시 주의사항... 5 2.2 설치 권고 사양... 5 2.3 프로그램 설치... 6 2.4 하드웨
최종 수정일: 2010.01.15 inexio 적외선 터치스크린 사용 설명서 [Notes] 본 매뉴얼의 정보는 예고 없이 변경될 수 있으며 사용된 이미지가 실제와 다를 수 있습니다. 1 목차 제 1 장 inexio Touch Driver소개... 3 1.1 소개 및 주요 기능... 3 1.2 제품사양... 4 제 2 장 설치 및 실행... 5 2.1 설치 시
More information1
1 1....6 1.1...6 2. Java Architecture...7 2.1 2SDK(Software Development Kit)...8 2.2 JRE(Java Runtime Environment)...9 2.3 (Java Virtual Machine, JVM)...10 2.4 JVM...11 2.5 (runtime)jvm...12 2.5.1 2.5.2
More informationVertical Probe Card Technology Pin Technology 1) Probe Pin Testable Pitch:03 (Matrix) Minimum Pin Length:2.67 High Speed Test Application:Test Socket
Vertical Probe Card for Wafer Test Vertical Probe Card Technology Pin Technology 1) Probe Pin Testable Pitch:03 (Matrix) Minimum Pin Length:2.67 High Speed Test Application:Test Socket Life Time: 500000
More informationPRO1_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 informationexample 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 informationCD-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 informationMicrosoft 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서피스셰이더프로그램 셰이더개발을쉽게! Thursday, April 12, 12
서피스셰이더프로그램 셰이더개발을쉽게! 유니티렌더링시스템소개 렌더링패스 셰이더랩 서피스셰이더 데모 2 유니티렌더링시스템 3 Deferred Lighting Rendering Path Dual Lightmapping Post Effect Processing Realtime Shadow LightProbe Directional Lightmapping HDR Gamma
More informationDBPIA-NURIMEDIA
증강현실에서사실적인그림자생성을위한조명분포모델의계층적분할 Hierarchical Subdivision of Light Distribution Model for Realistic Shadow Generation in Augmented Reality 저자 (Authors) 김익수, 임창경, 홍현기 Iksu Kim, Changkyoung Eem, Hyunki Hong
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) 요약.,,. /.,,. :,,,, Abstract In computer graphics, high-quality
More information12¾ÈÇö°æ1-155T304®¶ó153-154
Journal of Fashion Business Vol. 8, No. 4, pp.141~155(2004) A Research for the hair Style Image making Chart Manufacturing Depends on Fashion Feeling + - through the analysis of the actress hair styles
More informationMicrosoft PowerPoint - 27.pptx
이산수학 () n-항관계 (n-ary Relations) 2011년봄학기 강원대학교컴퓨터과학전공문양세 n-ary Relations (n-항관계 ) An n-ary relation R on sets A 1,,A n, written R:A 1,,A n, is a subset R A 1 A n. (A 1,,A n 에대한 n- 항관계 R 은 A 1 A n 의부분집합이다.)
More informationH3050(aap)
USB Windows 7/ Vista 2 Windows XP English 1 2 3 4 Installation A. Headset B. Transmitter C. USB charging cable D. 3.5mm to USB audio cable - Before using the headset needs to be fully charged. -Connect
More informationOrcad 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(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 informationMicrosoft PowerPoint - lecture4-ch2.ppt
Graphics Programming OpenGL Camera OpenGL 에서는카메라가물체의공간 (drawing coordinates) 의원점 (origin) 에위치하며 z- 방향으로향하고있다. 관측공간을지정하지않는다면, 디폴트로 2x2x2 입방체의 viewing volume을사용한다. (1, 1, 1) 321190 2007년봄학기 3/16/2007 박경신
More informationMicrosoft 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 informationDioPen 6.0 사용 설명서
1. DioPen 6.0...1 1.1...1 DioPen 6.0...1...1...2 1.2...2...2...13 2. DioPen 6.0...17 2.1 DioPen 6.0...17...18...20...22...24...25 2.2 DioPen 6.0...25 DioPen 6.0...25...25...25...25 (1)...26 (2)...26 (3)
More informationMicrosoft 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 information09김수현_ok.hwp
2 : TOF DSLR (Soohyeon Kim et al. : Hybrid Camera System with a TOF and DSLR Cameras) (Regular Paper) 19 4, 2014 7 (JBE Vol. 19, No. 4, July 2014) http://dx.doi.org/10.5909/jbe.2014.19.4.533 ISSN 2287-9137
More information<5B313132385D32303039B3E220C1A634B1C720C1A632C8A320B3EDB9AEC1F628C3D6C1BE292E687770>
디지털 영상에서의 자막추출을 이용한 자막 특성 분석에 관한 연구 이세열 * 요약 본 연구는 방송 프로그램 제작에 있어서 중요한 역할을 담당하고 있는 영상 자막의 특성과 영상 커 뮤니케이션 기능적인 관점에서 나타나고 있는 현상을 살펴본다. 다양한 방송 프로그램에서 활용되고 있는 디지털 영상 자막의 기능은 단순하게 간략한 정보를 전달하는 기능적인 역할을 수행하였다.
More informationMPEG-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 informationecorp-프로젝트제안서작성실무(양식3)
(BSC: Balanced ScoreCard) ( ) (Value Chain) (Firm Infrastructure) (Support Activities) (Human Resource Management) (Technology Development) (Primary Activities) (Procurement) (Inbound (Outbound (Marketing
More informationuntitled
9 hamks@dongguk.ac.kr : Source code Assembly language code x = a + b; ld a, %r1 ld b, %r2 add %r1, %r2, %r3 st %r3, x (Assembler) (bit pattern) (machine code) CPU security (code generator).. (Instruction
More information