SlideShare une entreprise Scribd logo
1  sur  8
Technical Glossary
Pixel and resolution
•   The image that is displayed on the screen is composed of thousands (or millions) of small dots; these are called
    pixels; the word is a contraction of the phrase "picture element". A pixel represents the smallest piece of the
    screen that can be controlled individually. Each one can be set to a different colour and intensity (brightness).

•   The number of pixels that can be displayed on the screen is referred to as the resolution of the image; this is
    normally displayed as a pair of numbers, such as 640x480. The first is the number of pixels that can be displayed
    horizontally on the screen, and the second how many can be displayed vertically. The higher the resolution, the
    more pixels that can be displayed and therefore the more that can be shown on the monitor at
    once, however, pixels are smaller at high resolution and detail can be hard to make out on smaller screens.
    Resolutions generally fall into predefined standard sets; only a few different resolutions are used by most PCs.

•   The aspect ratio of the image is the ratio of the number of X pixels to the number of Y pixels. The standard aspect
    ratio for PCs is 4:3, but some resolutions use a ratio of 5:4. Monitors are calibrated to this standard so that you can
    draw a circle and have it appear to be a circle and not an ellipse. Displaying an image that uses an aspect ratio of
    5:4 will cause the image to appear somewhat distorted. The only mainstream resolution that currently uses 5:4 is
    the high-resolution 1280x1024.

•   There is some confusion regarding the use of the term "resolution", since it can technically mean different things.
    First, the resolution of the image you see is a function of what the video card outputs and what the monitor is
    capable of displaying; to see a high resolution image such as 1280x1024 requires both a video card capable of
    producing an image this large and a monitor capable of displaying it. Second, since each pixel is displayed on the
    monitor as a set of three individual dots (red, green and blue), some people use the term "resolution" to refer to
    the resolution of the monitor, and the term "pixel addressability" to refer to the number of discrete elements the
    video card produces. In practical terms most people use resolution to refer to the video image, as I do on this site.
Vector and raster images
•   There are two kinds of computer graphics - raster (composed of pixels) and vector (composed of paths).
    Raster images are more commonly called bitmap images.

•   A bitmap image uses a grid of individual pixels where each pixel can be a different color or shade. Bitmaps
    are composed of pixels.

•   Vector graphics use mathematical relationships between points and the paths connecting them to
    describe an image. Vector graphics are composed of paths.

•   The image to the left below is representative of a bitmap and the image to the right is representative of a
    vector graphic. They are shown at four times actual size to exaggerate the fact that the edges of a bitmap
    become jagged as it is scaled up:




             Bitmap Image:                            Vector Graphic:
File formats and uses
•   Bmp- The BMP file format, also known as bitmap image file or device independent bitmap (DIB) file format or simply a bitmap, is a raster graphics
    image file format used to store bitmap digital images, independently of the display device (such as a graphics adapter), especially on Microsoft
    Windows and OS/2 operating systems
•   Png- Portable Network Graphics (PNG pron.: /ˈpɪŋ/PING) is a Raster graphics file format that supports lossless data compression. PNG was created
    as an improved, non-patented replacement for Graphics Interchange Format (GIF), and is the most used lossless image compression format on the
    World Wide Web.
•   Gif-The Graphics Interchange Format (GIF; /ˈdɪf/ or /ˈ is a bitmap image format that was introduced by CompuServe in 1987 and has since
                                                ʒ         ɡɪf/)
    come into widespread usage on the World Wide Web due to its wide support and portability. The format supports up to 8 bits per pixel thus allowing
    a single image to reference a palette of up to 256 distinct colours. The colours are chosen from the 24-bit RGB colour space. It also supports
    animations and allows a separate palette of 256 colours for each frame. The colour limitation makes the GIF format unsuitable for reproducing colour
    photographs and other images with continuous colour, but it is well-suited for simpler images such as graphics or logos with solid areas of colour.
