Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
6answers
1k views

Video Compression: What is discrete cosine transform?

I've implemented an image/video transformation technique called discrete cosine transform. This technique is used in MPEG video encoding. I based my algorithm on the ideas presented at the following ...
4
votes
1answer
2k views

Extracting DCT coefficients from encoded images and video

Is there a way to easily extract the DCT coefficients (and quantization parameters) from encoded images and video? Any decoder software must be using them to decode block-DCT encoded images and ...
3
votes
2answers
93 views

How does this implementation of 1D IDCT work?

I have an implementation of a Inverse Discrete Cosine Transform and I'm trying to figure out how they got to this code. So far, I've figured out that this is probably an optimized implementation of ...
3
votes
1answer
236 views

How do I apply a DCT to an image in Python?

I want to apply a Discrete Cosine Transform (as well as the inverse) to an image in Python and I'm wondering what is the best way to do it and how. I've looked at PIL and OpenCV but I still don't ...
3
votes
1answer
157 views

Discrete Cosine Transformation formula disparity

Well, I was programming something that required the use of DCT. I found 2 resources for the DCT formula: Mathworks Wikipedia Initially I used the wikipedia version of DCT-II. In the DCT-II section ...
2
votes
2answers
185 views

Discrete Cosine Transform DCT implementation C

Im trying to implement a forward and inverse Discrete Cosine Transform (DCT) in C. The code is to transorm a single input block of pixels to the transformation matrix via the dct() function and then ...
2
votes
1answer
400 views

Finding number of quantizing layers in MATLAB

I'm working on image processing, and I have an image that has been DCT'd and quantized for 8 x 8 blocks of the 512 x 512 matrix, now I have to find how many quantizing levels that the image has. Do I ...
2
votes
1answer
404 views

Java: Getting JPEG DCT coefficients histogram

I need a Java library, code snippet,... to get the Frequency distribution of the 64 DCT coefficients of a JPEG file. Any ideas? Thx!
2
votes
2answers
965 views

Need help on BMP to JPEG conversion

I'm writing a C++ program to convert a BMP image into a JPEG. Here's the basic algorithm I'm trying to follow: Convert RGB color space to Y,Cb,Cr.. Down sample Cb and Cr by 2 (that means for each ...
1
vote
1answer
34 views

Intel based hardware speed ups for DCT?

We are writing an image processing algorithm targeting some Intel hardware. Generally we prefer generic C implementations, but we have identified an algorithm that at its core does a ton of Discrete ...
1
vote
2answers
107 views

Looking for 8x8 (or nxn) Discrte Cosine Transform (DCT)/IDCT Pseudo-Code

I've been searching Google for a while now to find pseudo-code of a decently efficient 8x8 (or nxn) DCT algorithm, and I can't find anything! I implemented the naive approach, and it took far too ...
1
vote
0answers
43 views

Uncompression stops inbetween and output file filled with zeros(BLACK PIXELS)?

I am trying to apply DCT(discrete cosine transformation) compression on a bmp(bitmap) file. I have a c file which i am running in Turbo C++. The code is as follows: /* the image to be compressed is a ...
1
vote
0answers
69 views

vDSP and Discrete Cosine Transform

I am new to FFT, DCT and the like. Recently I was looking into the documentation for the vDSP library from Apple and was unable to find a DCT implementation. I was wondering if anyone knows of a way ...
0
votes
0answers
2 views

How can I find quantized coefficients from MATLAB using Sallee's code?

First, I admit that this is a homework question. However, I seem to be stuck. I need to get all quantized coefficients from a jpeg image using Phil Sallee's JPEG Toolbox (I'll be building a histogram, ...
0
votes
1answer
14 views

How to use function implemented in asm from *.cpp file, in VisualDsp++ 5, for Blackfin BF537?

I have this project explained in "Wiley-Embedded Signal Processing with the Micro Signal Architecture.2007" - 2D DCT/IDCT (image compression) implemented, and i want to combine (move these files to..) ...
0
votes
0answers
17 views

MPEG2 DCT values

This has reference to the MPEG2 reference code taken from: http://www.mpeg.org/pub_ftp/mpeg/mssg/mpeg2vidcodec_v12.tar.gz This codec implementation has a no. of different files and implements MPEG 2 ...
0
votes
0answers
11 views

DCT Coefficient Pixel Value, Edge Detection [migrated]

Getting the DCT coefficient based from what I read is usually done through a matrix, usually 8x8 or 16x16 using these formulas: However, I would like to know if it is possible to determine the ...
0
votes
1answer
90 views

Blackfin. 2D DCT/IDCT (image compression) with BF537 EZ-KIT, HOW TO WRITE TO FILE (on disk) reconstructed image (Raw pixel data) from BF537 memory?

I tried this experiment with Digital Image Processing - 2D DCT/IDCT (image compression) with BF537 EZ-KIT implemented by AnalogDevices. To mention a "resume": I build the project; Load an ...
0
votes
1answer
112 views

Trying to implement The inverse of a dct 8*8 matrix

I have managed to calculate the dct of an 8*8 matrix and I am having trouble doing the inverse. Can anyone have a look at this code and tell me what I am doing now. I should be getting the exact same ...
0
votes
1answer
151 views

MATLAB - Trouble of converting training data to spectrogram

I am a student and new to signal processing just few months ago. I picked "A Novel Fuzzy Approach to Speech Recognition" for my project (you can google for the downloadable version). I am a little ...
0
votes
0answers
77 views

Problem with MFCC

i'm stuck with mfcc implementation, i've already applied triangular windows to my frames to group them by frequency, so far, at this point everything goes ok, i also have an implementation of ...
0
votes
1answer
251 views

JPEG Extract DCT tables

I am developing an image viewer/editor using VS2008 ,MFC and WIC and I would like to recompress jpegs as closely (quality-wize) as possible to their original, after image processing. Does anyone know ...
0
votes
1answer
280 views

Range in DCT coefficents MATLAB

I am trying to find the range over which the coefficients of an 8 x 8 block varies for various block of an image. Do I need to generate a histogram for the values of is there a function in matlab?
0
votes
1answer
202 views

How to apply DCT on audio file in java?

I want a java code to apply DCT on an audio file. Kindly help asap !!
0
votes
1answer
178 views

Java parameter passing int[][]

I am trying to write a simple DCT algorithm in java. I want my findDCT method to have as a parameter an integer array like this: public class DCT { private Random generator = new Random(); ...
0
votes
1answer
954 views

DCT Compression - Block Size, Choosing Coefficients

I'm trying to understand the effect of the Block Size and best strategy of choosing the Coefficients in DCT compression. Basically I want to ask what I wrote here: ...
-1
votes
2answers
840 views

Problems with DCT and IDCT algorithm in java

Here I have my DCT algorithm class with "applyDCT" and "applyIDCT" methods. Technically after doing a forward DCT (discrete cosine transform) on a 2x2 table of random integers between 0 and 255, and ...