related to image processing?
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
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 件のコメント
John D'Errico
2014 年 3 月 13 日
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.
回答 (1 件)
Image Analyst
2014 年 3 月 12 日
編集済み: Image Analyst
2014 年 3 月 12 日
0 投票
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?
0 件のコメント
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!