•   Tiff-TIFF (originally standing for Tagged Image File Format) is a file format for storing images, popular among graphic artists, the publishing
    industry, and both amateur and professional photographers in general. As of 2009, it is under the control of Adobe Systems. Originally created by the
    company Aldus for use with "desktop publishing", the TIFF format is widely supported by image-manipulation applications, by publishing and page
    layout applications, by scanning, faxing, word processing, optical character recognition and other applications. Adobe Systems, which acquired
    Aldus, now holds the copyright to the TIFF specification. TIFF has not had a major update since 1992, though several Aldus/Adobe technical notes
    have been published with minor extensions to the format, and several specifications, including TIFF/EP (ISO 12234-2), TIFF/IT (ISO 12639), TIFF-F (RFC
    2306) and TIFF-FX (RFC 3949) have been based on the TIFF 6.0 specification.
•   Jpg-In computing, JPEG is a commonly used method of loss compression for digital photography (image). The degree of compression can be
    adjusted, allowing a selectable trade off between storage size and image quality. JPEG typically achieves 10:1 compression with little perceptible loss
    in image quality.
•   Psd-Photoshop files have default file extension as .PSD, which stands for "Photoshop Document." A PSD file stores an image with support for most
    imaging options available in Photoshop. These include layers with masks, colour spaces, ICC profiles, CMYK Mode (used for commercial
    printing), transparency, text, alpha channels and spot colours, clipping paths, and duotone settings. This is in contrast to many other file formats (e.g.
    .JPG or .GIF) that restrict content to provide streamlined, predictable functionality. A PSD file has a maximum height and width of 30,000 pixels, and a
    length limit of 3 Gigabytes.
•   Pdf-Portable Document Format (PDF) is a file format used to represent documents in a manner independent of application software, hardware, and
    operating systems. Each PDF file encapsulates a complete description of a fixed-layout flat document, including the text, fonts, graphics, and other
    information needed to display it. In 1991, Adobe Systems co-founder John Warnock outlined a system called "Camelot" that evolved into PDF.
•   Eps-Encapsulated PostScript file. A file format commonly used for photographic and drawn graphics. An EPS file is created and later placed onto a
    page layout in a page assembly program.
•   Ai-Adobe Illustrator Artwork (AI) is a proprietary file format developed by Adobe Systems for representing single-page vector-based drawings in
    either the EPS or PDF formats. The .ai filename extension is used by Adobe Illustrator.
compression
In computer science and information theory, data compression, source coding, or bit-rate reduction involves encoding information
using fewer bits than the original representation. Compression can be either lossy or lossless. Lossless compression reduces bits
by identifying and eliminating statistical redundancy. No information is lost in lossless compression. Lossy compression reduces
bits by identifying unnecessary information and removing it. The process of reducing the size of a data file is popularly referred to
as data compression, although its formal name is source coding (coding done at the source of the data before it is stored or
transmitted).

Compression is useful because it helps reduce resources usage, such as data storage space or transmission capacity. Because
compressed data must be decompressed to use, this extra processing imposes computational or other costs through
decompression; this situation is far from being a free lunch. Data compression is subject to a space-time complexity trade-off. For
instance, a compression scheme for video may require expensive hardware for the video to be decompressed fast enough to be
viewed as it is being decompressed, and the option to decompress the video in full before watching it may be inconvenient or
require additional storage. The design of data compression schemes involves trade-offs among various factors, including the
degree of compression, the amount of distortion introduced (e.g., when using lossy data compression), and the computational
resources required to compress and uncompress the data.
Images capture devices
Image Capture is an application program from Apple that enables users to upload pictures from digital cameras
or scanners which are either connected directly to the computer or the network. It provides no organizational
tools like iPhoto but is useful for collating pictures from a variety of sources with no need for drivers.

Image Capture is scriptable with AppleScript, and may be manipulated with Mac OS X v10.4 (Tiger)'s
"Automator" application. As of Mac OS X 10.4, Image Capture's AppleScript dictionary does not open in Script
Editor. As of Mac OS X 10.6 only the Image Capture Web Server opens in Script Editor.
optimising
•   In computer science, program optimization or software optimization is the process of
    modifying a software system to make some aspect of it work more efficiently or use fewer
    resources. In general, a computer program may be optimized so that it executes more
    rapidly, or is capable of operating with less memory storage or other resources, or draw less
    power.
