photo

IndianNigger


Last seen: 1 year ago Active since 2016

Followers: 0   Following: 0

Statistics

MATLAB Answers

4 Questions
1 Answer

RANK
226,744
of 301,116

REPUTATION
0

CONTRIBUTIONS
4 Questions
1 Answer

ANSWER ACCEPTANCE
50.0%

VOTES RECEIVED
0

RANK
 of 21,174

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 172,871

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Thankful Level 1

View badges

Feeds

View by

Question


I have segmented the file (I) into 4 parts (A, B, C, D) as shown in the matlab code below. How to rejoin theses file. Could u please help as I am working on medical images.
I=imread('cameraman.tif'); subplot 334 imshow(I); [r c p]= size(I); %r-rows,c-columns,p-planes A=I(1:r/2,1:c/2,:); B=I(1...

9 years ago | 1 answer | 0

1

answer

Question


Could you please tell me how to extract the particular bits from each bit map images. and a way to store all these constructed files, The matlab program of getting 8 bits map images is as follows
C = imread('cameraman.tif'); [Row Col] = size(C); Cbit = cell(1, 8); for bit = 1:8 Cbit{bit} = bitget(C, bit); ...

9 years ago | 1 answer | 0

1

answer

Question


I had partitioned the image ('cameraman.tif' )into 8-bit map images ( C1, C2, C3, C4, C5, C6, C7, C8) but unable to rejoin to get back the original image 'C' as shown below in the related code in the Body Section.
C=imread('cameraman.tif'); C1=bitget(C,1); figure, imshow(logical(C1));title('Bit plane 1'); C2=bitget(C,2); ...

9 years ago | 1 answer | 0

1

answer

Answered
How can I combine bit map images to get back the original grey scale image?
As per your reply ' Multiply bit plane 7 by 2^7, bit-plane 6 by 2^6, and so on. Then add them all up. The result is that I a...

9 years ago | 0

Question


How can I combine bit map images to get back the original grey scale image?
C=imread('cameraman.tif'); C1=bitget(C,1); figure, imshow(logical(C1));title('Bit plane 1'); C2=bitget(C,2); figure, imshow(...

9 years ago | 3 answers | 0

3

answers