Home
last modified time | relevance | path

Searched refs:erosion (Results 1 – 25 of 667) sorted by relevance

12345678910>>...27

/dports/math/octave-forge-image/image-2.12.0/src/
H A Dimerode.cc143 template<class P, bool erosion, bool flat>
154 if (erosion) in erode_line()
169 if (erosion) in erode_line()
190 template<class P, bool erosion, bool flat>
199 if (erosion) in erode_line()
220 template<class P, bool erosion, bool flat>
252 if (erosion) in erode()
302 if (erosion) in erode()
311 if (erosion) in erode()
321 if (erosion) in erode()
[all …]
/dports/graphics/mirtk/MIRTK-2.0.0-122-g38210fa/Modules/Image/include/mirtk/
H A DErosion.h70 Erosion<TVoxel> erosion; in Erode() local
71 erosion.Connectivity(connectivity); in Erode()
72 erosion.Input (im); in Erode()
73 erosion.Output(im); in Erode()
74 for (int i = 0; i < iterations; ++i) erosion.Run(); in Erode()
/dports/misc/visp/visp-3.4.0/modules/core/test/image/
H A DtestImageMorphology.cpp101 vpImageMorphology::erosion(I_morpho_tpl, (unsigned char)1, (unsigned char)0, connexity);
102 vpImageMorphology::erosion(I_morpho, connexity);
116 vpImageMorphology::erosion(I_morpho_tpl, (unsigned char)1, (unsigned char)0, connexity);
117 vpImageMorphology::erosion(I_morpho, connexity);
141 vpImageMorphology::erosion(I_erosion, connexity);
167 vpImageMorphology::erosion(I_erosion, connexity);
219 vpImageMorphology::erosion(I_morpho, connexity);
231 vpImageMorphology::erosion(I_morpho, connexity);
264 vpImageMorphology::erosion(I_erosion, connexity);
310 vpImageMorphology::erosion(I_erosion, connexity);
H A DperfImageMorphology.cpp102 … vpImageMorphology::erosion(I_Klimt_binarized, (unsigned char)1, (unsigned char)0, connexity);
116 … vpImageMorphology::erosion(I_Klimt_binarized, (unsigned char)1, (unsigned char)0, connexity);
187 vpImageMorphology::erosion(I, connexity);
206 vpImageMorphology::erosion(I, connexity);
/dports/graphics/opencv/opencv-4.5.3/doc/tutorials/imgproc/erosion_dilatation/
H A Derosion_dilatation.markdown101 -# Create two windows (one for dilation output, the other for erosion)
106 -# Call once erosion and dilation to show the initial image.
114 #### The erosion function
116 @snippet cpp/tutorial_code/ImgProc/Morphology_1.cpp erosion
136 That is all. We are ready to perform the erosion of our image.
187 -# execute the **erosion** or **dilation** function based on `doErosion`
193 #### The erosion method
214 That is all. We are ready to perform the erosion of our image.
236 -# Call once erosion and dilation to show the initial image
243 #### The erosion function
[all …]
/dports/graphics/opencv/opencv-4.5.3/samples/python/tutorial_code/imgProc/erosion_dilatation/
H A Dmorphology_1.py25 cv.createTrackbar(title_trackbar_element_shape, title_erosion_window, 0, max_elem, erosion)
26 cv.createTrackbar(title_trackbar_kernel_size, title_erosion_window, 0, max_kernel_size, erosion)
32 erosion(0)
48 def erosion(val): function
/dports/graphics/py-scikit-image/scikit-image-0.19.0/skimage/morphology/tests/
H A Dtest_gray.py24 funcs = (gray.erosion, gray.dilation, gray.opening, gray.closing,
58 c = gray.erosion(self.black_pixel, s)
101 gray_functions = [gray.erosion, gray.dilation,
235 assert_allclose(gray.erosion(im), eroded)
244 assert_allclose(gray.erosion(im16), eroded16)
268 gray.erosion(image, out=out_array)
275 eroded = gray.erosion(image)
282 from skimage.morphology.grey import erosion
/dports/graphics/opencv/opencv-4.5.3/doc/py_tutorials/py_imgproc/py_morphological_ops/
H A Dpy_morphological_ops.markdown26 The basic idea of erosion is just like soil erosion only, it erodes away the boundaries of
43 erosion = cv.erode(img,kernel,iterations = 1)
47 ![image](images/erosion.png)
51 It is just opposite of erosion. Here, a pixel element is '1' if atleast one pixel under the kernel
53 Normally, in cases like noise removal, erosion is followed by dilation. Because, erosion removes
65 Opening is just another name of **erosion followed by dilation**. It is useful in removing noise, as
87 It is the difference between dilation and erosion of an image.
/dports/graphics/mahotas/mahotas-1.4.11/docs/source/
H A Dmorphology.rst41 `Dilation <http://en.wikipedia.org/wiki/Dilation_(morphology)>`__ and `erosion
44 can define the erosion as dilation of the negative or vice-versa).
73 Mahotas supports greyscale erosion and dilation (depending on the ``dtype`` of
93 get *grescale erosion*. Mahotas supports full grescale erosion, including
99 Closing and opening are based on erosion and dilation. Again, they work in
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/extension/internal/filter/
H A Doverlays.h104 std::ostringstream erosion; in get_filter_text() local
117 erosion << (- ext->get_param_float("erosion")); in get_filter_text()
139 …), variation.str().c_str(), inverted.str().c_str(), dilat.str().c_str(), erosion.str().c_str(), a.… in get_filter_text()
H A Ddistort.h118 std::ostringstream erosion; in get_filter_text() local
133 erosion << -ext->get_param_float("erosion"); in get_filter_text()
164 …map.str().c_str(), intensity.str().c_str(), dilat.str().c_str(), erosion.str().c_str(), stroke.str… in get_filter_text()
/dports/games/nethack34/nethack-3.4.3/src/
H A Dwield.c603 int erosion; local
615 erosion = acid_dmg ? target->oeroded2 : target->oeroded;
649 } else if (erosion < MAX_ERODE) {
652 erosion+1 == MAX_ERODE ? " completely" :
653 erosion ? " further" : "");
657 erosion+1 == MAX_ERODE ? " completely" :
658 erosion ? " further" : "");
662 erosion+1 == MAX_ERODE ? " completely" :
663 erosion ? " further" : "");
/dports/games/nethack34-nox11/nethack-3.4.3/src/
H A Dwield.c603 int erosion; local
615 erosion = acid_dmg ? target->oeroded2 : target->oeroded;
649 } else if (erosion < MAX_ERODE) {
652 erosion+1 == MAX_ERODE ? " completely" :
653 erosion ? " further" : "");
657 erosion+1 == MAX_ERODE ? " completely" :
658 erosion ? " further" : "");
662 erosion+1 == MAX_ERODE ? " completely" :
663 erosion ? " further" : "");
/dports/games/vultures-eye/vulture-2.3.67/nethack/src/
H A Dwield.c603 int erosion; local
615 erosion = acid_dmg ? target->oeroded2 : target->oeroded;
649 } else if (erosion < MAX_ERODE) {
652 erosion+1 == MAX_ERODE ? " completely" :
653 erosion ? " further" : "");
657 erosion+1 == MAX_ERODE ? " completely" :
658 erosion ? " further" : "");
662 erosion+1 == MAX_ERODE ? " completely" :
663 erosion ? " further" : "");
/dports/games/unnethack/unnethack-5.1.0-20131208/src/
H A Dwield.c633 int erosion; local
645 erosion = acid_dmg ? target->oeroded2 : target->oeroded;
679 } else if (erosion < MAX_ERODE) {
682 erosion+1 == MAX_ERODE ? " completely" :
683 erosion ? " further" : "");
687 erosion+1 == MAX_ERODE ? " completely" :
688 erosion ? " further" : "");
692 erosion+1 == MAX_ERODE ? " completely" :
693 erosion ? " further" : "");
/dports/games/vultures-eye/vulture-2.3.67/unnethack/src/
H A Dwield.c617 int erosion; local
629 erosion = acid_dmg ? target->oeroded2 : target->oeroded;
663 } else if (erosion < MAX_ERODE) {
666 erosion+1 == MAX_ERODE ? " completely" :
667 erosion ? " further" : "");
671 erosion+1 == MAX_ERODE ? " completely" :
672 erosion ? " further" : "");
676 erosion+1 == MAX_ERODE ? " completely" :
677 erosion ? " further" : "");
/dports/graphics/opencv/opencv-4.5.3/doc/js_tutorials/js_imgproc/js_morphological_ops/
H A Djs_morphological_ops.markdown25 The basic idea of erosion is just like soil erosion only, it erodes away the boundaries of
38 @param kernel structuring element used for erosion.
40 @param iterations number of times erosion is applied.
55 It is just opposite of erosion. Here, a pixel element is '1' if atleast one pixel under the kernel
57 Normally, in cases like noise removal, erosion is followed by dilation. Because, erosion removes
81 Opening is just another name of **erosion followed by dilation**. It is useful in removing noise.
118 It is the difference between dilation and erosion of an image.
/dports/games/redeclipse16/base-1.6.0/config/
H A Dversion.cfg8 …decomposition deli depot disco discontinuity dropzone dutility echo enyo erosion error escape eter…
10 …rkness deadsimple deathtrap decay deli depot dropzone dutility echo enyo erosion error futuresport…
11 …ict darkness deadsimple deathtrap deli depot dropzone dutility echo enyo erosion futuresport insti…
12 …tec darkness deadsimple deathtrap deli depot dropzone dutility echo enyo erosion futuresport ghost…
14 …enter conflict darkness deathtrap deli depot dropzone dutility echo enyo erosion futuresport mist …
15 …rkness deadsimple deathtrap decay deli depot dropzone dutility echo enyo erosion futuresport ghost…
23 …ict cutec darkness deadsimple deathtrap deli dropzone dutility echo enyo erosion error futuresport…
24 sv_largemaps "battlefield biolytic center cutec decay deli depot dropzone enyo erosion futuresport …
/dports/math/octave-forge-image/image-2.12.0/inst/
H A Dmmgradm.m24 ## and erosion respectively. They can be a:
41 ## The basic morphological gradient corresponds to a matrix erosion
47 ## To perform the half-gradients by erosion or dilation, or the internal or
50 ## mmgradm (img, [], se_ero) # half-gradient by erosion or internal gradient
/dports/games/nethack33-nox11/nethack-3.3.1/src/
H A Dwield.c508 int erosion; local
519 erosion = acid_dmg ? target->oeroded2 : target->oeroded;
548 } else if (erosion < MAX_ERODE) {
551 erosion+1 == MAX_ERODE ? " completely" :
552 erosion ? " further" : "");
556 erosion+1 == MAX_ERODE ? " completely" :
557 erosion ? " further" : "");
/dports/games/nethack33/nethack-3.3.1/src/
H A Dwield.c508 int erosion; local
519 erosion = acid_dmg ? target->oeroded2 : target->oeroded;
548 } else if (erosion < MAX_ERODE) {
551 erosion+1 == MAX_ERODE ? " completely" :
552 erosion ? " further" : "");
556 erosion+1 == MAX_ERODE ? " completely" :
557 erosion ? " further" : "");
/dports/games/falconseye/falconseye-1.9.3_11/src/
H A Dwield.c508 int erosion; local
519 erosion = acid_dmg ? target->oeroded2 : target->oeroded;
548 } else if (erosion < MAX_ERODE) {
551 erosion+1 == MAX_ERODE ? " completely" :
552 erosion ? " further" : "");
556 erosion+1 == MAX_ERODE ? " completely" :
557 erosion ? " further" : "");
/dports/graphics/py-scikit-image/scikit-image-0.19.0/skimage/segmentation/
H A Dboundaries.py6 from ..morphology import dilation, erosion, square
166 dilation(label_img, footprint) != erosion(label_img, footprint)
180 != erosion(inverted_background, footprint)
/dports/games/vultures-eye/vulture-2.3.67/slashem/src/
H A Dwield.c700 int erosion; local
712 erosion = acid_dmg ? target->oeroded2 : target->oeroded;
746 } else if (erosion < MAX_ERODE) {
749 erosion+1 == MAX_ERODE ? " completely" :
750 erosion ? " further" : "");
754 erosion+1 == MAX_ERODE ? " completely" :
755 erosion ? " further" : "");
759 erosion+1 == MAX_ERODE ? " completely" :
760 erosion ? " further" : "");
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/plugins_unsupported/io_epoch/
H A Depoch_reconstruction.h50 …bool dilation, int dilationPasses, int dilationSize, bool erosion, int erosionPasses, int erosionS…
59 …bool dilation, int dilationNumPasses, int dilationWinsize, bool erosion, int erosionNumPasses, int…

12345678910>>...27