Storage and asset Management
Computer data storage, often called storage or memory, is a technology consisting of computer
components and recording media used to retain digital data. It is a core function and fundamental
component of computers. The central processing unit (CPU) of a computer is what manipulates data by
performing computations. In practice, almost all computers use a storage hierarchy, which puts fast but
expensive and small storage options close to the CPU and slower but larger and cheaper options farther
away. Often the fast, volatile technologies (which lose data when powered off) are referred to as
"memory", while slower permanent technologies are referred to as "storage", but these terms can also
be used interchangeably. In the Von Neumann architecture, the CPU consists of two main parts: control
unit and arithmetic logic unit (ALU). The former controls the flow of data between the CPU and
memory; the latter performs arithmetic and logical operations on data.

IT asset management (ITAM) is the set of business practices that join financial, contractual and
inventory functions to support life cycle management and strategic decision making for the IT
environment. Assets include all elements of software and hardware that are found in the business
environment.
IT asset management (also called IT inventory management) is an important part of an organization's
strategy. It usually involves gathering detailed hardware and software inventory information which is
then used to make decisions about hardware and software purchases and redistribution. IT inventory
management helps organizations manage their systems more effectively and saves time and money by
eliminating unnecessary purchases and wasted resources.

Contenu connexe

Tendances

Pixel and resolution
Pixel and resolutionPixel and resolution
Pixel and resolutionrosstapher
 
Chapter 3 : IMAGE
Chapter 3 : IMAGEChapter 3 : IMAGE
Chapter 3 : IMAGEazira96
 
Task 1 – digital graphics for computer games
Task 1 – digital graphics for computer gamesTask 1 – digital graphics for computer games
Task 1 – digital graphics for computer gamesJames-003
 
Stem 71 24 multimedia elements - graphics
Stem 71 24   multimedia elements - graphicsStem 71 24   multimedia elements - graphics
Stem 71 24 multimedia elements - graphicsKelly Bauer
 
Technical file
Technical fileTechnical file
Technical fileCameron321
 
Technical Files Presentation
Technical Files PresentationTechnical Files Presentation
Technical Files PresentationWildOakForrest
 
Basic Introduction To Graphic File Formats
Basic Introduction To Graphic File FormatsBasic Introduction To Graphic File Formats
Basic Introduction To Graphic File FormatsAnkit Mishra
 
Technical file
Technical fileTechnical file
Technical filesamgh1995
 
Image capture powerpoint
Image capture powerpointImage capture powerpoint
Image capture powerpointcbottomleyct
 
Commonly Used Image File Formats
Commonly Used Image File FormatsCommonly Used Image File Formats
Commonly Used Image File FormatsFatih Özlü
 

Tendances (18)

Pixel and resolution
Pixel and resolutionPixel and resolution
Pixel and resolution
 
Task 1
Task 1Task 1
Task 1
 
Chapter 3 : IMAGE
Chapter 3 : IMAGEChapter 3 : IMAGE
Chapter 3 : IMAGE
 
Image Files Formats
Image Files FormatsImage Files Formats
Image Files Formats
 
Task 1
Task 1Task 1
Task 1
 
Task 1 – digital graphics for computer games
Task 1 – digital graphics for computer gamesTask 1 – digital graphics for computer games
Task 1 – digital graphics for computer games
 
Stem 71 24 multimedia elements - graphics
Stem 71 24   multimedia elements - graphicsStem 71 24   multimedia elements - graphics
Stem 71 24 multimedia elements - graphics
 
Technical file
Technical fileTechnical file
Technical file
 
Image File Fomat
Image File FomatImage File Fomat
Image File Fomat
 
Technical File
Technical FileTechnical File
Technical File
 
Technical Files Presentation
Technical Files PresentationTechnical Files Presentation
Technical Files Presentation
 
Basic Introduction To Graphic File Formats
Basic Introduction To Graphic File FormatsBasic Introduction To Graphic File Formats
Basic Introduction To Graphic File Formats
 
Technical file
Technical fileTechnical file
Technical file
 
Image capture powerpoint
Image capture powerpointImage capture powerpoint
Image capture powerpoint
 
Commonly Used Image File Formats
Commonly Used Image File FormatsCommonly Used Image File Formats
Commonly Used Image File Formats
 
Technical glossary
Technical glossaryTechnical glossary
Technical glossary
 
Grade 8 image file format
Grade 8   image file formatGrade 8   image file format
Grade 8 image file format
 
image formats
image formatsimage formats
image formats
 

En vedette

Salary sheet
Salary sheetSalary sheet
Salary sheetrsgreets
 
