Skip to content
This repository has been archived by the owner on Sep 10, 2019. It is now read-only.

fundamental/Curvelet.jl

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Curvelet.jl - The 2D Curvlet Transform

The curvelet transform is a fairly recent image processing technique that is able to easily approximate curves present in images. This package is an implementation of the “Uniform Discrete Curvelet Transform” as described in “Uniform Discrete Curvelet Transform” by Truong T. Nguyen and Hervé Chauris.

Basic usage is as follows:

require("src/Curvelet.jl")
x = rand(128,128)
X = Curvelet.curveletTransform(x)
y = Curvelet.inverseCurveletTransform(X)

Restrictions

Currently this transform works only for a simple class of inputs: square images with dimensions that are powers of two in length and at least 16x16.

About

Implementation of the Uniform Discrete Curvelet Transform (UDCT)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages