What is the best way to detect white blood cells among the red blood cells in blood sample using opencv?
Asked: 2016-12-25 01:03:43 -0600
Seen: 1,156 times
Last updated: Jan 03 '17
OpenCV DescriptorMatcher matches
Conversion between IplImage and MxArray
Video On Label OpenCV Qt :: hide cvNamedWindows
Problems using the math.h class with OpenCV (c++, VS2012)
How to reduce false positives for face detection
Area of a single pixel object in OpenCV
build problems for android_binary_package - Eclipse Indigo, Ubuntu 12.04
Can't compile .cu file when including opencv.hpp
Using OpenCV's stitching module, strange error when compositing images
what have you tried so far ?
please take a look at the faq , we do expect you to do some research on your own, before asking here.
I have tried using cascade classifier. I trained the classifier and then applied the classifier on test image but not satisfied with the result. Its giving me some wrong predicted reason of interest.
Then please elaborate what you have been doing using the cascade classifier and where it goes wrong. Then we might actually be able to help you improve it.
For some of the test images it's not detecting properly.
Read my post again...
The best technique to use depends on what kind of results do you need. Do you need to detect each cell individually? Do you need to realize if there are white blood cells present in the scene or not? Do you need to create some kind of ratio between red and white blood cells?
The requirement is to detect all the white blood cell present in the image and demarcate the boundary of the white blood cell.
Hi StevenPuttemans, the first small image i am using as a positive image and second small image i am using as a negative image.
Ow why black out the cell in the positive image. This way you create artificial borders to the background, which is not there in your actual application and thus, your detector fails. Do not do that. You should read up on decent sample collection for machine learning models.
I have read up on sample collection. I have created the positive image by using above third small image and image mask which is fourth small image. Could you please tell which one should i choose positive and which one negative image to train? thanks.