Cerpen Ruang Rindu
Cerpen Ruang RinduCerpen Ruang Rindu
Cerpen Ruang Rindusri_
 
Production log
Production logProduction log
Production loghalo4robo
 
Group4 Unit5
Group4 Unit5Group4 Unit5
Group4 Unit5Poleak
 
Flash (the ultimatum)
Flash (the ultimatum)Flash (the ultimatum)
Flash (the ultimatum)halo4robo
 
Artistic styles
Artistic stylesArtistic styles
Artistic styleshalo4robo
 
Unit 73 ig1 assignment computer game audio cut sequence production 2013_y2
Unit 73 ig1 assignment computer game audio cut sequence production 2013_y2Unit 73 ig1 assignment computer game audio cut sequence production 2013_y2
Unit 73 ig1 assignment computer game audio cut sequence production 2013_y2halo4robo
 
Actividad deaprendizaje 08
Actividad deaprendizaje   08Actividad deaprendizaje   08
Actividad deaprendizaje 08Kevin Salinas
 
Dancing baby meme
Dancing baby memeDancing baby meme
Dancing baby memepinal003
 
新興華語文翻譯專科學校第二,三屆聯合畢業典禮
新興華語文翻譯專科學校第二,三屆聯合畢業典禮新興華語文翻譯專科學校第二,三屆聯合畢業典禮
新興華語文翻譯專科學校第二,三屆聯合畢業典禮Heng Sin
 
Edl 669 action plan
Edl 669 action planEdl 669 action plan
Edl 669 action planmpickard9
 
Chapter 3 4th recorrected ready prof phago final final 20120905
Chapter 3 4th recorrected ready prof phago final final 20120905Chapter 3 4th recorrected ready prof phago final final 20120905
Chapter 3 4th recorrected ready prof phago final final 20120905200809709
 
Production log
Production logProduction log
Production loghalo4robo
 
Bahan kuliah blok_1.1_tahun_2011
Bahan kuliah blok_1.1_tahun_2011Bahan kuliah blok_1.1_tahun_2011
Bahan kuliah blok_1.1_tahun_2011mhicyr
 
Sound programme process
Sound programme processSound programme process
Sound programme processhalo4robo
 
Graphic types
Graphic typesGraphic types
Graphic typeshalo4robo
 

En vedette (20)

Defense
DefenseDefense
Defense
 
Maturski ispit iz mat opsti
Maturski ispit iz mat opstiMaturski ispit iz mat opsti
Maturski ispit iz mat opsti
 
Salary sheet
Salary sheetSalary sheet
Salary sheet
 
Cerpen Ruang Rindu
Cerpen Ruang RinduCerpen Ruang Rindu
Cerpen Ruang Rindu
 
Production log
Production logProduction log
Production log
 
Group4 Unit5
Group4 Unit5Group4 Unit5
Group4 Unit5
 
Flash (the ultimatum)
Flash (the ultimatum)Flash (the ultimatum)
Flash (the ultimatum)
 
Artistic styles
Artistic stylesArtistic styles
Artistic styles
 
Unit 73 ig1 assignment computer game audio cut sequence production 2013_y2
Unit 73 ig1 assignment computer game audio cut sequence production 2013_y2Unit 73 ig1 assignment computer game audio cut sequence production 2013_y2
Unit 73 ig1 assignment computer game audio cut sequence production 2013_y2
 
Actividad deaprendizaje 08
Actividad deaprendizaje   08Actividad deaprendizaje   08
Actividad deaprendizaje 08
 
Dancing baby meme
Dancing baby memeDancing baby meme
Dancing baby meme
 
新興華語文翻譯專科學校第二,三屆聯合畢業典禮
新興華語文翻譯專科學校第二,三屆聯合畢業典禮新興華語文翻譯專科學校第二,三屆聯合畢業典禮
新興華語文翻譯專科學校第二,三屆聯合畢業典禮
 
Edl 669 action plan
Edl 669 action planEdl 669 action plan
Edl 669 action plan
 
Chapter 3 4th recorrected ready prof phago final final 20120905
Chapter 3 4th recorrected ready prof phago final final 20120905Chapter 3 4th recorrected ready prof phago final final 20120905
Chapter 3 4th recorrected ready prof phago final final 20120905
 
