Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

related to image processing?

1 view (last 30 days)
aman
aman on 12 Mar 2014
Closed: MATLAB Answer Bot on 20 Aug 2021
hi, A threshold is defined as t=2^n, where n=floor(log2(max(A))); where A is the linear matrix. We would decrease n at each step (pass) by one. Each coefficient is tested against a threshold. Significance means the coefficient is greater than the threshold. For a newly significant coefficient it's sign bit is coded and the coefficient which is found significant in previous pass it's nth bit is sent.
The coefficients are the wavelet transformed values. suppose it is 8 so it's binary equivalent will be 1000. It's sign will be 1 and nth bit will be 1.By transmission I mean the output.Can any body help me in making this program?
  1 Comment
John D'Errico
John D'Errico on 13 Mar 2014
Please don't title every post of yours exactly the same "related to image processing". This is confusing and it does not help anyone else who may be able to learn from your post.

Answers (1)

Image Analyst
Image Analyst on 12 Mar 2014
Edited: Image Analyst on 12 Mar 2014
Can you give an example? I really don't understand what will happen with this: "I will transfer it's nth bit and the coefficient which is above t-1 in this check but was less than t, then I will transfer it's sign."
Let's say the number (pixel value) is 23 and the threshold is 15. What is the "nth bit"? What is "the coefficient"? How can you be above than t-1 (14) but less than t (15)? What is the sign you are taking- is it of the pixel value, the bit, or the threshold? And what is the sign anyway? Why is the sign not always positive??? And where are you transferring the sign to?

This question is closed.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!