Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nakkaya/ferret-opencv
https://github.com/nakkaya/ferret-opencv
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nakkaya/ferret-opencv
- Owner: nakkaya
- Created: 2018-06-29T11:05:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-29T11:05:50.000Z (over 6 years ago)
- Last Synced: 2024-10-13T08:13:24.675Z (3 months ago)
- Language: Clojure
- Size: 1.95 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
ferret-opencv
=============Ferret bindings for OpenCV
(require '[ferret-opencv.core :as cv])
(def cam (cv/video-capture 0))
(let [f (cv/query-capture cam)]
(cv/imwrite "image_latest.png" f))Sample CMake,
cmake_minimum_required(VERSION 3.0)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)
find_package(OpenCV REQUIRED)add_executable(core core.cpp)
target_link_libraries(core ${OpenCV_LIBS})