Ma'am, I watched ur DIP tutorial video 5, to convert image into bit plane. when we combined all the images then we need to convert it back to uint8 to show image, but when we showed c0, directly by imshow(c0); without conversion, please explain why?
Ma'am, what if we don't use floor function? I've tried obtaining the same without it, i.e a7= mod((ad/128),2); for obtaining MSB and I am getting a more clear image than the previous one, the floor one. Can you please explain, what exactly the floor function does.
Ma'am, Please Help me out of this error in matlab R2013a my image is stored in a and I am doing this operation down below >> b = a>78; >> imshow(b); -->>IT IS SHOWING ME THIS ERROR MESSAGE Error using imageDisplayValidateParams>validateCData (line 121) If input is logical (binary), it must be two-dimensional. Error in imageDisplayValidateParams (line 31) common_args.CData = validateCData(common_args.CData,image_type); Error in imageDisplayParseInputs (line 79) common_args = imageDisplayValidateParams(common_args); Error in imshow (line 220) [common_args,specific_args] = ...
Hello ma'am, thanks for ur videos. They r gr8..but I have a doubt. I am little confused when to typecast into double or uint8 as you mentioned that in order to display it, we should convert it back into uint8 but when you display all bit plane images from LSB to MSB, (like you used imshow(c0) ) you didn't convert them into uint8, but all operations were done in double type, so how it displays properly? Can you plz explain me?
Nice observation. Please explain this. If you convert c0 to uint8 and display them, you will see black. Every extracted bit needs to be displayed in double and their combination 0..255 needs to be converted to uint8. Why is this so?
imshow() for double expects values between 0 and 1 to display , which is mentioned in video at 0.53 sec , in second video there is data ranges for different data types : greyscale - unit 8 - (0,255) , double precision float -(0.0 to 0.1) so, Here c0 to c7 all are in between 0 and 1 with having variation at significant figures, so as imshow(c0) and etc displays respective figure with respect to their planes.so here no need to convert them to unit8 as to display images having values within 0 and 1 in DOUBLE datatype for imshow. but when combined all the pictures gives image of grey scale with datarange (0,255) which is in double but as imshow expects b'n 0 and 1 values in double, which cant get from grey scale, so it showing white image. so in order to get actual image, we are using unit8 data type.
Hello Rashi, I would like to contact you. I'm using the IPT to process information obtained from an infrared sensor but I'm having trouble with the visualization of the images. Regards. Florencia
hello and thank you very much for making these videos they are great. i got a question, when you create the second plane what do you mean by shifting it one to the left, why did you divide by these numbers and not others? thank you in advance
mam i tried to extract the bitplanes of a rgb image and i succeeded. but i have a doubt- why dont we convert the individual bit planes to uint8 before displaying. as told in the first part of the lecture why are we not getting an error by doing this. i tried to convert the bitplanes to uint8 before showing them in the figure but i got completely black images. can you tell why this happened although going by the first part of the lecture it should not have happened
u need to explore..u could use hough transform for circle detection for finding iris...add a similar size constraint and a symmetry constraint for a start...
thanks,that was really helpful.can you tell me how could i scan an image in different pattern? like by default matlab scans with raster pattern, but what if i want to scan it with spiral scan pattern or diagonal pattern or orthogonal pattern? it will be very helpful if u help me out with this. -- snehashis
Hellow Madam, I am working on DIC. have taken set of images of specimens before and during loading. I am using Digital image correlation and tracking with matlab., by Eberl, C., Thompson, R. and Gianola, D www.mathworks.com/matlabcentral/leexchange/12413. Now I want to know, how to convert the deformations from pixels to mm.
Thank you for sharing such a useful lecture. I have successfully employed the bit planes idea in my research.
Respect from PAKISTAN.
ma'am, your class is very much useful. clear n clean.
Thanks! You could run PCA on your template database to generate an orthogonal template basis
Awesum explaination Rashi.. well done !!
Great video. This was extremely helpful.
glad to hear that!
Love the video and the accent is so cute.. thanks
Why do we take 159 decimal value as a basis to our bit plane extractions?
Great work, Thanks for sharing knowledge.
Great Work Sista!
How the conversion of gray level image to RGB is Possible as the gray level image only stores a matrix?
did you have any video on semi fragile watermarking?
Excellent Explaination!!
Thanks .
When i put more values to show the image like c7,c8,c9. The matlab says the image its too big. I dont get it.why tis occur??
can anyone tell which calculator she is using @ 7:45
is cascade image detector ,gray thresh function,face classifier module features available on Matlab R2010a
Ma'am, I watched ur DIP tutorial video 5, to convert image into bit plane.
when we combined all the images then we need to convert it back to uint8 to show image, but when we showed c0, directly by imshow(c0); without conversion, please explain why?
Do you have videos for image transmission ;since i have been working on li-fi image transmissiomn project
Ma'am, what if we don't use floor function? I've tried obtaining the same without it, i.e a7= mod((ad/128),2); for obtaining MSB and I am getting a more clear image than the previous one, the floor one. Can you please explain, what exactly the floor function does.
if i want to extract a picture with color from an image(e.g extract a butterfly from an image) , what method do you suggest?
you saved my day thank you so much
how to find bit planes without using any standard matlab function?
Rashi, thanks for this video. I transferred the image to gray scale, but now I want to put a black rectangle on the eyes how to make that? Thanks
Ma'am, Please Help me out of this error in matlab R2013a
my image is stored in a and I am doing this operation down below
>> b = a>78;
>> imshow(b);
-->>IT IS SHOWING ME THIS ERROR MESSAGE
Error using imageDisplayValidateParams>validateCData (line 121)
If input is logical (binary), it must be two-dimensional.
Error in imageDisplayValidateParams (line 31)
common_args.CData = validateCData(common_args.CData,image_type);
Error in imageDisplayParseInputs (line 79)
common_args = imageDisplayValidateParams(common_args);
Error in imshow (line 220)
[common_args,specific_args] = ...
brilliant work madam!!Thanx alot!!
Ma'am how can I remove the odd number stored values from an array of pixels?
Yo have a very beautiful voice ma'am. Apologies but couldn't stop myself from putting this compliment. :)
Can be perform the same bit operation on rgb image...??
hello .do you can learn image processing with out function?
Mam...Can you help me with Fingerprint recognition through matlab?
many thanks for sharing
Thank you very much. very useful video
u can use "bitget()" function to make that easy ^_^
Hello ma'am, thanks for ur videos. They r gr8..but I have a doubt.
I am little confused when to typecast into double or uint8 as you mentioned that in order to display it, we should convert it back into uint8 but when you display all bit plane images from LSB to MSB, (like you used imshow(c0) ) you didn't convert them into uint8, but all operations were done in double type, so how it displays properly? Can you plz explain me?
Nice observation. Please explain this. If you convert c0 to uint8 and display them, you will see black. Every extracted bit needs to be displayed in double and their combination 0..255 needs to be converted to uint8. Why is this so?
imshow() for double expects values between 0 and 1 to display , which is mentioned in video at 0.53 sec ,
in second video there is data ranges for different data types : greyscale - unit 8 - (0,255) , double precision float -(0.0 to 0.1)
so, Here c0 to c7 all are in between 0 and 1 with having variation at significant figures, so as imshow(c0) and etc displays respective figure with respect to their planes.so here no need to convert them to unit8 as to display images having values within 0 and 1 in DOUBLE datatype for imshow.
but when combined all the pictures gives image of grey scale with datarange (0,255) which is in double but as imshow expects b'n 0 and 1 values in double, which cant get from grey scale, so it showing white image.
so in order to get actual image, we are using unit8 data type.
helo do u hav matlab code for extraction of group of images into single one
How can I do it for uint 16 dicom images
thank you. this video help me
Hello Rashi,
I would like to contact you.
I'm using the IPT to process information obtained from an infrared sensor but I'm having trouble with the visualization of the images.
Regards.
Florencia
hello and thank you very much for making these videos they are great. i got a question, when you create the second plane what do you mean by shifting it one to the left, why did you divide by these numbers and not others? thank you in advance
i couldn't get the use of double clearly.
hello mam..i have a doubt can we pass images to a function for banarisation /enhancement...if so wat should be the arguments ??
You can refer to my lectures on enhancement, You can read the image as a 2d array and pass it to functions which operate on arrays.
mam are u talkin abt the one on bit plane extraction??
no..the ones for histogram stretching n equalisation
hello Aartika Sethi can i ask you ?
mam i tried to extract the bitplanes of a rgb image and i succeeded. but i have a doubt- why dont we convert the individual bit planes to uint8 before displaying. as told in the first part of the lecture why are we not getting an error by doing this. i tried to convert the bitplanes to uint8 before showing them in the figure but i got completely black images. can you tell why this happened although going by the first part of the lecture it should not have happened
very good, helping idea
Thank you ma'am
not able to find further vedios...
pls share the link if some1 finds it
ua-cam.com/play/PLEo-jHOqGNyUWoCSD3l3V-FjX9PnHvx5n.html
rashi agrawal are there any further videos uploaded by you after these 20 videos ???
vartika agrawal am in the process of making more as my course is progressing in the class
very helpful video mam..thanks a tonn..i have a doubt
how to get a green channel image from rgb image??
ry456 read a color image into variable 'a'. use : g = a(:,:,2); to extract green component
+rashi agrawal can you give your email i want to ask regarding my project
what does this 2 means here mam...??
mam can you pls help me out with one ques??
Suppose given an image of a human, how can we detect the position of its eye?
u need to explore..u could use hough transform for circle detection for finding iris...add a similar size constraint and a symmetry constraint for a start...
you can use some Machine Learning if you know them too. Or else simply use feature extraction or Circle Hough Transform for preliminary results.
really useful
madam I watched ur all videos , I have doubt with bacteria image ,that need to apply three colors for the bacteria cells . pls help me
awesome work...
can anyone tell me how to convert this matlab code to c or c++ code ??
please
thanks,that was really helpful.can you tell me how could i scan an image in different pattern? like by default matlab scans with raster pattern, but what if i want to scan it with spiral scan pattern or diagonal pattern or orthogonal pattern? it will be very helpful if u help me out with this.
-- snehashis
thanks,so much
Thank you
sister ,it will be very kind of you if you upload videos about how to extract text from images.I got stuck here in extracting connected componet
jen thiyam coming up soon
great
thanks for your video .
Mam rashi agrawal can i ask you please about enhancing arabic manuscripts??
madam plz make a video on hot spot detection of IR imagery in MATLAB plz plz plz plz
Hellow Madam,
I am working on DIC. have taken set of images of specimens before and during loading.
I am using Digital image correlation and tracking with matlab., by
Eberl, C., Thompson, R. and Gianola, D
www.mathworks.com/matlabcentral/leexchange/12413.
Now I want to know, how to convert the deformations from pixels to mm.
I'm from india, and I take computer science: generic indian slime comment
madam are you there , need some help and sent you a mail to your Gmail
Mam your explanation is not good I'm not able to understand please go from basics