1. Homepage
  2. Programming
  3. CSCI 576 Multimedia Systems Design - Assignment 1: Pipeline, Quantization and Subsampling

CSCI 576 Multimedia Systems Design - Assignment 1: Pipeline, Quantization and Subsampling

Engage in a Conversation
CSCI 576USCMultimedia Systems DesignUniversity of Southern CaliforniaC++JavaYUVQuantizationSubsamplingCS 576Pipeline

CS 576 – Assignment 1 Instructor: Parag Havaldar CourseNana.COM

Assigned on Mon August 29, 2022,

CourseNana.COM

Theory Part (30 points) CourseNana.COM

Question 1: (5 points)
The following sequence of real numbers has been obtained sampling an audio signal: 1.8, 2.2, 2.2, 3.2, 3.3, 3.3, 2.5, 2.8, 2.8, 2.8, 1.5, 1.0, 1.2, 1.2, 1.8, 2.2, 2.2, 2.2, 1.9, 2.3, 1.2, 0.2, -1.2, -1.2, -1.7, -1.1, -2.2, -1.5, -1.5, -0.7, 0.1, 0.9 Quantize this sequence by dividing the interval [-4, 4] into 32 uniformly distributed levels by placing the level 0 at -3.75, the level 1 at -3.5, and so on and level 31 at 4.00. Also, remember that quantization should result in least error
CourseNana.COM

·  Write down the quantized sequence. (4 points) CourseNana.COM

·  How many bits do you need to transmit it? (1 points) CourseNana.COM

Question 2: (10 points)
A high-definition film color camera has 1080 lines per frame, 1920 pixels per line, with a 24 Hz capture frame rate. Each pixel is quantized with 12 bits per channel during the quantization process. The capture pipeline employs the follow sequence
CourseNana.COM

1. YUV 4:2:0 color subsampling scheme
2. An optional feature, to the signal to standard definition CIF (352x288)
3. An obligatory MPEG2 compression phase
4. Disk write with a varying disk write speed (12 to 36 Mbytes per second).
CourseNana.COM

Answer the following questions CourseNana.COM

·  If the second optional feature is off, what minimal compression ratio needs be achieved by the third compression step process? (4 points) CourseNana.COM

·  If the second optional feature is turned on to produce CIF format, how does your previous answer change? (3 points) CourseNana.COM

·  If original pixels were square, how do the pixel stretch with the second optional feature turned on.? (3 points) CourseNana.COM

Question 3: (15 points)
Temporal aliasing can be observed when you attempt to record a rotating wheel with a video camera. In this problem, you will analyze such effects. Assume there is a car moving at 36 km/hr and you record the car using a film, which traditionally records at 24 frames per second. The tires have a diameter of 0.4244 meters. Each tire has a white mark to gauge the speed of rotation. (15 points)
CourseNana.COM

·  If you are watching this projected movie in a theater, what do you perceive the rate of tire rotation to be in rotations/sec? (3 points) CourseNana.COM

·  If you use your camcorder to record the movie in the theater and your camcorder is recording at one third film rate (ie 8 fps), at what rate (rotations/sec) does the tire rotate in your video recording (6 points) CourseNana.COM

·  The driver decides to participate in race, and buys tires that safely allow a max speed of 180 km/hr. What must be the diameter of the tire if no temporal aliasing needs to be witnessed in the recording? (6 points) CourseNana.COM


CourseNana.COM

Programming Part (120 points) CourseNana.COM


This assignment will help you gain a practical understanding of Quantization and Subsampling to analyze how it affects visual media types like images and video. CourseNana.COM


We have provided you with a Microsoft Visual C++ project and a java class to display two images side by side (original on the left and a processed output on the right). Currently both left and right correspond to the same input image. You are free to any of these as a start.
CourseNana.COM

Your program will be invoked using seven parameters where CourseNana.COM

YourProgram.exe C:/myDir/myImage.rgb Y U V Sw Sh A CourseNana.COM

