How to take blocks in bit plane encoding ?
이전 댓글 표시
I am having 4096 blocks ,in which one block is having 64 coefficients ?I need to pass it to a bit plane encoder .My input image is of 8-bit.I dont know how to process this in matlab.Please help me in this regard.
댓글 수: 4
Walter Roberson
2013년 8월 16일
Are you trying to figure out how to break up your image into 4096 blocks? Is each block to be a fixed size?
Pooja
2013년 8월 16일
Walter Roberson
2013년 8월 16일
Okay, so what is the step you feel you are missing?
Pooja
2013년 8월 16일
답변 (1개)
Walter Roberson
2013년 8월 16일
0 개 추천
If you are looking to convert a numeric image into binary, then there are arithmetic methods, or you can use dec2bin()
댓글 수: 4
Walter Roberson
2013년 8월 16일
You can use dec2bin() to decompose into bit planes. Or you can use bitget(TheArray, K) where K is 1 to 8.
Pooja
2013년 8월 16일
Walter Roberson
2013년 8월 16일
blockbits{BlockNumber} = {BitPlane1, BitPlane2, BitPlane3, BitPlane4, BitPlane5, BitPlane6, BitPlane7, BitPlane8};
Pooja
2013년 8월 16일
카테고리
도움말 센터 및 File Exchange에서 Neighborhood and Block Processing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!