Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~3K People Reached
Favorite Tags
Member Avatar for sandz24

Can anyone please explain to me how to compute DCT? I'm finding it hard to understand it. ![2D-DCT](/attachments/large/3/2D-DCT.png "2D-DCT") ![dct1](/attachments/small/3/dct1.png "align-right") I attached the formulas the Discrete Cosine Transform (DCT) and it's Inverse-DCT.

Member Avatar for white_pearl
0
774
Member Avatar for sandz24

#include <iostream> #include <vector> using namespace std; template< typename T > using matrix = vector< vector<T> > ; I saw this code snippet while searching for templates. I was wondering why there's a word "using". What is it for? Thanks :)

Member Avatar for sepp2k
0
164
Member Avatar for sandz24

Does anyone know the equivalent version of cvCreateImage in c++. I tried googling it but no luck. Thanks!!!

Member Avatar for Ancient Dragon
0
124
Member Avatar for sandz24

Can anyone discuss how to convert a jpeg color image into binary using OpenCv and C++. I find it hard understanding it on my own. I found sample programs but that really doesn't help much if I don't understand the meaning of every line of code. At least a step …

0
105
Member Avatar for sandz24

Does anyone know the process of DCT in relation to image watermarking? Finding it hard to understand the process any help would be appreciated.

Member Avatar for TrustyTony
0
95
Member Avatar for sandz24

Is it necessary to compress the host image after embedding the watermark?My host image (512 x 512) is bmp and the watermark is a binary image (63 x 63).

Member Avatar for Rashakil Fol
0
92
Member Avatar for sandz24

The first step in image watermarking using DCT is to divide the image into 8 x 8. My question is do I have to divide the image as a whole or divide them by RGB channels so that for each channel I will divide them by 8x8. Any comments will …

Member Avatar for sandz24
0
97
Member Avatar for sandz24

Hello everyone and good day!!! I'm trying to embedd an image watermark to another image for copyright protection and I plan to use DCT and embedding the watermark in the middle band coefficeint of the host image. The problem is I don't know which of the formulas to use since …

Member Avatar for raptr_dflo
0
905
Member Avatar for sandz24

I'm curios what happens to the size of the host image after an invisible watermark has been inserted. I'm guessing the size will increase but by how much? For example, the cover image to be inserted is 1kb and the host image is 2kb. Since your adding additional information the …

Member Avatar for sandz24
0
128
Member Avatar for sandz24

Which of the two (Binary Image and Gray scale image) is easier to embed in a color image using Discrete Cosine Transform? I'm currently exploring image watermarking using discrete cosine transform. Thanks in advance!!! :)

Member Avatar for sandz24
0
185
Member Avatar for sandz24

Is it possible to embed a colored image to another image using DCT? or does DCT support embedding gray scales and binary formats only?

0
82