·  The first parameter is the name of the image, which will be provided in an 8 bit per channel RGB format (Total 24 bits per pixel). You may assume that all images will be of the same size for this assignment (HD size = 1920wx1080h), more information on the image format will be placed on the class website CourseNana.COM

·  The next three parameters are integers control the subsampling of your Y U and V spaces respectively. For sake of simplicity, we will follow the convention that subsampling occurs only along the width dimension and not the height. Each of these parameters can take on values from 1 to n for some n, 1 suggesting no sub sampling and n suggesting a sub sampling by n CourseNana.COM

·  The next two parameters are single precision floats Sw and Sh which take positive values < 1.0 and control the scaled output image width and height independently. CourseNana.COM

·  Finally a integer A ( 0 or 1) to suggest that antialiasing (prefiltering needs to be performed). 0 indicates no antialiasing and vice versa CourseNana.COM

Example invocations shown below should give you a fair idea about what your input parameters do and how your program will be tested. CourseNana.COM

1. YourProgram,exe image1.rgb 1 1 1 1.0 1.0 0 CourseNana.COM

No subsampling in the Y, U or V, and no scaling in w and h and no antialiasing, which implies that the output is the same as the input CourseNana.COM

2. YourProgram,exe image1.rgb 1 1 1 0.5 0.5 1 CourseNana.COM

No subsampling in Y, U or V, but the image is one fourth its original size (antialiased) CourseNana.COM

3. YourProgram,exe image1.rgb 1 2 2 1.0 1.0 0 CourseNana.COM

The output is not scaled in size, but the U and V channels are subsampled by 2. No subsampling in the Y channels. CourseNana.COM

Now for the details - In order the display an image on a display device, the normal choice is an RGB representation. Here is the dataflow pipeline that illustrates all the steps. CourseNana.COM

CourseNana.COM

Conversion of RGB to YUV CourseNana.COM

Given R, G and B values the conversion from RGB to YUV is given by a matrix multiplication CourseNana.COM

Y                                  0.299 0.587 0.114     R CourseNana.COM

U          =                      0.596 -0.274 -0.322 G CourseNana.COM

V                                  0.211 -0.523 0.312   B CourseNana.COM

Remember that if RGB channels are represented by n bits each, then the YUV channels are also represented by the same number of bits. CourseNana.COM

Conversion of YUV to RGB CourseNana.COM

Given R, G and B values the conversion from RGB to YUV is given by the inverse matrix multiplication CourseNana.COM

R                                  1.000 0.956 0.621     Y CourseNana.COM

G          =                      1.000 -0.272 -0.647 U CourseNana.COM

B                                  1.000 -1.106 1.703   V CourseNana.COM

Sub sampling of YUV & processing CourseNana.COM

Sub sampling, as you know will reduce the number of samples for a channel. Eg for the input parameters CourseNana.COM

YourProgram.exe image1.rgb 1 2 2 256 CourseNana.COM

In this example, the YUV image is not subsampled in Y, but by 2 in U and by 2 in V resulting in CourseNana.COM

When converting back to the RGB space, all the YUV channels have to be of the same size. However the sampling throws away samples, which have to be filled in appropriately by average the neighborhood values. For example, for the above case a local image area would look like CourseNana.COM

  CourseNana.COM

Y11U11V11         Y12                   Y13U13V13 Y14         . . . . . CourseNana.COM

line 1 CourseNana.COM

Y21U21V21         Y22                   Y23U23V23 Y24         . . . . . CourseNana.COM

line 2 CourseNana.COM

Y31U31V31         Y32                   Y33U33V33 Y34          . . . . . CourseNana.COM

line 3 CourseNana.COM

Y41U41V41          Y42                  Y43U43V43 Y44         . . . . .   CourseNana.COM

  CourseNana.COM

line 4 CourseNana.COM

The missing values may be filled in using filters. Here is an example CourseNana.COM

U12 = (U11 + U13)/2                 V12 = (V11 + V13)/2 CourseNana.COM

U14 = (U13 + U15)/2                 V14 = (V13 + V15)/2 CourseNana.COM

