Any recommended resources for using Julia in Computer Vision?

I am looking for some good resources (books, videos, courses, etc…) for using Julia in computer vision domain.

Especially with respect to, Object Detection, Image Classification, etc..

Hello @AI_hayasaka, welcome to the community. The book Hands-On Computer Vision with Julia is a nice resource for beginners (even beginners to the language):

There is a repository with the code used in that book on Github. It’s a couple of years old, so there might be changes in the involved packages since them, but I expect that the code will work without many issues.

If you are looking for something less basic, I think that the best resource is the documentation of Images.jl. The packages of the JuliaImages organization (which are explained there) are the state of the art of image processing in Julia, and you might be able to do mostly anything with them.

If you have used OpenCV in other languages before, you might like to know that there is a wrapper of the library for Julia: OpenCV.jl. However, be warned that not all the classes of OpenCV objects have fully deployed interfaces in that package, so perhaps there are things that you might do in other languages and cannot be done (at least easily) in Julia.

3 Likes