Suppose i have to extract the area circled in white from the attached image. How can i do that in MATLAB?
I want to create an automatic way so that when i input different images, it extracts exactly the same area.
If you load an image into matlab, the data is stored in a matrix. You can then just extract a sub-matrix of the area you are interested in.
You can create a binary mask where it has 1 for a required pixel (pixels in circle area) and 0 for a non required pixel(pixels outside the circle).
Then you can just multiply the image with mask and get the required area.
% You can Mask the image using bsxfun() function maskedRgbImage = bsxfun(@times, rgbImage, cast(mask, 'like', rgbImage));
also have a look at this
https://in.mathworks.com/matlabcentral/answers/341305-how-to-impose-binary-mask-on-rgb-color-image
If you know center pixel coordinates (i.e. which pixel is you center for a circle) then you can just use a simple function to create structuring element in matlab.
strel('disk',r); where 'r' is radius of your circle.
I need a material that i can use as a background, so that when i take thermal images it appears black in colour? Any suggestions? Thanks.
01 February 2018 1,023 3 View
I have selected brain tumor images ...but now found that already lots of research done n this topic.
03 March 2021 5,774 3 View
i am try to classify the x-ray images. During classification , can i block unwanted images (except x-ray image).
03 March 2021 7,100 1 View
Need to image mesoporous silica nanoparticles using the TEM. Also, need high resolution TEM images to see the mesoporous structure. Kindly suggest what kind of grids to use. Thanks, Shatadru
02 March 2021 1,787 2 View
I have an input video, of skin (from a microscope that means it is magnified such that blood capillaries are visible). The idea is to extract 15 sec of continuous frames from a video of 1 min,...
02 March 2021 2,735 2 View
Dear Colleagues, After running Western blot on PVDF membrane and detection using ECL, I would like to stain my PVDF with colloidal gold to be able to allign the ECL image with total proteins on...
02 March 2021 7,829 3 View
I would like to research on MR images (0.5T and 3T). Can you please suggest some websites that I can download dataset including both 0.5T and 3T MR images? Thank you.
02 March 2021 7,735 3 View
I need a procedure to extract the ciprofloxacin hydrochloride from aqueous solution by using dichloromethane in detail,. I thank you very much.
01 March 2021 4,306 1 View
Dear Researchers I am trying to perform a PIL simulation using STM32F4 Discovery board and comunication serial USB TO TTL. During simulation I receive the following timeout error: An error...
01 March 2021 2,327 1 View
Hello, I have classified 10 S3 OLCI images from the same area (althouth not the same size and/or quadrant) and I would like to do a final image using the mode of the pixel of these 10 images. I...
01 March 2021 9,874 3 View
I want to find a quorum sensing inhibitor from plant extracts. Klebsiella pneumoniae, Moraxella catarrhalis, Staphylococcus aureus, and Streptococcus pneumoniae. I looked for these strains...
01 March 2021 7,675 3 View