Or you may choose to invent your own filter using appropriate valid neighborhood samples CourseNana.COM

Y11U11V11           Y12U12V12           Y13U13V13           Y14U14V14           . . . . . CourseNana.COM

line 1 CourseNana.COM

Y21U21V21          Y22U22V22           Y23U23V23           Y24U24V24            . . . . . CourseNana.COM

line 2 CourseNana.COM

Y31U31V31           Y32U32V32           Y33U33V33           Y34U34V34           . . . . . CourseNana.COM

line 3 CourseNana.COM

Y41U41V41            Y42U42V42           Y43U43V43           Y44U44V44           . . . . . CourseNana.COM

line 4 CourseNana.COM

Note the samples that you take to fill in values will change depending on the subsampling parameters. The YUV components can now be converted to RGB space. CourseNana.COM

Scaling with Antialiasing CourseNana.COM

Your output image width and height will change to a new (smaller) value depending on scale factors Sw and Sh. You will need to create the output image by resampling the input image. This can be achieved by inverse mapping all destination pixel indexes [i,j] to their source location indexes. Depending on whether you need to perform antialiasing the destination resampled pixel value can be the value of your inverse mapped source pixel (A=0) or the average of small neighborhood around the inverse mapped source pixel (A=1). To compute the average, you may use a 3x3 kernel. CourseNana.COM

What should you submit ? CourseNana.COM

·  Your source code, and your project file or makefile, if any, using the submit program. Please do not submit any binaries or data files. We will compile your program and execute our tests accordingly. CourseNana.COM

·  Along with the program, also submit an electronic document (word, pdf, pagemaker etc format) using the submit program that answers the fore-mentioned analysis questions. You may use any (or all) input images for this analysis. CourseNana.COM


CourseNana.COM

  CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
CSCI 576代写,USC代写,Multimedia Systems Design代写,University of Southern California代写,C++代写,Java代写,YUV代写,Quantization代写,Subsampling代写,CS 576代写,Pipeline代写,CSCI 576代编,USC代编,Multimedia Systems Design代编,University of Southern California代编,C++代编,Java代编,YUV代编,Quantization代编,Subsampling代编,CS 576代编,Pipeline代编,CSCI 576代考,USC代考,Multimedia Systems Design代考,University of Southern California代考,C++代考,Java代考,YUV代考,Quantization代考,Subsampling代考,CS 576代考,Pipeline代考,CSCI 576help,USChelp,Multimedia Systems Designhelp,University of Southern Californiahelp,C++help,Javahelp,YUVhelp,Quantizationhelp,Subsamplinghelp,CS 576help,Pipelinehelp,CSCI 576作业代写,USC作业代写,Multimedia Systems Design作业代写,University of Southern California作业代写,C++作业代写,Java作业代写,YUV作业代写,Quantization作业代写,Subsampling作业代写,CS 576作业代写,Pipeline作业代写,CSCI 576编程代写,USC编程代写,Multimedia Systems Design编程代写,University of Southern California编程代写,C++编程代写,Java编程代写,YUV编程代写,Quantization编程代写,Subsampling编程代写,CS 576编程代写,Pipeline编程代写,CSCI 576programming help,USCprogramming help,Multimedia Systems Designprogramming help,University of Southern Californiaprogramming help,C++programming help,Javaprogramming help,YUVprogramming help,Quantizationprogramming help,Subsamplingprogramming help,CS 576programming help,Pipelineprogramming help,CSCI 576assignment help,USCassignment help,Multimedia Systems Designassignment help,University of Southern Californiaassignment help,C++assignment help,Javaassignment help,YUVassignment help,Quantizationassignment help,Subsamplingassignment help,CS 576assignment help,Pipelineassignment help,CSCI 576solution,USCsolution,Multimedia Systems Designsolution,University of Southern Californiasolution,C++solution,Javasolution,YUVsolution,Quantizationsolution,Subsamplingsolution,CS 576solution,Pipelinesolution,