How to convert the color image into binary sequence?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Bhavneet Sharma
el 2 de Mzo. de 2019
Comentada: Walter Roberson
el 3 de Mzo. de 2019
I am M.Tech scholar and working on watermarking. I imported color immage of size 512*512 and i want to convert that color image into binary sequence and that sequence has used in embedding of watermark.
Then, how to convert image into binary sequence?
0 comentarios
Respuesta aceptada
Walter Roberson
el 2 de Mzo. de 2019
Provided that your image is not logical() [possible for some black and white images in some image formats], and is not character or string (no known image file formats) then
binary_sequence = reshape(dec2bin(typecast(YourImage, 'uint8'), 8) - '0', 1, []);
This will not have any watermark embedded in it: this is what you use to get a binary sequence of the watermark in preparation for embedding it into an image.
The way to embed bits in an image depends upon your embedding technique and data class, but often involves bitset()
2 comentarios
Walter Roberson
el 3 de Mzo. de 2019
The output of dec2bin() of uint8 with 8 as its second argument is going to be a something by 8 character vector of characters '0' and '1' . When you subtract '0' from that you get the offset from '0', which will be numeric 0 (if the character was '0') or numeric 1 (if the character was '1'). So after subtracting, the character array of '0' and '1' will be changed to a something by 8 numeric array of 0 and 1 values.
reshape(values, 1, []) converts the something by 8 numeric array into a 1 by (something*8) numeric array -- a row vector.
Note that the bits for any particular input value might end up separated by a fair bit: this particular code does not attempt to hold together the bits that were originally together. To do that you would .' before the reshape()
Más respuestas (2)
gonzalo Mier
el 2 de Mzo. de 2019
I suppose you have a filter of color of [100,150,30], so to convert the image M you can do:
sol = squeeze( M(:,:,1) > 100 & M(:,:,2) > 150 & M(:,:,3) > 30 )
1 comentario
Walter Roberson
el 2 de Mzo. de 2019
This would be a form of conversion from color to black and white, which is not what was being asked about.
Image Analyst
el 2 de Mzo. de 2019
I do that in my attached demo.
For more info, click the tag on the right that says "watermark".
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!