JalaliLabUCLA / Image-feature-detection-using-Phase-Stretch-Transform

PST or Phase Stretch Transform is an operator that finds features in an image. PST implemented using MATLAB here, takes an intensity image I as its input, and returns a binary image out of the same size as I, with 1's where the function finds sharp transitions in I and 0's elsewhere.
https://en.wikipedia.org/wiki/Phase_stretch_transform
Other
840 stars 222 forks source link

how can i turn this code into a functional program? #4

Open giannisMou opened 8 years ago

giannisMou commented 8 years ago

how can i turn this code into a functional program?

JalaliLabUCLA commented 8 years ago

Hi, you can call the PST.m function within your code to make your desired program. To test how PST works and what it does you can run the test script called "test_script_PST_feb_02_2016.m". Good luck.

giannisMou commented 8 years ago

Thank you a lot