Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/liuliu/ccv
C-based/Cached/Core Computer Vision Library, A Modern Computer Vision Library
https://github.com/liuliu/ccv
Last synced: 2 days ago
JSON representation
C-based/Cached/Core Computer Vision Library, A Modern Computer Vision Library
- Host: GitHub
- URL: https://github.com/liuliu/ccv
- Owner: liuliu
- License: other
- Created: 2010-09-15T15:59:47.000Z (about 14 years ago)
- Default Branch: unstable
- Last Pushed: 2024-10-30T02:01:47.000Z (about 1 month ago)
- Last Synced: 2024-10-30T04:56:59.714Z (about 1 month ago)
- Language: C
- Homepage: http://libccv.org
- Size: 373 MB
- Stars: 7,083
- Watchers: 351
- Forks: 1,717
- Open Issues: 93
-
Metadata Files:
- Readme: README.rst
- License: COPYING
Awesome Lists containing this project
- awesome-advanced-metering-infrastructure - CCV - C-based/Cached/Core Computer Vision Library, A Modern Computer Vision Library. (C / Tools)
- my-awesome-awesomeness - ccv - based/Cached/Core Computer Vision Library, A Modern Computer Vision Library. (Uncategorized / Uncategorized)
- awesome-machine-learning - CCV - C-based/Cached/Core Computer Vision Library, A Modern Computer Vision Library. (C)
- awesome-machine-master - CCV - C-based/Cached/Core Computer Vision Library, A Modern Computer Vision Library (C)
- awesome-machine-learning - CCV - C-based/Cached/Core Computer Vision Library, A Modern Computer Vision Library. (C / [Tools](#tools-1))
- awesome-machine-learning - CCV - C-based/Cached/Core Computer Vision Library, A Modern Computer Vision Library. (C)
- awesome-machine-learning - CCV - C-based/Cached/Core Computer Vision Library, A Modern Computer Vision Library. (C)
- awesome-list - ccv - C-based/Cached/Core Computer Vision Library, A Modern Computer Vision Library. (Computer Vision / General Purpose CV)
- awesome-machine-learning - CCV - C-based/Cached/Core Computer Vision Library, A Modern Computer Vision Library. (C / [Tools](#tools-1))
README
Build Status
------------- GitHub-Hosted: |Build Status on GitHub Ubuntu| |Build Status on GitHub macOS|
- Linux x64: |Build Status on Linux| |Build Status on Linux CUDA|
- Mac ARM64: |Build Status on Mac ARM64|
- Raspberry Pi 4: |Build Status on Raspberry Pi 4|
- Clang Analyzer: |Analyze Run|
- Test Coverage: |Coverage Run|Backstory
---------I set to build ccv with a minimalism inspiration. That was back in 2010, out of the frustration with the computer vision library then I was using, ccv was meant to be a much easier to deploy, simpler organized code with a bit caution with dependency hygiene. The simplicity and minimalistic nature at then, made it much easier to integrate into any server-side deployment environments.
Portable and Embeddable
-----------------------Fast forward to now, the world is quite different from then, but ccv adapts pretty well in this new, mobile-first environment. It now runs on Mac OSX, Linux, FreeBSD, Windows\*, iPhone, iPad, Android, Raspberry Pi. In fact, anything that has a proper C compiler probably can run ccv. The majority (with notable exception of convolutional networks, which requires a BLAS library) of ccv will just work with no compilation flags or dependencies.
Modern Computer Vision Algorithms
---------------------------------One core concept of ccv development is *application driven*. Thus, ccv ends up implementing a handful state-of-art algorithms. It includes a close to state-of-the-art image classifier, a state-of-the-art frontal face detector, reasonable collection of object detectors for pedestrians and cars, a useful text detection algorithm, a long-term general object tracking algorithm, and the long-standing feature point extraction algorithm.
Clean Interface with Cached Image Preprocessing
-----------------------------------------------Many computer vision tasks nowadays consist of quite a few preprocessing layers: image pyramid generation, color space conversion etc. These potentially redundant operations cannot be easily eliminated within a mature API. ccv provides a built-in cache mechanism that, while maintains a clean function interface, effectively does transparent cache for you.
For computer vision community, there is no shortage of good algorithms, good implementation is what it lacks of. After years, we stuck in between either the high-performance, battle-tested but old algorithm implementations, or the new, shining but Matlab algorithms. ccv is my take on this problem, hope you enjoy it.
Deep Learning
-------------https://libnnc.org
License
-------ccv source code is distributed under BSD 3-clause License.
ccv's data models and documentations are distributed under Creative Commons Attribution 4.0 International License.
.. |Build Status on GitHub Ubuntu| image:: https://github.com/liuliu/ccv/actions/workflows/ubuntu-unit-tests.yaml/badge.svg?branch=unstable
:target: https://github.com/liuliu/ccv/actions/workflows/ubuntu-unit-tests.yaml?query=branch%3Aunstable
.. |Build Status on GitHub macOS| image:: https://github.com/liuliu/ccv/actions/workflows/macos-unit-tests.yaml/badge.svg?branch=unstable
:target: https://github.com/liuliu/ccv/actions/workflows/macos-unit-tests.yaml?query=branch%3Aunstable
.. |Build Status on Linux| image:: https://github.com/liuliu/ccv/actions/workflows/ubsan-unit-tests.yaml/badge.svg?branch=unstable
:target: https://github.com/liuliu/ccv/actions/workflows/ubsan-unit-tests.yaml?query=branch%3Aunstable
.. |Build Status on Linux CUDA| image:: https://github.com/liuliu/ccv/actions/workflows/cuda-int-tests.yaml/badge.svg?branch=unstable
:target: https://github.com/liuliu/ccv/actions/workflows/cuda-int-tests.yaml?query=branch%3Aunstable
.. |Build Status on Mac ARM64| image:: https://github.com/liuliu/ccv/actions/workflows/macos-arm-unit-tests.yaml/badge.svg?branch=unstable
:target: https://github.com/liuliu/ccv/actions/workflows/macos-arm-unit-tests.yaml?query=branch%3Aunstable
.. |Build Status on Raspberry Pi 4| image:: https://github.com/liuliu/ccv/actions/workflows/raspberrypi-4-unit-tests.yaml/badge.svg?branch=unstable
:target: https://github.com/liuliu/ccv/actions/workflows/raspberrypi-4-unit-tests.yaml?query=branch%3Aunstable
.. |Analyze Run| image:: https://github.com/liuliu/ccv/actions/workflows/analyze.yaml/badge.svg?branch=unstable
:target: https://github.com/liuliu/ccv/actions/workflows/analyze.yaml?query=branch%3Aunstable
.. |Coverage Run| image:: https://github.com/liuliu/ccv/actions/workflows/coverage.yaml/badge.svg?branch=unstable
:target: https://github.com/liuliu/ccv/actions/workflows/coverage.yaml?query=branch%3Aunstable