I am working on an image with a few objects, and it is crucial to know which measurement comes from which object. Is there any way to do it here with Python? You did not cover this in the video.
@sophiecohen-bodenes2813 жыл бұрын
Great tutorial! Very clear and helpful ! Thanks for sharing and making it accessible !
@NamburiAasrithVarmaAP2 жыл бұрын
where is this code
@Tasrif-UlAnwar Жыл бұрын
Thank you very much for the tutorials. I have used software previously to do analysis, but now trying to do it via Python. In my data, I have some surface-connected features that I do not want to remove. But, the issue is, that as these features are surface-connected, they are getting the same class as the background. I have tried closing operation, diameter closing operation but it is not working. What should I do to solve this?
@sarathkumar-gq8be Жыл бұрын
hi sir, i have doubt, in csv file area column represents the area of real world image??
@jonathancardenas40932 жыл бұрын
Dr. Sreenivas, your video came just at the right time to my project progress. Thanks a lot for your contribution. I have one question: What if I want to take to objects that are close together as one singles object? The problem right now is that the output dictionary is giving me to many objects. I would like to consider as one the objects which are closed together.
@ZEISS_arivis2 жыл бұрын
You can perform some image processing operations like dilate and erode to connect disconnected objects.
@quenoism4 жыл бұрын
Your tutorials are amazing and very useful! Many thanks :))
@ZEISS_arivis4 жыл бұрын
Glad you think so!
@novaes062 жыл бұрын
great tutorial, thank you. Is it possible to measure 3D objects?
@ZEISS_arivis2 жыл бұрын
Yes. Regionprops can handle 3D arrays and will give you volume, centroids, etc.
@abhukk3 жыл бұрын
thank you. I am working on Multiplexed imaging data and this is very informative.
@nimeshkumar36633 жыл бұрын
i have an input image and i get this as a area Label: 1 Area: 8120 Label: 2 Area: 6614 Label: 3 Area: 366 Label: 4 Area: 3 Label: 5 Area: 21 Label: 6 Area: 1 Label: 7 Area: 5 Label: 8 Area: 5 I want know how can i label these area to an image to see which area is label 1, label 2 etc...
@ZEISS_arivis3 жыл бұрын
You can extract Bounding box dimensions along with many other measurements. The bounding boxes can be used to crop your original image and display the exact object of interest.
@elijahturatsinze15764 жыл бұрын
Thanks for this informative videos, but I want to know how can we measure the overlapped objects in an image ?
@ZEISS_arivis4 жыл бұрын
You need advanced segmentation techniques such as deep learning based instance segmentation to properly separate overlapped objects. Or you can simply use watershed to separate the overlapped objects but it literally draws a line between connected pixels.
@psi7753 жыл бұрын
One of my properties is 'coords'. I received ndarray as my result. May I ask why there are 6 coordinate values?
@psi7753 жыл бұрын
3 of the coords are almost similar and another 3 also almost similar to each other.
@ZEISS_arivis3 жыл бұрын
I do not have experience with coordiantes, I believe it is depreciated in the latest version of scikit-image. In any case, the only explanation I can think of would be that you have an RGB image with 3 channels and it is reporting pairs of x, y coordinates corresponding to each channel, hence the reason why they may be exactly the same.