Skip to content

Commit

Permalink
Docs: Fix 'cvsteer'
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslo committed Jan 28, 2018
1 parent 571758a commit 5300e73
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/packages/computer-vision.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

Matlab
Morphable
Adelson

Computer Vision
---------------
Expand All @@ -10,6 +11,9 @@ Computer Vision
- :ref:`pkg.caffe` - fast open framework for deep learning.
- :ref:`pkg.ccv` - A Modern Computer Vision Library
- :ref:`pkg.cvmatio` - Matlab Mat file read and write C++ class with OpenCV bindings.
- :ref:`pkg.cvsteer` - A concise implementation of separable steerable filters
via Freeman and Adelson, including second derivative of Gaussian and its
Hilbert transform, implemented with the OpenCV C++ API
- :ref:`pkg.dest` - high performance 2D shape tracking leveraging machine learning methods.
- :ref:`pkg.dlib` - modern C++ toolkit containing machine learning algorithms and tools for creating complex software in C++ to solve real world problems.
- :ref:`pkg.drishti` - Real time eye tracking for embedded and mobile devices.
Expand Down
4 changes: 3 additions & 1 deletion examples/cvsteer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ include("../common.cmake")

project(download-cvsteer)

# DOCUMENTATION_START {
hunter_add_package(cvsteer)
find_package(cvsteer CONFIG REQUIRED)

add_executable(foo foo.cpp)
target_link_libraries(foo cvsteer::cvsteer)
target_link_libraries(foo PUBLIC cvsteer::cvsteer)
# DOCUMENTATION_END }

0 comments on commit 5300e73

Please sign in to comment.