Skip to content

Instantly share code, notes, and snippets.

@vatsan
Last active August 29, 2015 14:09
Show Gist options
  • Save vatsan/be81c684b2486c46e6aa to your computer and use it in GitHub Desktop.
Save vatsan/be81c684b2486c46e6aa to your computer and use it in GitHub Desktop.
/**
* Gautam Muralidhar, Srivatsan Ramanujam, Nov 2014
* PL/C UDFs to invoke Edge Detection
*/
create or replace function CannyEdgeDetectPLC(varchar)
returns int[]
as
'/usr/local/lib/ds/canny_plc.so', 'canny_plc'
language C strict immutable;
create or replace function GetImgSizePLC(varchar)
returns int[]
as
'/usr/local/lib/ds/canny_plc.so', 'get_imgsize'
language C strict immutable;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment