Counting silk worm eggs or fish eggs
이전 댓글 표시
Hi,
I am working on counting the no of eggs laid by silkworm or fish eggs.
I am doing that with image segmantaion technique with all the filters and noise removal but i am not getting best accurate output. I have to make sure that syatem takes inly eggs in to consideration but not the background letters and distrbances.
Can anyone please help in this ? Do you have any good techniques to solve this issue?
The sample pic is attached

댓글 수: 4
KALYAN ACHARJYA
2020년 12월 15일
In fact I love these segmentation questions, although in RHS side has some challenges to get accurate results due to blurring/overlap.
javadhi srinuvas
2020년 12월 15일
Mangala Nageshwari
2021년 9월 17일
편집: Image Analyst
2021년 9월 18일
Can any one please share me source code for this counting fish eggs to my gmail mangalanagendramma@gmail.com?
Image Analyst
2021년 9월 18일
@Mangala Nageshwari, please start your own question and upload your own photo. Place your eggs on a contrasting background, like black velvet, or a vividly colored paper. We'll put it in Answers so everyone can benefit from it.
답변 (1개)
KALYAN ACHARJYA
2020년 12월 17일
편집: KALYAN ACHARJYA
2020년 12월 17일
You can try several approaches to see how much accuracy can be stated only after the results.
One Way:
hsv_im=rgb2hsv(im_data);
threshold=.... % around 0.58 to 6
worm_im=hsv_im(:,:,3)>threshold;

Nest steps Morpho operation,
- Remove the largest opject (Outer Boundary)
- Remove all tiny pixels
- Apply Morpho imerode function (To disconnect the connected worm)
- Be care ful on previous steps, it might be remove smaller worm pixel data
- Counts the total object in the image
Note:The accuracy can be stated only after the results.
:)
댓글 수: 4
javadhi srinuvas
2020년 12월 17일
KALYAN ACHARJYA
2020년 12월 17일
Have you tried the above approach?
Vívian Helena
2023년 5월 12일
I know almost nothing of matlab, but recently on my lab we've been counting fish eggs. Can u help me with a code for that? I'll need some detail since I dont know much of the language. thanks in advance in case ur able to help
Image Analyst
2023년 5월 12일
@Vívian Helena Sure, we could try to help. Start your own new question after doing the links below.
To learn fundamental concepts, invest 2 hours of your time here:
It's a generic, general purpose demo of how to threshold an image to find blobs, and then measure things about the blobs, and extract certain blobs based on their areas or diameters.
카테고리
도움말 센터 및 File Exchange에서 Modify Image Colors에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
