Laplacian
OpenLvVision_OpenCv.lvlib:Laplacian.vim
Calculates the Laplacian of an image.
The function calculates the Laplacian of the source image by adding up the second $x$ and $y$ derivatives calculated using the Sobel operator:
This is done when ksize > 1. When ksize == 1, the Laplacian is computed by filtering the image with the following $3 \times 3$ aperture:
For detailed information, please refer to the OpenCV documentation

| error in error in can accept error information wired from VIs previously called. Use this information to decide if any functionality should be bypassed in the event of errors from other VIs. Right-click the error in control on the front panel and select Explain Error or Explain Warning from the shortcut menu for more information about the error. |
| status status is TRUE (X) if an error occurred or FALSE (checkmark) to indicate a warning or that no error occurred. Right-click the error in control on the front panel and select Explain Error or Explain Warning from the shortcut menu for more information about the error. |
| code |
| source source describes the origin of the error or warning. Right-click the error in control on the front panel and select Explain Error or Explain Warning from the shortcut menu for more information about the error. |
| Src Source image. |
| Dst Destination image of the same size and the same number of channels as src . |
| BorderTypes Pixel extrapolation method, see BorderTypes. BORDER_WRAP is not supported. BORDER_CONSTANT = 0, !< `iiiiii|abcdefgh|iiiiiii` with some specified `i` BORDER_REPLICATE = 1, `aaaaaa|abcdefgh|hhhhhhh` BORDER_REFLECT = 2, `fedcba|abcdefgh|hgfedcb` BORDER_WRAP = 3, `cdefgh|abcdefgh|abcdefg` BORDER_REFLECT_101 = 4, `gfedcb|abcdefgh|gfedcba` BORDER_TRANSPARENT = 5, `uvwxyz|abcdefgh|ijklmno` - Treats outliers as transparent. BORDER_ISOLATED = 16 Interpolation restricted within the ROI boundaries. |
| kSize Aperture size used to compute the second-derivative filters. See getDerivKernels for details. The size must be positive and odd. |
| scale Optional scale factor for the computed Laplacian values. By default, no scaling is applied. See getDerivKernels for details. |
| delta Optional delta value that is added to the results prior to storing them in dst . |
| error out error in can accept error information wired from VIs previously called. Use this information to decide if any functionality should be bypassed in the event of errors from other VIs. Right-click the error in control on the front panel and select Explain Error or Explain Warning from the shortcut menu for more information about the error. |
| status status is TRUE (X) if an error occurred or FALSE (checkmark) to indicate a warning or that no error occurred. Right-click the error in control on the front panel and select Explain Error or Explain Warning from the shortcut menu for more information about the error. |
| code |
| source source describes the origin of the error or warning. Right-click the error in control on the front panel and select Explain Error or Explain Warning from the shortcut menu for more information about the error. |
| Dst out Destination image of the same size and the same number of channels as src . |










