IndianNigger
Followers: 0 Following: 0
Estadística
CLASIFICACIÓN
273.841
of 295.527
REPUTACIÓN
0
CONTRIBUCIONES
4 Preguntas
1 Respuesta
ACEPTACIÓN DE RESPUESTAS
50.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.242
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 154.057
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
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...
casi 8 años hace | 1 respuesta | 0
1
respuestaPregunta
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); ...
casi 8 años hace | 1 respuesta | 0
1
respuestaPregunta
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); ...
casi 8 años hace | 1 respuesta | 0
1
respuestaHow 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...
casi 8 años hace | 0
Pregunta
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(...
alrededor de 8 años hace | 3 respuestas | 0