I am working on ECG biometric, I have already found the R peaks using DWT(discrete wavelet Transformation).How can I obtain Q & S points from R peak using dwt?
If you have found R- peak, then you can find Q and S point by finding the PR Segment (i.e P-R interval for finding Q-point) and for S-point calculate the J -point before S-T segment.
Refer the link: http://uksim.info/ems2015/data/0206a080.pdf
a widely known and well described method to delineate ECG can be found here: https://www.ncbi.nlm.nih.gov/pubmed/15072211
However, you should be aware that most methods won't use the DWT but a stationary version of the WT (called stationary wavelet transform or even undecimated wavelet transform) because of its shift invariance which is important for an accurate delineation.
As you already got R peaks, now you have to locate Q-S point. Now you check the wavelet coefficients value near to R point in successive decomposition levels and try to correlate parent-child relation. The Q-R points reflect its presence by largest values coefficients near R point and parent-child relation.
I think it will work and eliminate noise effect by parent-child relation.