SciPy.jl logo
SciPy.jl
  • Home
  • Tips
  • Examples
    • cluster
    • constants
    • fft
    • interpolate
    • io
    • linalg
    • ndimage
      • convolve
    • odr
    • optimize
    • signal
    • sparse
    • spatial
    • special
    • stats
  • API References
Version
  • Examples
  • ndimage
  • ndimage
Edit on GitHub

scipy.ndimage

scipy.ndimage module

  • Multi-dimensional image processing (scipy.ndimage) Reference Guide

convolve

  • scipy.ndimage.convolve Reference Guide
c = [2 0 1;
     1 0 0;
     0 0 0]
k = [0 1 0;
     0 1 0;
     0 1 0;
     0 1 0;
     0 1 0]
ndimage.convolve(c, k, mode="nearest")
3×3 Matrix{Int64}:
 7  0  3
 5  0  2
 3  0  1
« linalgodr »

Powered by Documenter.jl and the Julia Programming Language.

Settings


This document was generated with Documenter.jl version 0.27.23 on Sunday 4 December 2022. Using Julia version 1.8.3.