Discrete Cosine Transform (DCT).
0
votes
0answers
8 views
applying DCT coefficient for audio signal
i tried to apply DCT for audio signal.
the signal is mono, sampling rate is 8 kHz, number of sample in audio is 32. what is the number of DCT coeffcient for 32 block size. and what is the value of ...
0
votes
0answers
19 views
DCT for embedding in MATLAB
I use the DCT for embedding process in something like the following code
`im1=imread('test.jpg');
alpha=0.01;
[r c]=size(im1);
im2=dct(im1);
count=0;
w='watermark will be here';
for i=1:r
for j=1:c
...
-1
votes
0answers
6 views
Convert jpeg RGB to YCrCb using javascripT
This is a code to convert RGB to Ycrcb using javascript two method used.
gets the pixel and done Math.round for d, d+1, etc... only d is enough to play with Y'
For this to work check this comment ...
0
votes
1answer
13 views
FFTW fftwf_plan_r2r_2d() with FFTW_REDFT01 equivalent
I am trying to port code that uses FFTW to use KissFFT.
The code uses fftwf_plan_r2r_2d() with FFTW_REDFT01.
What would be the equivalent call in KissFFT?
If this call (with FFTW_REDFT01) is ...
-1
votes
0answers
24 views
Integer dct in MATLAB [closed]
I am working with dct and idct functions and try to use them for a watermarking process. The problem is that after performing the embedding process I need the results to be in the integer datatype ...
0
votes
0answers
20 views
DCT image compression - coeficient bit size
If I have 8bit input image and do DCT on it, I got real number coeficients (at least 32bit/16bit). Then I perform quantization using classic JPG quantization matrix. Are resulting quantized ...
0
votes
0answers
14 views
How to tell if image is forged from DCT Matrix
I'm wondering if it's possible to tell if an image is forged or not from the DCT matrix of a 8x8 block.
What tests do I have to run to determine this?
For instance say I have this block
_ ...
-1
votes
1answer
32 views
Why this implementation of Foward DCT of Loffler's version doesn't work?
I'm trying to implement the Loeffler's version of 1D DCT but without any results... I followed the chain of operations shown in the flow diagram, but the image becomes white :( What I'm doing wrong?
...
0
votes
2answers
48 views
discrete cosine transform using VHDL
Am working on discrete cosine transform using VHDL. Am trying to convert the VHDL code from integer to standard logic vector. I applied some of the techniques i read online and from textbooks but it ...
0
votes
0answers
23 views
White image while using idct2 on the dct2 of an image in matlab?
I am trying to implement a paper which requires image encryption. A friend suggested I use the inbuilt dct2 function for this purpose. When I take the dct of an image, it works fine. But when I take ...
0
votes
1answer
29 views
Discrete cosine transform library in Java
Is there a DCT library in Java which computes DCT in logarithmic time? I read that DCT can be computed with FFT algorithms, so there should also be a logarithmic time algorithm for dct.
1
vote
2answers
104 views
why DCT transform is preferred over other transforms in video/image compression
I went through how DCT (discrete cosine transform) is used in image and video compression standards.
But why DCT only is preferred over other transforms like dft or dst?
0
votes
0answers
45 views
Video encryption by exploiting the DCT coefficients
I am working with video encryption project by exploiting the DCT coef. I have to go through following process:
Get a frame from video
Apply DCT on frame of 8 x 8 block
Xor the first 8 pixels in each ...
1
vote
1answer
119 views
How to get dct of an image in python using opencv
I've been trying to figure out a way of getting a DCT of image. After getting the image and doing a bunch of filtering, I want to calculate DCT. Following is the code sniplet:
imgcv1 = ...
0
votes
1answer
102 views
how to random dc?
i want to make an image scrambling using DCT in matlab. i used a grayscale image. i want to random dc with random value. how to set the DC coefficient of each block to a random
value 0-255 and leave ...
2
votes
1answer
228 views
Jpeg DCT and IDCT not calculated properly
I'm trying to calculate DCT and IDCT of an input image, and display the IDCT output as resultant image. But my IDCT values are going above 300. My input image is a '.rgb' image.
I am also considering ...
1
vote
0answers
339 views
DCT method implementation for image steganography
I need to implement a program that embeds text message inside an image (PNG or BMP it doesn't matter) using DCT matrix for hiding message. I read some articles but most of them very complex. Here is ...
0
votes
0answers
42 views
Masking in DCT Compression
I am trying to do image compression in DCT. Can someone please help me understand how masking affects bit per pixel in DCT? How is the bit allocation done in the masking?
PS: By masking i mean ...
0
votes
0answers
47 views
Explanation to do with image bitrate(bpp) allocation
I would like someone to help me with an explanation of how bit allocation is done in the DCT image compression technique. I have tried to read a few papers but i haven't found one which clearly ...
0
votes
0answers
993 views
Image compression using DCT
I have performed DCT on a 256*256 greyscale image and saved the compressed coefficients in "Compressed.mat" file(Matlab R2007b). in this code i load the file, which is a 32*32 structure, and try to ...
0
votes
0answers
187 views
Inverse DCT Decompression
I am trying to implement the DCT image decompression by reading an already compressed file from a folder. However i am getting some errors. could someone please tell me where i am going wrong? The ...
0
votes
1answer
53 views
Should I Huffman Encode a single frame, a colour channel of that frame or an 8x8 macroblock?
Further to my question a couple of days ago about the DCT based Video Encoding Process
I have DCT, quantization, zigzag and RLE steps that seem to be outputting sensible values so I now need to know ...
0
votes
2answers
172 views
DCT based Video Encoding Process
I am having some issues that I am hoping you will be able to clarify. I have self taught myself a video encoding process similar to Mpeg2. The process is as follows:
Split an RGBA image into 4 ...
2
votes
1answer
241 views
Scipy's fftpack dct and idct
Let say you use the dct function, then do no manipulation of the data and use the invert transform; wouldn't the inverted data be the same as the pre-transformed data? Why the floating point issue? Is ...
0
votes
1answer
169 views
Saving quantized coefficients to file
I am trying to read an image, DCT transform it, quantize it, and then save the quantized coefficients to a file that will be read into a fractal encoding program.
When I decode the file (with the ...
3
votes
1answer
356 views
Use Python's Scipy DCT-II to do 2D or ND DCT
I would like to use scipy's DCT-II since it is already coded and fast. Looking at the doc, it seems it is the 1D implementation. Is it possible to use it in such a way to use it as a 3D ...
0
votes
1answer
206 views
DCT coefficients changed after JPEG saved to ios photo library
There is a strange change when saving JPEG image to the iOS photo library. I don't know if I am doing something wrong.
I'm using libjpeg-turbo to access JPEG images and then I modify DCT coefficients ...
1
vote
1answer
112 views
CUDA DCT works only when blockDim.x is 1
I'm just starting learning CUDA and knows only very basic stuff. I'm trying to develop a CUDA program that does 8x8 DCT using matrix multiplication method. An 8x8 DCT coefficient matrix D is computed, ...
0
votes
1answer
153 views
Acess DCT coefficients and Quantization values with libJPEG
I am reading a bitmap file and compressing it into a JPEG file using the libJPEG library, simple enough. But now I would like to write each of the intermediate stages, ie DCT and Quantization to a ...
3
votes
1answer
119 views
What are the input values for DCT?
So I am trying to write a simple bmp to jpeg image converter program. As you may know there are 3 major steps involved in jpeg compression, DCT, Quantization and entropy encoding. I want to write the ...
1
vote
1answer
666 views
DCT 2D without FFT
I'm trying to implement DCT (Discrete Cosine Transform) in Matlab but without using Fast Fourier Transform, just by using the next formula:
I know this can be inefficient but this way I will get how ...
2
votes
0answers
94 views
More flexbility with Discrete Cosine Tranform for Image Hash
I'm using the concept of a perceptual hash for my images. It works well using the DCT as the underlying maths.
I get good matches for images which are the same bar some "attack" i.e. aspect ratio, ...
0
votes
0answers
210 views
Feature rich, fast free fourier C/C++ library available for closed source commercial use [closed]
This is a problem I expect others have run into and solved. There are many fast fourier libraries out there. Many may not include features like the inclusion of a fast discrete cosine transformation ...
1
vote
1answer
658 views
Concise implementation of DCT, DFT in C#?
I have been looking at various implementations of Discrete Cosine Transforms and Discrete Fourier Transforms implemented in C#, yet none is as concise as I would like.
A bonus point would be, code ...
12
votes
2answers
367 views
Is there an equivalent of the matlab 'idealfilter' for Python in Scipy (or other libraries)?
I am looking for an equivalent of the time series idealfilter that is implemented in Matlab, for Python.
My goal is to implement an ideal filter using Discrete Cosine Transform as is used in the ...
0
votes
1answer
67 views
How can we migrate inventory of files and components from one teamsite server to another? (unix box)
I have certain list of files (and components).
We basically have two environments - test and prod.
The new site has been set up in test and needs to migrate to prod.
Any way to do this? Also does ...
1
vote
1answer
104 views
Branchless generation of IDCT matrix?
I have some code that performs the IDCT on the GPU. I've noticed that it seems to be faster to generate the IDCT matrix on the gpu, rather than pre-computing the transformation matrix and putting it ...
1
vote
0answers
196 views
jpeg dct coefficients
In jpeg image compression, what is the effect of increasing block size on the values of DCT coefficients statistically ? for example increasing block size from 8x8 to 16x16.
I expect the coefficients ...
0
votes
0answers
102 views
Equivalence between 3-points DCT and HSV color transform
I was looking to perform a color decorrelation on a RGB image. I know that various color spaces present various decorelation power, used notably to perform image compression.
The optimal ...
0
votes
1answer
249 views
Jpeg quantization table (16x16)
I try to study jpeg image compression. I've got one problem for quantization step, I am not able to find quantization table for matrices 16x16. I am searching for the matlab code for JPEG ...
3
votes
1answer
742 views
How to perform a *Fast* DCT (Discrete Cosine Transform) in R?
Using Rprof revealed the dct in the dtt package to be the main offender in a piece of R code that was running quite slowly. Swapping it out for fft in the stats package (which is not the same ...
1
vote
0answers
200 views
libjpeg, access to DCT coefficients after quantization, but before entropy coding
I need access to the DCT coefficient tables after the quantization (jpeg_write_scanlines?), but before the Huffman entropy coding, and before writing the file to disk. Is that possible with libjpeg? I ...
0
votes
1answer
302 views
quantization of dct image for steganography
I hav a greyscale image. I did 8x8 blocks and computed each of their DCTs. I want to quantize the DCT coefficients and then replace their LSBs with my secret message bits. How exactly do I quantize ...
1
vote
0answers
165 views
DCT2 of png using jTransforms
What I'm trying to do is to compute 2D DCT of an image in Java and then save the result back to file.
Read file:
coverImage = readImg(coverPath);
private BufferedImage readImg(String path) {
...
0
votes
2answers
484 views
Why JPEG compression processes image by 8x8 blocks?
Why JPEG compression processes image by 8x8 blocks instead of applying Discrete Cosine Transform to the whole image?
1
vote
1answer
421 views
MATLAB dct2/idct2 vs. dctmtx
There are two alternative methods to compute DCT and its inverse in MATLAB. One is dct2/idct2 and the other is the transformation matrix computed by dctmtx. Why is there an alternative way based on ...
0
votes
1answer
837 views
JPEG compression and decompression over and over again
I'm fairly new to Matlab and image and signal processing. What I have so far is that I'm able to read in an image and perform a DCT conversion and fill this into a matrix and then reconstruct an image ...
1
vote
2answers
818 views
How convert JPEG to DCT 8 x 8?
How can I convert JPEG images to DCT 8x8 using OpenCv and C++?Like where do I start exactly?
1
vote
1answer
929 views
DCT implementation for H.264
I am implementing DCT on video for H.264. I have read through a few books, and have followed the coefficients that they specify. Even with all that, i don't seem to be getting the right image when i ...
0
votes
2answers
182 views
Are there image processing libraries for PHP that'd allow manipulating images on a pixel by pixel basis like MATLAB?
I'm working on a project that might require me to compute the DCT of the image. Hence the question.


