Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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