Fmp pitch
Fmp pitchFmp pitch
Fmp pitch
 
Production log
Production logProduction log
Production log
 
Bahan kuliah blok_1.1_tahun_2011
Bahan kuliah blok_1.1_tahun_2011Bahan kuliah blok_1.1_tahun_2011
Bahan kuliah blok_1.1_tahun_2011
 
Presentation1
Presentation1Presentation1
Presentation1
 
Sound programme process
Sound programme processSound programme process
Sound programme process
 
Graphic types
Graphic typesGraphic types
Graphic types
 

Similaire à Technical glossary

Pixel and resolution
Pixel and resolutionPixel and resolution
Pixel and resolutionthomasmcd6
 
Technical glossary
Technical glossaryTechnical glossary
Technical glossaryAmaanGDesign
 
Image file formats
Image file formatsImage file formats
Image file formatsKarlRubin
 
Technical file powerpoint
Technical file powerpointTechnical file powerpoint
Technical file powerpointMaguire94
 
Unit 78: Task 3 Technical file
Unit 78: Task 3 Technical fileUnit 78: Task 3 Technical file
Unit 78: Task 3 Technical fileConnahTilley
 
File types pro forma
File types pro formaFile types pro forma
File types pro formaAnnaMasmedia
 
Unit 54 digital graphics pp
Unit 54 digital graphics ppUnit 54 digital graphics pp
Unit 54 digital graphics ppMegan Hughes
 
Unit 54 digital graphics pp
Unit 54 digital graphics ppUnit 54 digital graphics pp
Unit 54 digital graphics ppMegan Hughes
 
Presentation on images
Presentation on imagesPresentation on images
Presentation on imagesumme farwa
 
Week 6 Task File Formats
Week 6 Task   File FormatsWeek 6 Task   File Formats
Week 6 Task File Formatsguest2cf876
 

Similaire à Technical glossary (20)

Unit 78 technical file
Unit 78 technical fileUnit 78 technical file
Unit 78 technical file
 
Pixel and resolution
Pixel and resolutionPixel and resolution
Pixel and resolution
 
Technical glossary
Technical glossaryTechnical glossary
Technical glossary
 
Technical glossary
Technical glossaryTechnical glossary
Technical glossary
 
Image file formats
Image file formatsImage file formats
Image file formats
 
Ha2 task 1
Ha2 task 1Ha2 task 1
Ha2 task 1
 
Technical file powerpoint
Technical file powerpointTechnical file powerpoint
Technical file powerpoint
 
Unit 78: Task 3 Technical file
Unit 78: Task 3 Technical fileUnit 78: Task 3 Technical file
Unit 78: Task 3 Technical file
 
Graphics
GraphicsGraphics
Graphics
 
Resolution
ResolutionResolution
Resolution
 
Technical File
Technical File Technical File
Technical File
 
File types pro forma
File types pro formaFile types pro forma
File types pro forma
 
Unit 54 digital graphics pp
Unit 54 digital graphics ppUnit 54 digital graphics pp
Unit 54 digital graphics pp
 
Unit 54 digital graphics pp
Unit 54 digital graphics ppUnit 54 digital graphics pp
Unit 54 digital graphics pp
 
Presentation on images
Presentation on imagesPresentation on images
Presentation on images
 
Power point x
Power point xPower point x
Power point x
 
Power point x
Power point xPower point x
Power point x
 
Portfolio task 5
Portfolio task 5Portfolio task 5
Portfolio task 5
 
Week 6 Task File Formats
Week 6 Task   File FormatsWeek 6 Task   File Formats
Week 6 Task File Formats
 
File types pro forma
File types pro formaFile types pro forma
File types pro forma
 

Plus de halo4robo

Production log
Production logProduction log
Production loghalo4robo
 
Evaluation v1
Evaluation v1Evaluation v1
Evaluation v1halo4robo
 
Unit67 land e_checklist_271113
Unit67 land e_checklist_271113Unit67 land e_checklist_271113
Unit67 land e_checklist_271113halo4robo
 
Ig1 task 2 analysis work sheet dead island
Ig1 task 2 analysis work sheet dead islandIg1 task 2 analysis work sheet dead island
Ig1 task 2 analysis work sheet dead islandhalo4robo
 
