i am new in matlab, and i got final project to make digital image steganography using combination DWT and DCT. in this project i use 2-L DWT and then 8x8 block DCT and embed the image by using DCT.
here are my questions :
- how to choose LH sub-band in matlab code?
- how to embed image in cover image in 8x8 block dct with step by step explanation?
Dwt is the algorithm used to reduce dimensionality of image so it used for image compression, feature extraction process. DWT algorithm decomposes the image into 4 subband (subimage) ie,LL,LH,HL,HH. dwt output extract the detailed ouput of input image. LL is the approximate image of input image it is low frequency subband so it is used for further decomposition process.. LH subband extract the horizontal features of original image HL subband gives vertical features HH subband gives diagonal features
LH,HL,HH are high frequency subbands