Bill Skaggs <weskaggs@primate.ucdavis.edu>

* plug-ins/common/dog.c: added Difference of Gaussians edge
	detect plug-in.

	* plug-ins/common/plugin-defs.pl:
	* plug-ins/common/Makefile.am: added dog and regenerated
	Makefile.
This commit is contained in:
William Skaggs 2004-06-25 20:19:54 +00:00
parent fe14fa1d33
commit 48095ce3fc
5 changed files with 1220 additions and 0 deletions

View File

@ -1,3 +1,12 @@
2004-06-25 Bill Skaggs <weskaggs@primate.ucdavis.edu>
* plug-ins/common/dog.c: added Difference of Gaussians edge
detect plug-in.
* plug-ins/common/plugin-defs.pl:
* plug-ins/common/Makefile.am: added dog and regenerated
Makefile.
2004-06-25 Michael Natterer <mitch@gimp.org>
* app/actions/context-actions.c: added GIMP_ACTION_SELECT_SET

View File

@ -37,6 +37,7 @@ destripe
dicom
diffraction
displace
dog
edge
emboss
engrave

View File

@ -63,6 +63,7 @@ libexec_PROGRAMS = \
dicom \
diffraction \
displace \
dog \
edge \
emboss \
engrave \
@ -637,6 +638,19 @@ displace_LDADD = \
$(RT_LIBS) \
$(INTLLIBS)
dog_SOURCES = \
dog.c
dog_LDADD = \
$(libgimpui) \
$(libgimpwidgets) \
$(libgimp) \
$(libgimpcolor) \
$(libgimpbase) \
$(GTK_LIBS) \
$(RT_LIBS) \
$(INTLLIBS)
edge_SOURCES = \
edge.c

1195
plug-ins/common/dog.c Executable file

File diff suppressed because it is too large Load Diff

View File

@ -34,6 +34,7 @@
'dicom' => { libdep => 'gtk', ui => 1 },
'diffraction' => { libdep => 'gtk', ui => 1 },
'displace' => { libdep => 'gtk', ui => 1 },
'dog' => { libdep => 'gtk', ui => 1 },
'edge' => { libdep => 'gtk', ui => 1 },
'emboss' => { libdep => 'gtk', ui => 1 },
'engrave' => { libdep => 'gtk', ui => 1 },