Ig1 task 2 analysis work sheet assassins creed 3
Ig1 task 2 analysis work sheet assassins creed 3Ig1 task 2 analysis work sheet assassins creed 3
Ig1 task 2 analysis work sheet assassins creed 3halo4robo
 
Ig1 task 2 analysis work sheet assassins creed 4
Ig1 task 2 analysis work sheet assassins creed 4Ig1 task 2 analysis work sheet assassins creed 4
Ig1 task 2 analysis work sheet assassins creed 4halo4robo
 
Ig1 task 2 analysis work sheet bioshock infinite
Ig1 task 2 analysis work sheet bioshock infiniteIg1 task 2 analysis work sheet bioshock infinite
Ig1 task 2 analysis work sheet bioshock infinitehalo4robo
 
Android escape
Android escapeAndroid escape
Android escapehalo4robo
 
Robert h l ig2 task 1 work sheet v3
Robert h l ig2 task 1 work sheet v3Robert h l ig2 task 1 work sheet v3
Robert h l ig2 task 1 work sheet v3halo4robo
 
Evaluation v1
Evaluation v1Evaluation v1
Evaluation v1halo4robo
 
Production log v1
Production log v1Production log v1
Production log v1halo4robo
 
Schedules complete
Schedules completeSchedules complete
Schedules completehalo4robo
 
Remedy games
Remedy gamesRemedy games
Remedy gameshalo4robo
 
Data collation from my survey
Data collation from my surveyData collation from my survey
Data collation from my surveyhalo4robo
 

Plus de halo4robo (20)

Production log
Production logProduction log
Production log
 
Evaluation v1
Evaluation v1Evaluation v1
Evaluation v1
 
Unit67 land e_checklist_271113
Unit67 land e_checklist_271113Unit67 land e_checklist_271113
Unit67 land e_checklist_271113
 
Ig1 task 2 analysis work sheet dead island
Ig1 task 2 analysis work sheet dead islandIg1 task 2 analysis work sheet dead island
Ig1 task 2 analysis work sheet dead island
 
Ig1 task 2 analysis work sheet assassins creed 3
Ig1 task 2 analysis work sheet assassins creed 3Ig1 task 2 analysis work sheet assassins creed 3
Ig1 task 2 analysis work sheet assassins creed 3
 
Ig1 task 2 analysis work sheet assassins creed 4
Ig1 task 2 analysis work sheet assassins creed 4Ig1 task 2 analysis work sheet assassins creed 4
Ig1 task 2 analysis work sheet assassins creed 4
 
Ig1 task 2 analysis work sheet bioshock infinite
Ig1 task 2 analysis work sheet bioshock infiniteIg1 task 2 analysis work sheet bioshock infinite
Ig1 task 2 analysis work sheet bioshock infinite
 
Schedules
SchedulesSchedules
Schedules
 
Android escape
Android escapeAndroid escape
Android escape
 
Planning
PlanningPlanning
Planning
 
Robert h l ig2 task 1 work sheet v3
Robert h l ig2 task 1 work sheet v3Robert h l ig2 task 1 work sheet v3
Robert h l ig2 task 1 work sheet v3
 
Evaluation v1
Evaluation v1Evaluation v1
Evaluation v1
 
Production log v1
Production log v1Production log v1
Production log v1
 
Schedules complete
Schedules completeSchedules complete
Schedules complete
 
Remedy games
Remedy gamesRemedy games
Remedy games
 
Fmp pitch
Fmp pitchFmp pitch
Fmp pitch
 
Data collation from my survey
Data collation from my surveyData collation from my survey
Data collation from my survey
 
Survey
SurveySurvey
Survey
 
Survey
SurveySurvey
Survey
 
Fmp pitch
Fmp pitchFmp pitch
Fmp pitch
 

Dernier

Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 

Dernier (20)

Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 

