I am working on a project that build a software for automatic detection of a disease by scanning fundus images.

Is OpenCV the right library to go with as computer vision library (for image prepossessing and segmentation) or there is something better?

I know there isn't one true answer for the question but this is a big decision and i would like to hear what you are thinking.

Any help will be appreciated. Thanks

link|improve this question

75% accept rate
feedback

7 Answers

up vote 1 down vote accepted

Nope, unless you stick to C/C++ programming. If you are going to be doing work in .NET there are quite a few

  • EmguCV , which is a wrapper for OpenCV in .NET
  • AforgeNet

And another one for C/C++

  • CImage Library

If you have a good feeling for C/C++ and are pretty much use to OpenCV, then go for EmguCV. The namespaces and function mostly are the same as found in OpenCV. Just note the licensing differs for EmguCV.

Note that OpenCV is fast becoming the industry standard. It is fast and highly appreciated tool amongst both students and professionals.

link|improve this answer
no all the application will be done in c++ – Golden_phoenix Feb 1 at 4:51
Go for OpenCV. My suggestion would be go for developent with QT IDE, so that everything will be portable on different OS's. – Wajih Feb 4 at 17:27
feedback

For research purposes or development of a "normal" or industrial application, OpenCV is by far the best option. You really cannot find another one that offers more algorithms, better support and docs, bigger community, and constant growth. As Wajih said, it is becoming the industry standard.

However, if you are working on a project that must be finalized in a medical device in the near future (you are really developing the device, not just the algorithms) you may want to take into consideration that for a medical device to be approved it must certify your code and tools. In this case, Matlab and Matrox imaging library offer you some legal bounds - they aren't any better, but they are certified, I think.

link|improve this answer
feedback

You should consider ITK (Insight Toolkit), which is specifically targetted at Medical Image Processing (as opposed to generic computer vision, which is a slightly different topic). ITK is open source as well and used by a large medical image processing community.

link|improve this answer
feedback

OpenCV is the best choice, it is an open library, supported by large community and easy to use if you are familiar with C/C++.

link|improve this answer
feedback

In your place, I would use OpenCV because it is fast and there is a lot of help and tutorials on the web. However it is highly recommended that you also use other complementary software like Matlab in order to understand and play with results in a more confortable way.

Matlab have toolboxes for training detectors that can be exported as C++ pipelines and be easily integrated into OpenCV programs. This allows you to train different detectors and replace them on the code as you are getting better results.

link|improve this answer
feedback

You may also want to look into Leptonica. It is a C library that I've used for many image processing tasks. In my opinion, it is cleaner, easier to use, and more portable than OpenCV, although it is more focused on things such as preprocessing and segmentation, particularly for documents, but it would work on medical images too.

link|improve this answer
feedback

I'm currently doing my PHD in image analysis an I can ensure you that opencv is used in medical imagery devices as much as Matlab and a like. There is no legal bounds for you code source as long as it meets required licensing (as in you've paid for the Matlab license etc). The research license for Matlab is also excessively expensive. Any software/hardware you develop will go through the same stringent tests no matter where it comes from. It will be put through it's paces by independent reviewers and if the algorithm detects all forms of cancerous cells for example no-medical firm on the planet will chuck it because it's developed using open source software or even in a back alley using blind dogs.

Anyway from my personal experience Matlab is great for initial investigation as the routines are are quick to implement with little knowledge required for how they work. The problem is that Matlab is slow if you plan to export your software OpenCv is far better and more efficient. Matlab is also a PIG to interface with the outside world and with existing devices. You will find .Net much more reliable and easy to maintain. I myself use EMGU as I'm much more experience with C#. You will find little difference between this and OpenCV and while arguments are made that openCV is faster well yes marginally but you will never notice and I use it for high speed video analysis some 120+FPS.

So in answer to your question is there anything better than openCV well no and yes each. OpenCV requires much more higher coding standards but is very efficient and easy to interface with the outside world and export to different platforms. EMGU carries the same advantages as OpenCV however requires abit more more work since even I haven't covered all the possible algorithms and support when you get stuck is thin on the ground it also requires a comericial license (although this is much cheaper at $199 whereas Matlab is £10'000+). C# however has a massive community and lots of example code to get you working with the outside world.

Matlab well it's much quicker for developing solutions then EMGU or OpenCV however is not as efficient is costly any algorithm that Matlab has is supported by OpenCV and thus EMGU.

Hope this helps,

Cheers,

Chris

link|improve this answer
My comment regarding legal issues refers to the need to certify that the app can be safely used. It is not about the algorithm performance, but a guarantee that is bug-free. For medical devices, requirements are extremely high, and having a part of the code (the libraries) already certified saves you a lot of work and money. It's about ISO standards, not research quality. – vasile Feb 1 at 19:38
Hi, I understand and my comments about algorithm performance where there to allow for an informed decision about coding source. I am fully aware that medical applications have stringent test protocols as I design MVS software for industry purposes. Unfortunately the certified code caries no hold in testing after all it is a far argument that OpenCV was originally developed by Intel and many algorithms haven't changed. Either way all software must undergo strict testing by Insurance experts what is sad that it always comes down to money if an algorithms success rate does not out way the – Chris Feb 1 at 22:07
cost of compensation for false positives then it will never pass. ISO standards however tend to cover coding language basis C++ is obviously already covered however other than Automotive compliance I have always failed to find and medical ISO compliance from Matlab. This is also a big difference between compliance and standards in term of legalities. Relavent ISO information on Medical Image processing is available here iso.org/iso/iso_catalogue/catalogue_tc/… for all of those interesed. Cheers – Chris Feb 1 at 22:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.