Phranakorn Rajabhat University Library

The filmmaker's guide to visual effects: The art and techniques of VFX for directors, producers, editors, and cinematographers /

Dinur, Eran

The filmmaker's guide to visual effects: The art and techniques of VFX for directors, producers, editors, and cinematographers / The filmmaker's guide to visual effects Eran Dinur,author - New York : Routledge, 2017 - xiii, 191 p. : ill. ; 23 cm.

Part 1: VFX Fundamentals page 5-6 Chapter 1: Core concepts page 7-18 -- Chapter 2: VFX as a Filmmaking tool page 19-33 -- Chapter 3: From 2D to 3D: The quest for the lost dimension page 34-48 -- Chapter 4: Separation: Roto, green screens, and the challenges of extraction page 49-62 Part 2: The inside look page 63-64 Chapter 5: The VFX workflow: An In-depth look at the various crafts of visual effects page 65-103 -- Chapter 6: Workflow case studies page 104-112 Part 3: VFX in production page 113-114 Chapter 7: Pre-production page 115-127 -- Chapter 8: On set page 128-162 -- Chapter 9: Post-production page 163-183 -- Chapter 10: The future page 184-187

9781138956223 2400


CINEMATOGRAPHY--SPECIAL EFFECTS
DIGITAL CINEMATOGRAPHY
VISUAL EFFECTS

TR 858 / D56T 2017

มหาวิทยาลัยศรีปทุม (กทม.)
2410/2 ถ.พหลโยธิน เขตจตุจักร กรุงเทพฯ 10900
Tel : 02-579-1111, 02-561-2222
มหาวิทยาลัยศรีปทุม (ชลบุรี)
79 หมู่ 1 ถ.บางนา-ตราด ต.คลองตำหรุ อ.เมือง จ.ชลบุรี 20000
Tel : 038-146-123
มหาวิทยาลัยศรีปทุม (ขอนแก่น)
182/12 หมู่ 4 ถ.ศรีจันทร์ ต.ในเมือง อ.เมือง จ.ขอนแก่น 40000
Tel : 043-224-111


 

$(document).ready(function() { // Basic detection of search var searchBox = $('#transl1'); // This is standard OPAC search input id ?? // Actually standard is 'q' or 'idx'. // We want to trigger when the user sees results. // Usually we check if we are on search results page. if ($('body').hasClass('opac-results')) { var params = new URLSearchParams(window.location.search); var query = params.get('q'); if (query) { // Show Loading var container = $('
'); container.append('

✨ AI Recommendations

'); container.append('
Searching with AI...
'); // Prepend to main content // Selector depends on theme. 'div.maincontent' or '#opac-main' $('#userresults').prepend(container); $.ajax({ url: '/api/v1/contrib/aisearch/search?q=' + encodeURIComponent(query), method: 'GET', success: function(data) { container.find('.spinner').remove(); if (data && data.length > 0) { var ul = ''; container.append(ul); } else { container.append('

No AI recommendations found.

'); } }, error: function() { container.find('.spinner').remove(); container.append('

Error loading AI recommendations.

'); } }); } } });