Technical glossary

  • 2. Pixel and resolution • The image that is displayed on the screen is composed of thousands (or millions) of small dots; these are called pixels; the word is a contraction of the phrase "picture element". A pixel represents the smallest piece of the screen that can be controlled individually. Each one can be set to a different colour and intensity (brightness). • The number of pixels that can be displayed on the screen is referred to as the resolution of the image; this is normally displayed as a pair of numbers, such as 640x480. The first is the number of pixels that can be displayed horizontally on the screen, and the second how many can be displayed vertically. The higher the resolution, the more pixels that can be displayed and therefore the more that can be shown on the monitor at once, however, pixels are smaller at high resolution and detail can be hard to make out on smaller screens. Resolutions generally fall into predefined standard sets; only a few different resolutions are used by most PCs. • The aspect ratio of the image is the ratio of the number of X pixels to the number of Y pixels. The standard aspect ratio for PCs is 4:3, but some resolutions use a ratio of 5:4. Monitors are calibrated to this standard so that you can draw a circle and have it appear to be a circle and not an ellipse. Displaying an image that uses an aspect ratio of 5:4 will cause the image to appear somewhat distorted. The only mainstream resolution that currently uses 5:4 is the high-resolution 1280x1024. • There is some confusion regarding the use of the term "resolution", since it can technically mean different things. First, the resolution of the image you see is a function of what the video card outputs and what the monitor is capable of displaying; to see a high resolution image such as 1280x1024 requires both a video card capable of producing an image this large and a monitor capable of displaying it. Second, since each pixel is displayed on the monitor as a set of three individual dots (red, green and blue), some people use the term "resolution" to refer to the resolution of the monitor, and the term "pixel addressability" to refer to the number of discrete elements the video card produces. In practical terms most people use resolution to refer to the video image, as I do on this site.
  • 3. Vector and raster images • There are two kinds of computer graphics - raster (composed of pixels) and vector (composed of paths). Raster images are more commonly called bitmap images. • A bitmap image uses a grid of individual pixels where each pixel can be a different color or shade. Bitmaps are composed of pixels. • Vector graphics use mathematical relationships between points and the paths connecting them to describe an image. Vector graphics are composed of paths. • The image to the left below is representative of a bitmap and the image to the right is representative of a vector graphic. They are shown at four times actual size to exaggerate the fact that the edges of a bitmap become jagged as it is scaled up: Bitmap Image: Vector Graphic:
  • 4. File formats and uses • Bmp- The BMP file format, also known as bitmap image file or device independent bitmap (DIB) file format or simply a bitmap, is a raster graphics image file format used to store bitmap digital images, independently of the display device (such as a graphics adapter), especially on Microsoft Windows and OS/2 operating systems • Png- Portable Network Graphics (PNG pron.: /ˈpɪŋ/PING) is a Raster graphics file format that supports lossless data compression. PNG was created as an improved, non-patented replacement for Graphics Interchange Format (GIF), and is the most used lossless image compression format on the World Wide Web. • Gif-The Graphics Interchange Format (GIF; /ˈdɪf/ or /ˈ is a bitmap image format that was introduced by CompuServe in 1987 and has since ʒ ɡɪf/) come into widespread usage on the World Wide Web due to its wide support and portability. The format supports up to 8 bits per pixel thus allowing a single image to reference a palette of up to 256 distinct colours. The colours are chosen from the 24-bit RGB colour space. It also supports animations and allows a separate palette of 256 colours for each frame. The colour limitation makes the GIF format unsuitable for reproducing colour photographs and other images with continuous colour, but it is well-suited for simpler images such as graphics or logos with solid areas of colour. • Tiff-TIFF (originally standing for Tagged Image File Format) is a file format for storing images, popular among graphic artists, the publishing industry, and both amateur and professional photographers in general. As of 2009, it is under the control of Adobe Systems. Originally created by the company Aldus for use with "desktop publishing", the TIFF format is widely supported by image-manipulation applications, by publishing and page layout applications, by scanning, faxing, word processing, optical character recognition and other applications. Adobe Systems, which acquired Aldus, now holds the copyright to the TIFF specification. TIFF has not had a major update since 1992, though several Aldus/Adobe technical notes have been published with minor extensions to the format, and several specifications, including TIFF/EP (ISO 12234-2), TIFF/IT (ISO 12639), TIFF-F (RFC 2306) and TIFF-FX (RFC 3949) have been based on the TIFF 6.0 specification. • Jpg-In computing, JPEG is a commonly used method of loss compression for digital photography (image). The degree of compression can be adjusted, allowing a selectable trade off between storage size and image quality. JPEG typically achieves 10:1 compression with little perceptible loss in image quality. • Psd-Photoshop files have default file extension as .PSD, which stands for "Photoshop Document." A PSD file stores an image with support for most imaging options available in Photoshop. These include layers with masks, colour spaces, ICC profiles, CMYK Mode (used for commercial printing), transparency, text, alpha channels and spot colours, clipping paths, and duotone settings. This is in contrast to many other file formats (e.g. .JPG or .GIF) that restrict content to provide streamlined, predictable functionality. A PSD file has a maximum height and width of 30,000 pixels, and a length limit of 3 Gigabytes. • Pdf-Portable Document Format (PDF) is a file format used to represent documents in a manner independent of application software, hardware, and operating systems. Each PDF file encapsulates a complete description of a fixed-layout flat document, including the text, fonts, graphics, and other information needed to display it. In 1991, Adobe Systems co-founder John Warnock outlined a system called "Camelot" that evolved into PDF. • Eps-Encapsulated PostScript file. A file format commonly used for photographic and drawn graphics. An EPS file is created and later placed onto a page layout in a page assembly program. • Ai-Adobe Illustrator Artwork (AI) is a proprietary file format developed by Adobe Systems for representing single-page vector-based drawings in either the EPS or PDF formats. The .ai filename extension is used by Adobe Illustrator.
  • 5. compression In computer science and information theory, data compression, source coding, or bit-rate reduction involves encoding information using fewer bits than the original representation. Compression can be either lossy or lossless. Lossless compression reduces bits by identifying and eliminating statistical redundancy. No information is lost in lossless compression. Lossy compression reduces bits by identifying unnecessary information and removing it. The process of reducing the size of a data file is popularly referred to as data compression, although its formal name is source coding (coding done at the source of the data before it is stored or transmitted). Compression is useful because it helps reduce resources usage, such as data storage space or transmission capacity. Because compressed data must be decompressed to use, this extra processing imposes computational or other costs through decompression; this situation is far from being a free lunch. Data compression is subject to a space-time complexity trade-off. For instance, a compression scheme for video may require expensive hardware for the video to be decompressed fast enough to be viewed as it is being decompressed, and the option to decompress the video in full before watching it may be inconvenient or require additional storage. The design of data compression schemes involves trade-offs among various factors, including the degree of compression, the amount of distortion introduced (e.g., when using lossy data compression), and the computational resources required to compress and uncompress the data.
  • 6. Images capture devices Image Capture is an application program from Apple that enables users to upload pictures from digital cameras or scanners which are either connected directly to the computer or the network. It provides no organizational tools like iPhoto but is useful for collating pictures from a variety of sources with no need for drivers. Image Capture is scriptable with AppleScript, and may be manipulated with Mac OS X v10.4 (Tiger)'s "Automator" application. As of Mac OS X 10.4, Image Capture's AppleScript dictionary does not open in Script Editor. As of Mac OS X 10.6 only the Image Capture Web Server opens in Script Editor.
  • 7. optimising • In computer science, program optimization or software optimization is the process of modifying a software system to make some aspect of it work more efficiently or use fewer resources. In general, a computer program may be optimized so that it executes more rapidly, or is capable of operating with less memory storage or other resources, or draw less power.
  • 8. Storage and asset Management Computer data storage, often called storage or memory, is a technology consisting of computer components and recording media used to retain digital data. It is a core function and fundamental component of computers. The central processing unit (CPU) of a computer is what manipulates data by performing computations. In practice, almost all computers use a storage hierarchy, which puts fast but expensive and small storage options close to the CPU and slower but larger and cheaper options farther away. Often the fast, volatile technologies (which lose data when powered off) are referred to as "memory", while slower permanent technologies are referred to as "storage", but these terms can also be used interchangeably. In the Von Neumann architecture, the CPU consists of two main parts: control unit and arithmetic logic unit (ALU). The former controls the flow of data between the CPU and memory; the latter performs arithmetic and logical operations on data. IT asset management (ITAM) is the set of business practices that join financial, contractual and inventory functions to support life cycle management and strategic decision making for the IT environment. Assets include all elements of software and hardware that are found in the business environment. IT asset management (also called IT inventory management) is an important part of an organization's strategy. It usually involves gathering detailed hardware and software inventory information which is then used to make decisions about hardware and software purchases and redistribution. IT inventory management helps organizations manage their systems more effectively and saves time and money by eliminating unnecessary purchases and wasted resources.