IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 43040


Ignore:
Timestamp:
Jun 1, 2026, 9:47:44 AM (7 weeks ago)
Author:
eugene
Message:

add the erosion and dilation image functions

Location:
branches/eam_branches/ipp-pstamp-20260421/Ohana/src/opihi/cmd.data
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-pstamp-20260421/Ohana/src/opihi/cmd.data/Makefile

    r42967 r43040  
    4444$(SRC)/device.$(ARCH).o \
    4545$(SRC)/dft2d.$(ARCH).o  \
     46$(SRC)/dilation.$(ARCH).o       \
    4647$(SRC)/dimendown.$(ARCH).o      \
    4748$(SRC)/dimenup.$(ARCH).o        \
     
    5354$(SRC)/dbupdate.$(ARCH).o       \
    5455$(SRC)/erase.$(ARCH).o          \
     56$(SRC)/erosion.$(ARCH).o        \
    5557$(SRC)/extract.$(ARCH).o        \
    5658$(SRC)/fft1d.$(ARCH).o          \
  • branches/eam_branches/ipp-pstamp-20260421/Ohana/src/opihi/cmd.data/init.c

    r42967 r43040  
    3535int device           PROTO((int, char **));
    3636int dft2d            PROTO((int, char **));
     37int dilation         PROTO((int, char **));
    3738int dimendown        PROTO((int, char **));
    3839int dimenup          PROTO((int, char **));
    3940int distribute       PROTO((int, char **));
    4041int erase            PROTO((int, char **));
     42int erosion          PROTO((int, char **));
    4143int extract          PROTO((int, char **));
    4244int fft1d            PROTO((int, char **));
     
    246248  {1, "device",       device,           "set / get current graphics device"},
    247249  {1, "dft2d",        dft2d,            "2D discrete fourier transform"},
     250  {1, "dilation",     dilation,         "perform the dilation operation"},
    248251  {1, "dimendown",    dimendown,        "convert image to vector"},
    249252  {1, "dimenup",      dimenup,          "convert vector to image"},
     
    251254  {1, "dot",          dot,              "plot a single point"},
    252255  {1, "erase",        erase,            "erase objects on an image overlay"},
     256  {1, "erosion",      erosion,          "perform the erosion operation"},
    253257  {1, "extract",      extract,          "extract a portion of a image into another image"},
    254258  {1, "fft1d",        fft1d,            "fft on a vector"},
Note: See TracChangeset for help on using the changeset viewer.