Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Censure Detector #35

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
7 changes: 5 additions & 2 deletions src/ImageFeatures.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
__precompile__(true)

module ImageFeatures

# package code goes here
using Images, ColorTypes, FixedPointNumbers, Distributions
using Compat
Expand All @@ -16,8 +15,9 @@ include("orb.jl")
include("freak.jl")
include("brisk.jl")
include("houghtransform.jl")
include("censure.jl")

export Keypoint, Keypoints, Feature, Features, Params, BRIEF, ORB, FREAK, BRISK
export Keypoint, Keypoints, Feature, Features, Params, BRIEF, ORB, FREAK, BRISK, CENSURE, OctagonFilter, BoxFilter, BiFilter, StarFilter

export
#Core
Expand Down Expand Up @@ -68,4 +68,7 @@ export

#Circles
hough_circle_gradient

#CENSURE
censure
end
Loading