Skip to content

gapi_BGR2RGB

gapifunctionOpenCV 5.0.0
import { gapi_BGR2RGB } from '@banou/opencv-wasm'

Use after await initOpenCV(). See the initialization and named imports guide.

ARGUMENTSsrc
FUNCTIONgapi_BGR2RGB
RETURN TYPEGMat
Call structure. A void return can still write to destination arguments. The parameter descriptions define inputs, outputs and ownership.

gapi_shape

Converts an image from BGR color space to RGB color space.

The function converts an input image from BGR color space to RGB. The conventional ranges for B, G, and R channel values are 0 to 255.

Output image is 8-bit unsigned 3-channel image CV_8UC3.

Note: Function textual ID is "org.opencv.imgproc.colorconvert.bgr2rgb"

See: RGB2BGR

gapi_BGR2RGB(src: GMat): GMat;
src

input image: 8-bit unsigned 3-channel image CV_8UC3.

Returns

The GMat result. Release returned native handles with using or delete(), including handles nested in results.

These signatures describe this package. Upstream documentation can mention optional backends that are absent from this build. Check runtime compatibility before choosing a backend or file format.